vim - Run gVim with several parameters -
i want open txt files in krusader using gvim default. know, when edit files ftp, command open file must this:
gvim -f %f
without keys (-f %f
), changes no store server. want open each file in it`s own tab, not in instance of gvim editor. achieve this, open files, using command:gvim --remote-tab-silent
i want open files, using parameters 1 , 2 example. when try change command to
gvim --remote-tab-silent -f %f
or
gvim -f %f --remote-tab-silent
it doesn't work properly. helps me merge 2 commands?
try
gvim --remote-tab-wait-silent %f
-f seems work local guis. remote server need wait version of --remote command.
Comments
Post a Comment