comparison runtime/doc/pattern.txt @ 1270:d9d524594fe5

updated for version 7.1
author vimboss
date Sat, 12 May 2007 14:57:31 +0000
parents dc65bb5de20e
children 22886f3d882d
comparison
equal deleted inserted replaced
1269:c63e66bc43ce 1270:d9d524594fe5
1 *pattern.txt* For Vim version 7.1b. Last change: 2007 Apr 24 1 *pattern.txt* For Vim version 7.1. Last change: 2007 May 11
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
863 These three can be used to match specific virtual columns in a buffer 863 These three can be used to match specific virtual columns in a buffer
864 or string. When not matching with a buffer in a window, the option 864 or string. When not matching with a buffer in a window, the option
865 values of the current window are used (e.g., 'tabstop'). 865 values of the current window are used (e.g., 'tabstop').
866 The "23" can be any column number. The first column is 1. 866 The "23" can be any column number. The first column is 1.
867 Note that some virtual column positions will never match, because they 867 Note that some virtual column positions will never match, because they
868 are halfway a Tab or other character that occupies more than one 868 are halfway through a tab or other character that occupies more than
869 screen character. {not in Vi} 869 one screen character. {not in Vi}
870 WARNING: When inserting or deleting text Vim does not automatically 870 WARNING: When inserting or deleting text Vim does not automatically
871 update highlighted matches. This means Syntax highlighting quickly 871 update highlighted matches. This means Syntax highlighting quickly
872 becomes wrong. 872 becomes wrong.
873 Example, to highlight the all characters after virtual column 72: > 873 Example, to highlight the all characters after virtual column 72: >
874 /\%>72v.* 874 /\%>72v.*