# HG changeset patch # User vimboss # Date 1142112779 0 # Node ID a84cc6ebafca31063b7f5a4e9ef4fa6c3d761b95 # Parent f7034dd506fd535eb3884ae5c29f24f5255c475b updated for version 7.0221 diff --git a/runtime/doc/remote.txt b/runtime/doc/remote.txt --- a/runtime/doc/remote.txt +++ b/runtime/doc/remote.txt @@ -1,4 +1,4 @@ -*remote.txt* For Vim version 7.0aa. Last change: 2006 Mar 06 +*remote.txt* For Vim version 7.0aa. Last change: 2006 Mar 11 VIM REFERENCE MANUAL by Bram Moolenaar @@ -45,6 +45,19 @@ The following command line arguments are --remote-wait-silent [+{cmd}] {file} ... *--remote-wait-silent* As --remote-wait, but don't complain if there is no server. + *--remote-tab* + --remote-tab Like --remote but open each file in a new + tabpage. + *--remote-tab-silent* + --remote-tab-silent Like --remote-silent but open each file in a + new tabpage. + *--remote-tab-wait* + --remote-tab-wait Like --remote-wait but open each file in a new + tabpage. + + *--remote-tab-wait-silent* + --remote-tab-wait-silent Like --remote-wait-silent but open each file + in a new tabpage. *--servername* --servername {name} Become the server {name}. When used together with one of the --remote commands: connect to diff --git a/src/proto/ex_cmds.pro b/src/proto/ex_cmds.pro --- a/src/proto/ex_cmds.pro +++ b/src/proto/ex_cmds.pro @@ -40,7 +40,7 @@ void global_exe __ARGS((char_u *cmd)); int read_viminfo_sub_string __ARGS((vir_T *virp, int force)); void write_viminfo_sub_string __ARGS((FILE *fp)); void free_old_sub __ARGS((void)); -void prepare_tagpreview __ARGS((void)); +int prepare_tagpreview __ARGS((void)); void ex_help __ARGS((exarg_T *eap)); char_u *check_help_lang __ARGS((char_u *arg)); int help_heuristic __ARGS((char_u *matched_string, int offset, int wrong_case));