Lines Matching refs:one
31 only one of them.
48 If you have a pattern with at least one uppercase character, the search
63 If you want to ignore case for one specific pattern, you can do this by
112 window (in the status line if there is one). It looks like this:
251 must be grouped into one item. This is done by putting "\(" before it and
259 match one or more times. >
303 Will match "ab" in "abbb". Actually, it will never match more than one b,
329 /one\|two\|three
331 Matches "one", "two" and "three".
369 To match the "-" character itself make it the first or last one in the range.
477 /one\ntwo
479 This will match at a line that ends in "one" and the next line starts with
480 "two". To match "one two" as well, you need to match a space or a line
483 /one\_stwo
487 /one\_s\+two
489 This also matches when "one " is at the end of a line and " two" at the
490 start of the next one.
519 A sample license plate number is "1MGU103". It has one digit, three uppercase
533 Which one of these you should use? Whichever one you can remember. The
535 If you can remember them all, then avoid the last one, because it's both more