From 3bb266266935e9bf95f4a776b33800b9303d4607 Mon Sep 17 00:00:00 2001 From: Johan Klokkhammer Helsing Date: Fri, 16 Oct 2015 21:28:12 +0200 Subject: 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 --- src/nvim/options.lua | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/nvim/options.lua') 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 @@ -193,6 +193,14 @@ return { varname='p_bsk', 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'}, -- cgit