diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-01-30 07:56:54 +0800 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2022-03-24 11:02:39 +0100 |
commit | d7488bf38677b5d6b1df3a88e45b3d2f21527eb4 (patch) | |
tree | 5b436b807d7aaa6f9e2eb4ab5d5c9cde58e908a5 /src/nvim/options.lua | |
parent | a72f338d76c871869712518df862c85d1df25f54 (diff) | |
download | rneovim-d7488bf38677b5d6b1df3a88e45b3d2f21527eb4.tar.gz rneovim-d7488bf38677b5d6b1df3a88e45b3d2f21527eb4.tar.bz2 rneovim-d7488bf38677b5d6b1df3a88e45b3d2f21527eb4.zip |
feat(input)!: delay some conversions to vgetc()
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index e665ffd346..d12d1d7c2c 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -542,6 +542,13 @@ 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'}, |