comparison runtime/doc/syntax.txt @ 4073:e362db8b2d7b

Update runtime files.
author Bram Moolenaar <bram@vim.org>
date Wed, 30 Jan 2013 14:18:00 +0100
parents fdb8a9c7bd91
children 7ffc704cb7c1
comparison
equal deleted inserted replaced
4072:37438facb5eb 4073:e362db8b2d7b
1 *syntax.txt* For Vim version 7.3. Last change: 2012 Nov 28 1 *syntax.txt* For Vim version 7.3. Last change: 2013 Jan 30
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
3901 External matches *:syn-ext-match* 3901 External matches *:syn-ext-match*
3902 3902
3903 These extra regular expression items are available in region patterns: 3903 These extra regular expression items are available in region patterns:
3904 3904
3905 */\z(* */\z(\)* *E50* *E52* 3905 */\z(* */\z(\)* *E50* *E52*
3906 \z(\) Marks the sub-expression as "external", meaning that it is can 3906 \z(\) Marks the sub-expression as "external", meaning that it can be
3907 be accessed from another pattern match. Currently only usable 3907 accessed from another pattern match. Currently only usable in
3908 in defining a syntax region start pattern. 3908 defining a syntax region start pattern.
3909 3909
3910 */\z1* */\z2* */\z3* */\z4* */\z5* 3910 */\z1* */\z2* */\z3* */\z4* */\z5*
3911 \z1 ... \z9 */\z6* */\z7* */\z8* */\z9* *E66* *E67* 3911 \z1 ... \z9 */\z6* */\z7* */\z8* */\z9* *E66* *E67*
3912 Matches the same string that was matched by the corresponding 3912 Matches the same string that was matched by the corresponding
3913 sub-expression in a previous start pattern match. 3913 sub-expression in a previous start pattern match.
4590 ":s///c" 4590 ":s///c"
4591 *hl-LineNr* 4591 *hl-LineNr*
4592 LineNr Line number for ":number" and ":#" commands, and when 'number' 4592 LineNr Line number for ":number" and ":#" commands, and when 'number'
4593 or 'relativenumber' option is set. 4593 or 'relativenumber' option is set.
4594 *hl-CursorLineNr* 4594 *hl-CursorLineNr*
4595 CursorLineNr Like LineNr when 'cursorline' is set for the cursor line. 4595 CursorLineNr Like LineNr when 'cursorline' or 'relativenumber' is set for
4596 the cursor line.
4596 *hl-MatchParen* 4597 *hl-MatchParen*
4597 MatchParen The character under the cursor or just before it, if it 4598 MatchParen The character under the cursor or just before it, if it
4598 is a paired bracket, and its match. |pi_paren.txt| 4599 is a paired bracket, and its match. |pi_paren.txt|
4599 4600
4600 *hl-ModeMsg* 4601 *hl-ModeMsg*