diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-03-23 11:58:47 +0100 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2022-03-24 11:02:39 +0100 |
commit | ed88ca75034a48916d165e88459c791c450df550 (patch) | |
tree | fcb649f147d87f1878cc20cc5260840f05efdbad /src/nvim/options.lua | |
parent | d7488bf38677b5d6b1df3a88e45b3d2f21527eb4 (diff) | |
download | rneovim-ed88ca75034a48916d165e88459c791c450df550.tar.gz rneovim-ed88ca75034a48916d165e88459c791c450df550.tar.bz2 rneovim-ed88ca75034a48916d165e88459c791c450df550.zip |
feat(input): enable <tab>/<c-i>, <cr>/<c-m>, <esc>/<c-[> pairs unconditionally
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index d12d1d7c2c..e665ffd346 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -542,13 +542,6 @@ return { defaults={if_true=1} }, { - full_name='ctrldisambig', abbreviation='clbg', - short_desc=N_(""), - type='bool', scope={'global'}, - varname='p_clbg', - defaults={if_true=true} - }, - { full_name='cursorbind', abbreviation='crb', short_desc=N_("move cursor in window as it moves in other windows"), type='bool', scope={'window'}, |