comparison runtime/doc/eval.txt @ 6951:b2673982c625

Updated and new runtime files.
author Bram Moolenaar <bram@vim.org>
date Tue, 21 Jul 2015 19:19:13 +0200
parents 1efa7c2b9368
children 814f1f569e4a
comparison
equal deleted inserted replaced
6950:21cbf1529a71 6951:b2673982c625
1 *eval.txt* For Vim version 7.4. Last change: 2015 Jul 10 1 *eval.txt* For Vim version 7.4. Last change: 2015 Jul 21
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
4403 The 'ignorecase' option is used to set the ignore-caseness of 4403 The 'ignorecase' option is used to set the ignore-caseness of
4404 the pattern. 'smartcase' is NOT used. The matching is always 4404 the pattern. 'smartcase' is NOT used. The matching is always
4405 done like 'magic' is set and 'cpoptions' is empty. 4405 done like 'magic' is set and 'cpoptions' is empty.
4406 4406
4407 *matchadd()* *E798* *E799* *E801* 4407 *matchadd()* *E798* *E799* *E801*
4408 matchadd({group}, {pattern}[, {priority}[, {id}]]) 4408 matchadd({group}, {pattern}[, {priority}[, {id} [, {dict}]]])
4409 Defines a pattern to be highlighted in the current window (a 4409 Defines a pattern to be highlighted in the current window (a
4410 "match"). It will be highlighted with {group}. Returns an 4410 "match"). It will be highlighted with {group}. Returns an
4411 identification number (ID), which can be used to delete the 4411 identification number (ID), which can be used to delete the
4412 match using |matchdelete()|. 4412 match using |matchdelete()|.
4413 Matching is case sensitive and magic, unless case sensitivity 4413 Matching is case sensitive and magic, unless case sensitivity
4414 or magicness are explicitly overridden in {pattern}. The 4414 or magicness are explicitly overridden in {pattern}. The
4415 'magic', 'smartcase' and 'ignorecase' options are not used. 4415 'magic', 'smartcase' and 'ignorecase' options are not used.
4416 The "Conceal" value is special, it causes the match to be
4417 concealed.
4416 4418
4417 The optional {priority} argument assigns a priority to the 4419 The optional {priority} argument assigns a priority to the
4418 match. A match with a high priority will have its 4420 match. A match with a high priority will have its
4419 highlighting overrule that of a match with a lower priority. 4421 highlighting overrule that of a match with a lower priority.
4420 A priority is specified as an integer (negative numbers are no 4422 A priority is specified as an integer (negative numbers are no