home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / matchit.txt < prev    next >
Text File  |  2003-08-12  |  18KB  |  387 lines

  1. *matchit.txt*   Extended "%" matching
  2.  
  3. For instructions on installing this file, type
  4.     :help add-local-help
  5. inside Vim.
  6.  
  7. For Vim version 6.1.  Last change:  2002 May 15
  8.  
  9.  
  10.           VIM REFERENCE MANUAL    by Benji Fisher
  11.  
  12. *matchit* *matchit.vim*
  13.  
  14. 1. Extended matching with "%"                |matchit-intro|
  15. 2. Activation                        |matchit-activate|
  16. 3. Configuration                    |matchit-configure|
  17. 4. Supporting a New Language                |matchit-newlang|
  18. 5. Known Bugs and Limitations                |matchit-bugs|
  19.  
  20. The functionality mentioned here is a plugin, see |add-plugin|.
  21. This plugin is only available if 'compatible' is not set.
  22. You can avoid loading this plugin by setting the "loaded_matchit" variable
  23. in your |vimrc| file: >
  24.     :let loaded_matchit = 1
  25.  
  26. {Vi does not have any of this}
  27.  
  28. ==============================================================================
  29. 1. Extended matching with "%"                *matchit-intro*
  30.  
  31.                             *matchit-%*
  32. %    Cycle forward through matching groups, such as "if", "else", "endif",
  33.     as specified by |b:match_words|.
  34.  
  35.                             *g%*
  36. g%    Cycle backwards through matching groups, as specified by
  37.     |b:match_words|.  For example, go from "endif" to "else" to "if".
  38.  
  39.                             *[%*
  40. [%    Go to [count] previous unmatched group, as specified by
  41.     |b:match_words|.  Similar to |[{|.
  42.  
  43.                             *]%*
  44. ]%    Go to [count] next unmatched group, as specified by
  45.     |b:match_words|.  Similar to |]}|.
  46.  
  47.  
  48. In Vim, as in plain vi, the percent key, |%|, jumps the cursor from a brace,
  49. bracket, or paren to its match.  This can be configured with the 'matchpairs'
  50. option.  The matchit plugin extends this in several ways:
  51.  
  52.         You can match whole words, such as "if" and "endif", not just
  53.     single characters.  You can also specify a |regular-expression|.
  54.         You can define groups with more than two words, such as "if",
  55.     "else", "endif".  Banging on the "%" key will cycle from the "if" to
  56.     the first "else", the next "else", ..., the closing "endif", and back
  57.     to the opening "if".  Nested structures are skipped.  Using |g%| goes
  58.     in the reverse direction.
  59.         By default, words inside comments and strings are ignored, unless
  60.     the cursor is inside a comment or string when you type "%".  If the
  61.     only thing you want to do is modify the behavior of "%" so that it
  62.     behaves this way, you can >
  63.         :let b:match_words = &matchpairs
  64. <
  65. See |matchit-details| for details on what the script does, and |b:match_words|
  66. for how to specify matching patterns.
  67.  
  68. MODES:            *matchit-modes* *matchit-v_%* *matchit-o_%*
  69.  
  70. Mostly, % and related motions (|g%| and |[%| and |]%|) work just like built-in
  71. |motion| commands in |Operator-pending| and |Visual| modes.  However, you
  72. cannot make these motions |linewise| or |characterwise|, since the |:omap|s
  73. that define them start with "v" in order to make the default behavior
  74. inclusive.  (See |o_v|.)  In other words, "dV%" will not work.  The
  75. work-around is to go through Visual mode:  "V%d" will work.
  76.  
  77. LANGUAGES:                    *matchit-languages*
  78.  
  79. Currently, the following languages are supported:  Ada, ASP with VBS, Csh,
  80. DTD, Entity, Essbase, Fortran, HTML, JSP (same as HTML), LaTeX, Lua, Pascal,
  81. SGML, Shell, Tcsh, Vim, XML.  Other languages may already have support via
  82. |filetype-plugin|s.
  83.  
  84. To support a new language, see |matchit-newlang| below.
  85.  
  86. DETAILS:                *matchit-details* *matchit-parse*
  87.  
  88. Here is an outline of what matchit.vim does each time you hit the "%" key.  If
  89. there are |backref|s in |b:match_words| then the first step is to produce a
  90. version in which these back references have been eliminated; if there are no
  91. |backref|s then this step is skipped.  This step is called parsing.  For
  92. example, "\(foo\|bar\):end\1" is parsed to yield
  93. "\(foo\|bar\):end\(foo\|bar\)".  This can get tricky, especially if there are
  94. nested groups.  If debugging is turned on, the parsed version is saved as
  95. |b:match_pat|.
  96.  
  97.                             *matchit-choose*
  98. Next, the script looks for a word on the current line that matches the pattern
  99. just constructed.  It includes the patterns from the 'matchpairs' option.
  100. The goal is to do what you expect, which turns out to be a little complicated.
  101. The script follows these rules:
  102.  
  103.     Insist on a match that ends on or after the cursor.
  104.     Prefer a match that includes the cursor position (that is, one that
  105.         starts on or before the cursor).
  106.     Prefer a match that starts as close to the cursor as possible.
  107.     Prefer a match in |b:match_words| to a match in 'matchpairs'.
  108.     If more than one pattern in |b:match_words| matches, choose the one
  109.         that is listed first.
  110.  
  111. Examples:
  112.  
  113.     Suppose you >
  114.         :let b:match_words = '<:>,<tag>:</tag>'
  115. <    and hit "%" with the cursor on or before the "<" in "a <tag> is born".
  116.     The pattern '<' comes first, so it is preferred over '<tag>', which
  117.     also matches.  If the cursor is on the "t", however, then '<tag>' is
  118.     preferred, because this matches a bit of text containing the cursor.
  119.     If the two groups of patterns were reversed then '<' would never be
  120.     preferred.
  121.  
  122.     Suppose you >
  123.         :let b:match_words = 'if:end if'
  124. <    (Note the space!) and hit "%" with the cursor at the end of "end if".
  125.     Then "if" matches, which is probably not what you want, but if the
  126.     cursor starts on the "end " then "end if" is chosen.  (You can avoid
  127.     this problem by using a more complicated pattern.)
  128.  
  129. If there is no match, the script falls back on the usual behavior of |%|.  If
  130. debugging is turned on, the matched bit of text is saved as |b:match_match|
  131. and the cursor column of the start of the match is saved as |b:match_col|.
  132.  
  133. Next, the script looks through |b:match_words| (original and parsed versions)
  134. for the group and pattern that match.  If debugging is turned on, the group is
  135. saved as |b:match_ini| (the first pattern) and |b:match_tail| (the rest).  If
  136. there are |backref|s then, in addition, the matching pattern is saved as
  137. |b:match_word| and a table of translations is saved as |b:match_table|.  If
  138. there are |backref|s, these are determined from the matching pattern and
  139. |b:match_match| and substituted into each pattern in the matching group.
  140.  
  141. The script decides whether to search forwards or backwards and chooses
  142. arguments for the |searchpair()| function.  Then, the cursor is moved to the
  143. start of the match, and |searchpair()| is called.  By default, matching
  144. structures inside strings and comments are ignored.  This can be changed by
  145. setting |b:match_skip|.
  146.  
  147. ==============================================================================
  148. 2. Activation                        *matchit-activate*
  149.  
  150. You can use this script as a plugin, by copying it to your plugin directory.
  151. See |add-global-plugin| for instructions.  You can also add a line to your
  152. |vimrc| file, such as >
  153.     :source $VIMRUNTIME/macros/matchit.vim
  154. or >
  155.     :runtime macros/matchit.vim
  156. Either way, the script should start working the next time you start up Vim.
  157.  
  158. The script does nothing unless it finds a |buffer-variable| named
  159. |b:match_words|.  The script contains autocommands that set this variable for
  160. various file types:  see |matchit-languages| above.  For a new language, you
  161. can add autocommands to the script or to your vimrc file, but the recommended
  162. method is to add a line such as >
  163.     let b:match_words = '\<foo\>:\<bar\>'
  164. to the |filetype-plugin| for your language.  See |b:match_words| below for how
  165. this variable is interpreted.
  166.  
  167. TROUBLESHOOTING                    *matchit-troubleshoot*
  168.  
  169. The script should work in most installations of Vim.  It may not work if Vim
  170. was compiled with a minimal feature set, for example if the |+syntax| option
  171. was not enabled.  If your Vim has support for syntax compiled in, but you do
  172. not have |syntax| highlighting turned on, matchit.vim should work, but it may
  173. fail to skip matching groups in comments and strings.  If the |filetype|
  174. mechanism is turned off, the |b:match_words| variable will probably not be
  175. defined automatically.
  176.  
  177. ==============================================================================
  178. 3. Configuration                    *matchit-configure*
  179.  
  180. There are several variables that govern the behavior of matchit.vim.  Note
  181. that these are variables local to the buffer, not options, so use |:let| to
  182. define them, not |:set|.  Some of these variables have values that matter; for
  183. others, it only matters whether the variable has been defined.  All of these
  184. can be defined in the |filetype-plugin| or autocommand that defines
  185. |b:match_words| or "on the fly."
  186.  
  187. The main variable is |b:match_words|.  It is described in the section below on
  188. supporting a new language.
  189.  
  190.                         *b:match_ignorecase*
  191. If you >
  192.     :let b:match_ignorecase = 1
  193. then matchit.vim acts as if 'ignorecase' is set: for example, "end" and "END"
  194. are equivalent.  If you >
  195.     :let b:match_ignorecase = 0
  196. then matchit.vim treats "end" and "END" differently.  (There will be no
  197. b:match_infercase option unless someone requests it.)
  198.  
  199.                         *b:match_debug*
  200. Define b:match_debug if you want debugging information to be saved.  See
  201. |matchit-debug|, below.
  202.  
  203.                         *b:match_skip*
  204. If b:match_skip is defined, it is passed as the skip argument to
  205. |searchpair()|.  This controls when matching structures are skipped, or
  206. ignored.  By default, they are ignored inside comments and strings, as
  207. determined by the |syntax| mechanism.  (If syntax highlighting is turned off,
  208. nothing is skipped.)  You can set b:match_skip to a string, which evaluates to
  209. a non-zero, numerical value if the match is to be skipped or zero if the match
  210. should not be skipped.  In addition, the following special values are
  211. supported by matchit.vim:
  212.     s:foo becomes (current syntax item) =~ foo
  213.     S:foo becomes (current syntax item) !~ foo
  214.     r:foo becomes (line before cursor) =~ foo
  215.     R:foo becomes (line before cursor) !~ foo
  216. (The "s" is meant to suggest "syntax", and the "r" is meant to suggest
  217. "regular expression".)
  218.  
  219. Examples:
  220.  
  221.     You can get the default behavior with >
  222.         :let b:match_skip = 's:comment\|string'
  223. <
  224.     If you want to skip matching structures unless they are at the start
  225.     of the line (ignoring whitespace) then you can >
  226.         :let b:match_skip = 'R:^\s*'
  227. <    Do not do this if strings or comments can span several lines, since
  228.     the normal syntax checking will not be done if you set b:match_skip.
  229.  
  230.     In LaTeX, since "%" is used as the comment character, you can >
  231.         :let b:match_skip = 'r:%'
  232. <    Unfortunately, this will skip anything after "\%", an escaped "%".  To
  233.     allow for this, and also "\\%" (an excaped backslash followed by the
  234.     comment character) you can >
  235.         :let b:match_skip = 'r:\(^\|[^\\]\)\(\\\\\)*%'
  236. <
  237.     See the $VIMRUNTIME/syntax/vim.vim for an example that uses both
  238.     syntax and a regular expression.
  239.  
  240. ==============================================================================
  241. 4. Supporting a New Language                *matchit-newlang*
  242.                             *b:match_words*
  243. In order for matchit.vim to support a new language, you must define a suitable
  244. pattern for |b:match_words|.  You may also want to set some of the
  245. |matchit-configure| variables, as described above.  If your language has a
  246. complicated syntax, or many keywords, you will need to know something about
  247. Vim's |regular-expression|s.
  248.  
  249. The format for |b:match_words| is similar to that of the 'matchpairs' option:
  250. it is a comma (,)-separated list of groups; each group is a colon(:)-separated
  251. list of patterns (regular expressions).  It is OK to have only one group; the
  252. effect is undefined if a group has only one pattern.  A simple example is >
  253.     :let b:match_words = '\<if\>:\<endif\>,'
  254.         \ . '\<while\>:\<continue\>:\<break\>:\<endwhile\>'
  255. (In Vim regular expressions, |\<| and |\>| denote word boundaries.  Thus "if"
  256. matches the end of "endif" but "\<if\>" does not.)  Then banging on the "%"
  257. key will bounce the cursor between "if" and the matching "endif"; and from
  258. "while" to any matching "continue" or "break", then to the matching "endwhile"
  259. and back to the "while".  It is almost always easier to use |literal-string|s
  260. (single quotes) as above:  '\<if\>' rather than "\\<if\\>" and so on.
  261.  
  262. Exception:  If the ":" character does not appear in b:match_words, then it is
  263. treated as an expression to be evaluated.  For example, >
  264.     :let b:match_words = 'GetMatchWords()'
  265. allows you to define a function.  This can return a different string depending
  266. on the current syntax, for example.
  267.  
  268. Once you have defined the appropriate value of |b:match_words|, you will
  269. probably want to have this set automatically each time you edit the
  270. appropriate file type.  The recommended way to do this is by adding the
  271. definition to a |filetype-plugin| file.
  272.  
  273. Tips: Be careful that your initial pattern does not match your final pattern.
  274. See the example above for the use of word-boundary expressions.  It is usually
  275. better to use ".\{-}" (as many as necessary) instead of ".*" (as many as
  276. possible).  See |\{-|.  For example, in the string "<tag>label</tag>", "<.*>"
  277. matches the whole string whereas "<.\{-}>" and "<[^>]*>" match "<tag>" and
  278. "</tag>".
  279.  
  280.                 *matchit-spaces* *matchit-s:notend*
  281. If "if" is to be paired with "end if" (Note the space!) then word boundaries
  282. are not enough.  Instead, define a regular expression s:notend that will match
  283. anything but "end" and use it as follows: >
  284.     :let s:notend = '\%(\<end\s\+\)\@<!'
  285.     :let b:match_words = s:notend . '\<if\>:\<end\s\+if\>'
  286. This is a simplified version of what is done for Ada.  The s:notend is a
  287. |script-variable|.  Similarly, you may want        *matchit-s:sol*
  288. to define a start-of-line regular expression >
  289.     :let s:sol = '\%(^\|;\)\s*'
  290. if keywords are only recognized after the start of a line or after a
  291. semicolon (;), with optional white space.
  292.  
  293.                     *matchit-backref* *matchit-\1*
  294. In any group, the expressions |\1|, |\2|, ..., |\9| refer to parts of the
  295. INITIAL pattern enclosed in |\(|escaped parentheses|\)|.  These are referred
  296. to as back references, or backrefs.  For example, >
  297.     :let b:match_words = '\<b\(o\+\)\>:\(h\)\1\>'
  298. means that "bo" pairs with "ho" and "boo" pairs with "hoo" and so on.  Note
  299. that "\1" does not refer to the "\(h\)" in this example.  If you have
  300. "\(nested \(parentheses\)\) then "\d" refers to the d-th "\(" and everything
  301. up to and including the matching "\)":  in "\(nested\(parentheses\)\)", "\1"
  302. refers to everything and "\2" refers to "\(parentheses\)".  If you use a
  303. variable such as |s:notend| or |s:sol| in the previous paragraph then remember
  304. to count any "\(" patterns in this variable.  You do not have to count groups
  305. defined by |\%(\)|.
  306.  
  307. It should be possible to resolve back references from any pattern in the
  308. group.  For example, >
  309.     :let b:match_words = '\(foo\)\(bar\):more\1:and\2:end\1\2'
  310. would not work because "\2" cannot be determined from "morefoo" and "\1"
  311. cannot be determined from "andbar".  On the other hand, >
  312.     :let b:match_words = '\(\(foo\)\(bar\)\):\3\2:end\1'
  313. should work (and have the same effect as "foobar:barfoo:endfoobar"), although
  314. this has not been thoroughly tested.
  315.  
  316. You can use |zero-width| patterns such as |\@<=| and |\zs|.  (The latter has
  317. not been thouroughly tested in matchit.vim.)  For example, if the keyword "if"
  318. must occur at the start of the line, with optional white space, you might use
  319. the pattern "\(^\s*\)\@<=if" so that the cursor will end on the "i" instead of
  320. at the start of the line.  For another example, if HTML had only one tag then
  321. one could >
  322.     :let b:match_words = '<:>,<\@<=tag>:<\@<=/tag>'
  323. so that "%" can bounce between matching "<" and ">" pairs or (starting on
  324. "tag" or "/tag") between matching tags.  Without the |\@<=|, the script would
  325. bounce from "tag" to the "<" in "</tag>", and another "%" would not take you
  326. back to where you started.
  327.  
  328. DEBUGGING                *matchit-debug* *:MatchDebug*
  329.  
  330. If you are having trouble figuring out the appropriate definition of
  331. |b:match_words| then you can take advantage of the same information I use when
  332. debugging the script.  This is especially true if you are not sure whether
  333. your patterns or my script are at fault!  To make this more convenient, I have
  334. made the command :MatchDebug, which defines the variable |b:match_debug| and
  335. creates a Matchit menu.  This menu makes it convenient to check the values of
  336. the variables described below.  You will probably also want to read
  337. |matchit-details| above.
  338.  
  339. Defining the variable |b:match_debug| causes the script to set the following
  340. variables, each time you hit the "%" key.  Several of these are only defined
  341. if |b:match_words| includes |backref|s.
  342.  
  343.                             *b:match_pat*
  344. The b:match_pat variable is set to |b:match_words| with |backref|s parsed.
  345.                             *b:match_match*
  346. The b:match_match variable is set to the bit of text that is recognized as a
  347. match.
  348.                             *b:match_col*
  349. The b:match_col variable is set to the cursor column of the start of the
  350. matching text.
  351.                             *b:match_wholeBR*
  352. The b:match_wholeBR variable is set to the comma-separated group of patterns
  353. that matches, with |backref|s unparsed.
  354.                             *b:match_iniBR*
  355. The b:match_iniBR variable is set to the first pattern in |b:match_wholeBR|.
  356.                             *b:match_ini*
  357. The b:match_ini variable is set to the first pattern in |b:match_wholeBR|,
  358. with |backref|s resolved from |b:match_match|.
  359.                             *b:match_tail*
  360. The b:match_tail variable is set to the remaining patterns in
  361. |b:match_wholeBR|, with |backref|s resolved from |b:match_match|.
  362.                             *b:match_word*
  363. The b:match_word variable is set to the pattern from |b:match_wholeBR| that
  364. matches |b:match_match|.
  365.                             *b:match_table*
  366. The back reference '\'.d refers to the same thing as '\'.b:match_table[d] in
  367. |b:match_word|.
  368.  
  369. ==============================================================================
  370. 5. Known Bugs and Limitations                *matchit-bugs*
  371.  
  372. Just because I know about a bug does not mean that it is on my todo list.  I
  373. try to respond to reports of bugs that cause real problems.  If it does not
  374. cause serious problems, or if there is a work-around, a bug may sit there for
  375. a while.  Moral:  if a bug (known or not) bothers you, let me know.
  376.  
  377. Changes such as "d%" cannot be repeated with |.|.  This seems to be a
  378. fundamental limitation of user-defined motions.
  379.  
  380. It would be nice if "\0" were recognized as the entire pattern.  That is, it
  381. would be nice if "foo:\end\0" had the same effect as "\(foo\):\end\1".  I may
  382. try to implement this in a future version.  (This is not so easy to arrange as
  383. you might think!)
  384.  
  385. ==============================================================================
  386. vim:tw=78:fo=tcq2:
  387.