diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-01-30 14:18:00 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-01-30 14:18:00 +0100 |
commit | a3e6bc93d1a76e0619c27e462b75d8f94969f47d (patch) | |
tree | a6b2e21437e673d0cf850343defb8562990a3a8f /runtime/doc/pattern.txt | |
parent | 52f85b730e379c4519b4a9ef1f008417150713f7 (diff) | |
download | vim-git-a3e6bc93d1a76e0619c27e462b75d8f94969f47d.tar.gz |
Update runtime files.
Diffstat (limited to 'runtime/doc/pattern.txt')
-rw-r--r-- | runtime/doc/pattern.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/doc/pattern.txt b/runtime/doc/pattern.txt index 5c4a79020..6040ba88f 100644 --- a/runtime/doc/pattern.txt +++ b/runtime/doc/pattern.txt @@ -1,4 +1,4 @@ -*pattern.txt* For Vim version 7.3. Last change: 2012 May 18 +*pattern.txt* For Vim version 7.3. Last change: 2013 Jan 25 VIM REFERENCE MANUAL by Bram Moolenaar @@ -993,6 +993,8 @@ x A single character, with no special meaning, matches itself [xyz] any 'x', 'y' or 'z' [a-zA-Z]$ any alphabetic character at the end of a line \c[a-z]$ same + [А-яЁё] Russian alphabet (with utf-8 and cp1251) + */[\n]* With "\_" prepended the collection also includes the end-of-line. The same can be done by including "\n" in the collection. The |