diff options
author | Lewis Russell <lewis6991@gmail.com> | 2022-10-08 15:48:07 +0100 |
---|---|---|
committer | Lewis Russell <lewis6991@gmail.com> | 2022-10-13 16:37:23 +0100 |
commit | 288208257c8d6b3c8dcce7ee6c7b6c7bb7bafb27 (patch) | |
tree | 8a4d8f0d54a98d87bb219f54def43a5f0aa5d402 /src/nvim/optionstr.c | |
parent | eb123b565e201418dd135d2602dc20eea3cead39 (diff) | |
download | rneovim-288208257c8d6b3c8dcce7ee6c7b6c7bb7bafb27.tar.gz rneovim-288208257c8d6b3c8dcce7ee6c7b6c7bb7bafb27.tar.bz2 rneovim-288208257c8d6b3c8dcce7ee6c7b6c7bb7bafb27.zip |
feat(cscope)!: remove
Diffstat (limited to 'src/nvim/optionstr.c')
-rw-r--r-- | src/nvim/optionstr.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/nvim/optionstr.c b/src/nvim/optionstr.c index 24ee0a1f69..be3e137b69 100644 --- a/src/nvim/optionstr.c +++ b/src/nvim/optionstr.c @@ -1375,23 +1375,6 @@ char *did_set_string_option(int opt_idx, char **varp, char *oldval, char *errbuf coladvance(curwin->w_virtcol); } } - } else if (varp == &p_csqf) { - if (p_csqf != NULL) { - p = p_csqf; - while (*p != NUL) { - if (vim_strchr(CSQF_CMDS, *p) == NULL - || p[1] == NUL - || vim_strchr(CSQF_FLAGS, p[1]) == NULL - || (p[2] != NUL && p[2] != ',')) { - errmsg = e_invarg; - break; - } else if (p[2] == NUL) { - break; - } else { - p += 3; - } - } - } } else if (gvarp == &p_cino) { // 'cinoptions' // TODO(vim): recognize errors parse_cino(curbuf); |