diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-04-09 22:13:34 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-09 22:13:34 +0800 |
| commit | f3183a4d7c051e8062d28cfc9905b21e13bb7775 (patch) | |
| tree | c1b15674392d50ce4b2f3d2f9c9ffe765373a69a /src/nvim/options.lua | |
| parent | 8055f9857b8e384634d457533dfdb08618fc36f0 (diff) | |
| parent | bf39c5fe4fcd54f32610849b5bacd129e449729d (diff) | |
| download | rneovim-f3183a4d7c051e8062d28cfc9905b21e13bb7775.tar.gz rneovim-f3183a4d7c051e8062d28cfc9905b21e13bb7775.tar.bz2 rneovim-f3183a4d7c051e8062d28cfc9905b21e13bb7775.zip | |
Merge pull request #18023 from tom-anders/vim-8.2.4702
vim-patch:8.2.{4702,4703}: C++ scope labels are hard-coded
Diffstat (limited to 'src/nvim/options.lua')
| -rw-r--r-- | src/nvim/options.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index e665ffd346..313cace4b2 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -351,6 +351,15 @@ return { defaults={if_true="if,else,while,do,for,switch"} }, { + full_name='cinscopedecls', abbreviation='cinsd', + short_desc=N_("words that are recognized by 'cino-g'"), + type='string', list='onecomma', scope={'buffer'}, + deny_duplicates=true, + alloced=true, + varname='p_cinsd', + defaults={if_true="public,protected,private"} + }, + { full_name='clipboard', abbreviation='cb', short_desc=N_("use the clipboard as the unnamed register"), type='string', list='onecomma', scope={'global'}, |