aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/options.lua
diff options
context:
space:
mode:
authorJohan Klokkhammer Helsing <johanhelsing@gmail.com>2015-10-16 21:28:12 +0200
committerJohan Klokkhammer Helsing <johanhelsing@gmail.com>2015-10-18 01:58:18 +0200
commit3bb266266935e9bf95f4a776b33800b9303d4607 (patch)
tree305b7e72e04b30be2ed052df262ab6b771e7469d /src/nvim/options.lua
parente9de70e4ea53cd7ab70eba0757309004c61c3c62 (diff)
downloadrneovim-3bb266266935e9bf95f4a776b33800b9303d4607.tar.gz
rneovim-3bb266266935e9bf95f4a776b33800b9303d4607.tar.bz2
rneovim-3bb266266935e9bf95f4a776b33800b9303d4607.zip
vim-patch:7.4.793
Problem: Can't specify when not to ring the bell. Solution: Add the 'belloff' option. (Christian Brabandt) https://github.com/vim/vim/commit/165bc69d1b7f70ca9d5b657f35d0584ecb7b5183
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r--src/nvim/options.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua
index 5973e4b938..842b0a7c82 100644
--- a/src/nvim/options.lua
+++ b/src/nvim/options.lua
@@ -194,6 +194,14 @@ return {
defaults={if_true={vi=""}}
},
{
+ full_name='belloff', abbreviation='bo',
+ deny_duplicates=true,
+ type='string', list='comma', scope={'global'},
+ vi_def=true,
+ varname='p_bo',
+ defaults={if_true={vi=""}}
+ },
+ {
full_name='binary', abbreviation='bin',
type='bool', scope={'buffer'},
vi_def=true,