summaryrefslogtreecommitdiffstats
path: root/runtime/doc/pattern.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-02-11 19:15:50 +0100
committerBram Moolenaar <Bram@vim.org>2014-02-11 19:15:50 +0100
commit92dff1827aa0a199bd26139982c485fe366a5727 (patch)
tree5a9fb3f4520f491be934fc07e2a8a1e3ba9d93fe /runtime/doc/pattern.txt
parentb8e2305656adeb9357e726742bfe0e91e88cda28 (diff)
Update runtime files. Add support for systemverilog.
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 f2f0b34e32..80688f918c 100644
--- a/runtime/doc/pattern.txt
+++ b/runtime/doc/pattern.txt
@@ -1,4 +1,4 @@
-*pattern.txt* For Vim version 7.4. Last change: 2013 Nov 09
+*pattern.txt* For Vim version 7.4. Last change: 2014 Feb 08
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -192,10 +192,10 @@ affected.
An example of how to search for matches with a pattern and change the match
with another word: >
/foo<CR> find "foo"
- c//e change until end of match
+ c//e<CR> change until end of match
bar<Esc> type replacement
//<CR> go to start of next match
- c//e change until end of match
+ c//e<CR> change until end of match
beep<Esc> type another replacement
etc.
<