Lines Matching refs:column
177 [num] [num] lines downwards, in column 1
178 +[num] [num] lines downwards, in column 1
179 -[num] [num] lines upwards, in column 1
195 /test/+1 one line below "test", in column 1
257 first column, skipping matches until one is found past the cursor position.
499 |/\%c| \%23c \%23c in column 23 |/zero-width|
500 |/\%v| \%23v \%23v in virtual column 23 |/zero-width|
950 \%23c Matches in a specific column.
951 \%<23c Matches before a specific column.
952 \%>23c Matches after a specific column.
953 \%.c Matches at the cursor column.
954 \%<.c Matches before the cursor column.
955 \%>.c Matches after the cursor column.
957 The "23" can be any column number. The first column is 1. Actually,
958 the column is the byte number (thus it's not exactly right for
965 Example, to highlight the column where the cursor currently is: >
971 Example for matching a single byte in column 44: >
973 < Note that "\%<46c" matches in column 45 when the "." matches a byte in
974 column 44.
976 \%23v Matches in a specific virtual column.
977 \%<23v Matches before a specific virtual column.
978 \%>23v Matches after a specific virtual column.
979 \%.v Matches at the current virtual column.
980 \%<.v Matches before the current virtual column.
981 \%>.v Matches after the current virtual column.
985 The "23" can be any column number. The first column is 1.
986 Note that some virtual column positions will never match, because they
994 Example, to highlight all the characters after virtual column 72: >
998 To match the text up to column 17: >
1000 < To match all characters after the current virtual column (where the
1004 include the column use: >
1007 character in column 17: >
1009 < Note that without the "^" to anchor the match in the first column,
1010 this will also highlight column 17: >
1169 The "Func" column shows what library function is used. The
1429 column 72 and more: >
1432 < To highlight all character that are in virtual column 7: >
1436 occupies more than one virtual column, such as a TAB.