diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-11-10 21:15:48 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-11-10 21:15:48 +0100 |
commit | b4ff518d95aa57c2f8c0568c915035bef849581b (patch) | |
tree | b472c08f97b96b696ba886c6f21130a4f34c4bea /runtime/doc/syntax.txt | |
parent | 1c2836e268ce930bca9ea1287d0d83e92ce1b3ff (diff) | |
download | vim-b4ff518d95aa57c2f8c0568c915035bef849581b.zip |
Updated runtime files.
Diffstat (limited to 'runtime/doc/syntax.txt')
-rw-r--r-- | runtime/doc/syntax.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt index 0e71a39e8..7c676db99 100644 --- a/runtime/doc/syntax.txt +++ b/runtime/doc/syntax.txt @@ -1,4 +1,4 @@ -*syntax.txt* For Vim version 7.4. Last change: 2015 Oct 17 +*syntax.txt* For Vim version 7.4. Last change: 2015 Nov 05 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1082,6 +1082,7 @@ Most of things are same as |ft-c-syntax|. Variable Highlight ~ cpp_no_cpp11 don't highlight C++11 standard items +cpp_no_cpp14 don't highlight C++14 standard items CSH *csh.vim* *ft-csh-syntax* @@ -4165,7 +4166,7 @@ example, for instance, can be done like this: > As can be seen here, the \z actually does double duty. In the start pattern, it marks the "\(\I\i*\)" sub-expression as external; in the end pattern, it -changes the \1 back-reference into an external reference referring to the +changes the \z1 back-reference into an external reference referring to the first external sub-expression in the start pattern. External references can also be used in skip patterns: > :syn region foo start="start \(\I\i*\)" skip="not end \z1" end="end \z1" |