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/options.lua | |
parent | eb123b565e201418dd135d2602dc20eea3cead39 (diff) | |
download | rneovim-288208257c8d6b3c8dcce7ee6c7b6c7bb7bafb27.tar.gz rneovim-288208257c8d6b3c8dcce7ee6c7b6c7bb7bafb27.tar.bz2 rneovim-288208257c8d6b3c8dcce7ee6c7b6c7bb7bafb27.zip |
feat(cscope)!: remove
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 149d0bace4..f4d6c808fa 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -496,58 +496,6 @@ return { defaults={if_true=macros('CPO_VIM')} }, { - full_name='cscopepathcomp', abbreviation='cspc', - short_desc=N_("how many components of the path to show"), - type='number', scope={'global'}, - varname='p_cspc', - defaults={if_true=0} - }, - { - full_name='cscopeprg', abbreviation='csprg', - short_desc=N_("command to execute cscope"), - type='string', scope={'global'}, - secure=true, - expand=true, - varname='p_csprg', - defaults={if_true="cscope"} - }, - { - full_name='cscopequickfix', abbreviation='csqf', - short_desc=N_("use quickfix window for cscope results"), - type='string', list='onecomma', scope={'global'}, - deny_duplicates=true, - varname='p_csqf', - defaults={if_true=""} - }, - { - full_name='cscoperelative', abbreviation='csre', - short_desc=N_("Use cscope.out path basename as prefix"), - type='bool', scope={'global'}, - varname='p_csre', - defaults={if_true=0} - }, - { - full_name='cscopetag', abbreviation='cst', - short_desc=N_("use cscope for tag commands"), - type='bool', scope={'global'}, - varname='p_cst', - defaults={if_true=0} - }, - { - full_name='cscopetagorder', abbreviation='csto', - short_desc=N_("determines \":cstag\" search order"), - type='number', scope={'global'}, - varname='p_csto', - defaults={if_true=0} - }, - { - full_name='cscopeverbose', abbreviation='csverb', - short_desc=N_("give messages when adding a cscope database"), - type='bool', scope={'global'}, - varname='p_csverbose', - defaults={if_true=1} - }, - { full_name='cursorbind', abbreviation='crb', short_desc=N_("move cursor in window as it moves in other windows"), type='bool', scope={'window'}, |