diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-07-21 19:19:13 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-07-21 19:19:13 +0200 |
commit | f91328100db34996ed7e7a800bed0a30ff0890dd (patch) | |
tree | afe2a1c3c77f205d0e400d70b22eba9cd2d78d3a /runtime/optwin.vim | |
parent | 165bc69d1b7f70ca9d5b657f35d0584ecb7b5183 (diff) | |
download | vim-git-f91328100db34996ed7e7a800bed0a30ff0890dd.tar.gz |
Updated and new runtime files.
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 921ae3630..aee9cc40d 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1,7 +1,7 @@ " These commands create the option window. " " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last Change: 2014 Nov 19 +" Last Change: 2015 Jul 21 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 @@ -705,6 +705,8 @@ call append("$", "errorbells\tring the bell for error messages") call <SID>BinOptionG("eb", &eb) call append("$", "visualbell\tuse a visual bell instead of beeping") call <SID>BinOptionG("vb", &vb) +call append("$", "belloff\tdo not ring the bell for these reasons") +call <SID>OptionG("beolloff", &beolloff) if has("multi_lang") call append("$", "helplang\tlist of preferred languages for finding help") call <SID>OptionG("hlg", &hlg) @@ -954,7 +956,7 @@ call <SID>BinOptionL("bin") call append("$", "endofline\tlast line in the file has an end-of-line") call append("$", "\t(local to buffer)") call <SID>BinOptionL("eol") -call append("$", "fixeol\tfixes missing end-of-line at end of text file") +call append("$", "fixendofline\tfixes missing end-of-line at end of text file") call append("$", "\t(local to buffer)") call <SID>BinOptionL("fixeol") if has("multi_byte") |