summaryrefslogtreecommitdiffstats
path: root/runtime/doc/pattern.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-08-15 13:50:43 +0200
committerBram Moolenaar <Bram@vim.org>2010-08-15 13:50:43 +0200
commitdb84e4599cec635d6255c7beaf2cc9306681f099 (patch)
tree3eae5b8f61583d0de5bcb15e438d0a821bc2a560 /runtime/doc/pattern.txt
parentd04f4402591c0334b3d86ea1142686d5ffd64944 (diff)
Make the references to features in the help more consistent. (Sylvain Hitier)
Diffstat (limited to 'runtime/doc/pattern.txt')
-rw-r--r--runtime/doc/pattern.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/pattern.txt b/runtime/doc/pattern.txt
index 9a6768516c..620476b78f 100644
--- a/runtime/doc/pattern.txt
+++ b/runtime/doc/pattern.txt
@@ -765,7 +765,7 @@ $ At end of pattern or in front of "\|", "\)" or "\n" ('magic' on):
branch is used. Example: >
/\(.\{-}\zsFab\)\{3}
< Finds the third occurrence of "Fab".
- {not in Vi} {not available when compiled without the +syntax feature}
+ {not in Vi} {not available when compiled without the |+syntax| feature}
*/\ze*
\ze Matches at any position, and sets the end of the match there: The
previous char is the last char of the whole match. |/zero-width|
@@ -773,7 +773,7 @@ $ At end of pattern or in front of "\|", "\)" or "\n" ('magic' on):
branch is used.
Example: "end\ze\(if\|for\)" matches the "end" in "endif" and
"endfor".
- {not in Vi} {not available when compiled without the +syntax feature}
+ {not in Vi} {not available when compiled without the |+syntax| feature}
*/\%^* *start-of-file*
\%^ Matches start of the file. When matching with a string, matches the
@@ -1085,7 +1085,7 @@ x A single character, with no special meaning, matches itself
To include a "[" use "[[]" and for "]" use []]", e.g.,: >
/index\%[[[]0[]]]
< matches "index" "index[", "index[0" and "index[0]".
- {not available when compiled without the +syntax feature}
+ {not available when compiled without the |+syntax| feature}
*/\%d* */\%x* */\%o* */\%u* */\%U* *E678*