diff options
author | KillTheMule <KillTheMule@users.noreply.github.com> | 2016-08-25 21:29:49 +0200 |
---|---|---|
committer | KillTheMule <KillTheMule@users.noreply.github.com> | 2016-08-26 21:50:19 +0200 |
commit | e587b490a071580708e15fe6d4f0022f1b8e7285 (patch) | |
tree | de1703e097f8b53b6dd51280094b4b8ed1fb9b0b /src/nvim/if_cscope.c | |
parent | 59468e3495a253e7628f0b12a4afb748909317c6 (diff) | |
download | rneovim-e587b490a071580708e15fe6d4f0022f1b8e7285.tar.gz rneovim-e587b490a071580708e15fe6d4f0022f1b8e7285.tar.bz2 rneovim-e587b490a071580708e15fe6d4f0022f1b8e7285.zip |
Lint
Diffstat (limited to 'src/nvim/if_cscope.c')
-rw-r--r-- | src/nvim/if_cscope.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/nvim/if_cscope.c b/src/nvim/if_cscope.c index 5b5464b569..8684957393 100644 --- a/src/nvim/if_cscope.c +++ b/src/nvim/if_cscope.c @@ -108,10 +108,10 @@ char_u *get_cscope_name(expand_T *xp, int idx) "a", "c", "d", "e", "f", "g", "i", "s", "t", NULL }; - /* Complete with query type of ":cscope find {query_type}". - * {query_type} can be letters (c, d, ... a) or numbers (0, 1, - * ..., 9) but only complete with letters, since numbers are - * redundant. */ + // Complete with query type of ":cscope find {query_type}". + // {query_type} can be letters (c, d, ... a) or numbers (0, 1, + // ..., 9) but only complete with letters, since numbers are + // redundant. return (char_u *)query_type[idx]; } case EXP_CSCOPE_KILL: @@ -1132,15 +1132,15 @@ static int cs_help(exarg_T *eap) cmdp->usage); if (strcmp(cmdp->name, "find") == 0) MSG_PUTS(_("\n" - " a: Find assignments to this symbol\n" - " c: Find functions calling this function\n" - " d: Find functions called by this function\n" - " e: Find this egrep pattern\n" - " f: Find this file\n" - " g: Find this definition\n" - " i: Find files #including this file\n" - " s: Find this C symbol\n" - " t: Find this text string\n")); + " a: Find assignments to this symbol\n" + " c: Find functions calling this function\n" + " d: Find functions called by this function\n" + " e: Find this egrep pattern\n" + " f: Find this file\n" + " g: Find this definition\n" + " i: Find files #including this file\n" + " s: Find this C symbol\n" + " t: Find this text string\n")); cmdp++; } |