diff options
author | watiko <service@mail.watiko.net> | 2016-03-04 08:18:26 +0900 |
---|---|---|
committer | watiko <service@mail.watiko.net> | 2016-03-29 21:58:28 +0900 |
commit | 15b5bb038bac88228fc1be9d6bfc6342af624328 (patch) | |
tree | 6423ffc9aeef9f175ecefd62729fba59d1474f49 /runtime/doc/eval.txt | |
parent | ce832238c85fe8fef2250ac4ec567d4a8d302537 (diff) | |
download | rneovim-15b5bb038bac88228fc1be9d6bfc6342af624328.tar.gz rneovim-15b5bb038bac88228fc1be9d6bfc6342af624328.tar.bz2 rneovim-15b5bb038bac88228fc1be9d6bfc6342af624328.zip |
vim-patch:f913281
Updated and new runtime files.
https://github.com/vim/vim/commit/f91328100db34996ed7e7a800bed0a30ff0890dd
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 024e8fbfe0..27fe449933 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -1,4 +1,4 @@ -*eval.txt* For Vim version 7.4. Last change: 2015 Jul 10 +*eval.txt* For Vim version 7.4. Last change: 2015 Jul 21 VIM REFERENCE MANUAL by Bram Moolenaar @@ -4596,7 +4596,7 @@ match({expr}, {pat}[, {start}[, {count}]]) *match()* done like 'magic' is set and 'cpoptions' is empty. *matchadd()* *E798* *E799* *E801* -matchadd({group}, {pattern}[, {priority}[, {id}]]) +matchadd({group}, {pattern}[, {priority}[, {id} [, {dict}]]]) Defines a pattern to be highlighted in the current window (a "match"). It will be highlighted with {group}. Returns an identification number (ID), which can be used to delete the @@ -4604,6 +4604,8 @@ matchadd({group}, {pattern}[, {priority}[, {id}]]) Matching is case sensitive and magic, unless case sensitivity or magicness are explicitly overridden in {pattern}. The 'magic', 'smartcase' and 'ignorecase' options are not used. + The "Conceal" value is special, it causes the match to be + concealed. The optional {priority} argument assigns a priority to the match. A match with a high priority will have its |