diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-14 16:52:17 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-14 16:52:17 +0200 |
commit | cc448b373d580856f92ff7a9e04daf65444b5cd1 (patch) | |
tree | 3cb827a7aa56a93acea0a1201d5754ebcca9b808 /src/ex_cmds.c | |
parent | d43848c0dd0603248405bb93364866cd495f0547 (diff) | |
download | vim-git-cc448b373d580856f92ff7a9e04daf65444b5cd1.tar.gz |
Support completion for ":find". (Nazri Ramliy)
Cleanup white space.
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r-- | src/ex_cmds.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index c0668cf0e..602c340da 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -3099,8 +3099,8 @@ theend: * ECMD_FORCEIT: ! used for Ex command * ECMD_ADDBUF: don't edit, just add to buffer list * oldwin: Should be "curwin" when editing a new buffer in the current - * window, NULL when splitting the window first. When not NULL info - * of the previous buffer for "oldwin" is stored. + * window, NULL when splitting the window first. When not NULL info + * of the previous buffer for "oldwin" is stored. * * return FAIL for failure, OK otherwise */ @@ -7232,8 +7232,8 @@ set_context_in_sign_cmd(xp, arg) cmd_idx = sign_cmd_idx(arg, end_subcmd); /* :sign {subcmd} {subcmd_args} - * | - * begin_subcmd_args */ + * | + * begin_subcmd_args */ begin_subcmd_args = skipwhite(end_subcmd); p = skiptowhite(begin_subcmd_args); if (*p == NUL) @@ -7261,8 +7261,8 @@ set_context_in_sign_cmd(xp, arg) /* expand last argument of subcmd */ /* :sign define {name} {args}... - * | - * p */ + * | + * p */ /* Loop until reaching last argument. */ do @@ -7275,8 +7275,8 @@ set_context_in_sign_cmd(xp, arg) p = vim_strchr(last, '='); /* :sign define {name} {args}... {last}= - * | | - * last p */ + * | | + * last p */ if (p == NUL) { /* Expand last argument name (before equal sign). */ |