diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-11-12 13:32:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-12 13:32:48 +0100 |
commit | 598f5af58b21747ea9d6dc0a7d846cb85ae52824 (patch) | |
tree | 75ce4e63e1300f33a13a607a9cc6cbb1a60b9a80 /runtime/doc | |
parent | 84eed76b552405b0aef442e3eddc7f29f484b2cd (diff) | |
parent | ae9a3d3b9984ef8bf9cec1a8738f29821951c5a5 (diff) | |
download | rneovim-598f5af58b21747ea9d6dc0a7d846cb85ae52824.tar.gz rneovim-598f5af58b21747ea9d6dc0a7d846cb85ae52824.tar.bz2 rneovim-598f5af58b21747ea9d6dc0a7d846cb85ae52824.zip |
Merge #5582 from justinmk/icm
'inccommand': Support :smagic/:snomagic. Less jumping around.
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/options.txt | 25 |
1 files changed, 9 insertions, 16 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 94c5e2d11d..d13a245d87 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1155,21 +1155,14 @@ A jump table for the options with a short description can be found at |Q_op|. *'buftype'* *'bt'* *E382* 'buftype' 'bt' string (default: "") local to buffer - {not available when compiled without the |+quickfix| - feature} The value of this option specifies the type of a buffer: <empty> normal buffer - nofile buffer which is not related to a file and will not be - written - nowrite buffer which will not be written - acwrite buffer which will always be written with BufWriteCmd - autocommands. - quickfix quickfix buffer, contains list of errors |:cwindow| - or list of locations |:lwindow| - help help buffer (you are not supposed to set this - manually) - terminal terminal buffer, this is set automatically when a - terminal is created. |terminal-emulator| + acwrite buffer will always be written with |BufWriteCmd|s + help help buffer (do not set this manually) + nofile buffer is not related to a file, will not be written + nowrite buffer will not be written + quickfix list of errors |:cwindow| or locations |:lwindow| + terminal |terminal-emulator| buffer This option is used together with 'bufhidden' and 'swapfile' to specify special kinds of buffers. See |special-buffers|. @@ -3420,10 +3413,10 @@ A jump table for the options with a short description can be found at |Q_op|. 'inccommand' 'icm' string (default "") global - "nosplit" : Shows the effects of a command incrementally, as you type. - "split" : Also shows partial off-screen results in a preview window. + "nosplit": Shows the effects of a command incrementally, as you type. + "split" : Also shows partial off-screen results in a preview window. - Currently only works for |:substitute|. |hl-Substitute| + Works for |:substitute|, |:smagic|, |:snomagic|. |hl-Substitute| *'include'* *'inc'* 'include' 'inc' string (default "^\s*#\s*include") |