Lines Matching refs:can
8 In chapter 3 a few simple search patterns were mentioned |03.9|. Vim can do
10 A detailed specification can be found here: |pattern|
39 You can switch this off again with: >
63 If you want to ignore case for one specific pattern, you can do this by
85 If your search takes much longer than you expected, you can interrupt
117 where you started, so that you can check if you passed this position again.
130 Thus you can find all matches by going to the start of the file with "gg" and
140 of the pattern. You can tell Vim to leave it some other place by specifying
152 of the line that many lines from the match. The offset number can be positive
223 specify a line offset, this can cause trouble. For example: >
242 The "*" item specifies that the item before it can match any number of times.
296 The items so far match as many characters as they can find. To match as few
327 This matches "foo" or "bar". More alternatives can be concatenated: >
359 characters to match. You can include a list of characters, like this: >
364 you can specify the range. "0-3" stands for "0123". "w-z" stands for "wxyz".
365 Thus the same command as above can be shortened to: >
371 [] range (they can actually be used anywhere in the search pattern):
422 These items can not be used inside []. Thus "[\d\l]" does NOT work to
431 similar, but with an essential difference: The set of characters can be
438 of characters that can be a file name.
439 Which characters can be part of a file name depends on the system you are
446 For other systems the default value is different. Thus you can make a search
472 Vim can find a pattern that includes a line break. You need to specify where
495 can be modified in the same way by inserting a "_".
497 Many other items can be made to match a line break by prepending "\_". For
502 this, it can make a search command very slow.
514 items mentioned above can be combined.
533 Which one of these you should use? Whichever one you can remember. The
534 simple way you can remember is much faster than the fancy way that you can't.
535 If you can remember them all, then avoid the last one, because it's both more
542 letter and further consists of letters and digits. Underscores can be used
543 too. This can be found with: >