comparison runtime/doc/usr_03.txt @ 7557:502ca0a62fd8

commit https://github.com/vim/vim/commit/acb4f221c715a333f4c49a2235a8006c6ac6e4d5 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 10 15:59:26 2016 +0100 Updated runtime files.
author Christian Brabandt <cb@256bit.org>
date Sun, 10 Jan 2016 16:00:06 +0100
parents aea5ebf352c4
children 9f48eab77d62
comparison
equal deleted inserted replaced
7556:823c4567b8a2 7557:502ca0a62fd8
1 *usr_03.txt* For Vim version 7.4. Last change: 2015 Dec 12 1 *usr_03.txt* For Vim version 7.4. Last change: 2016 Jan 05
2 2
3 VIM USER MANUAL - by Bram Moolenaar 3 VIM USER MANUAL - by Bram Moolenaar
4 4
5 Moving around 5 Moving around
6 6
411 in "the" use: > 411 in "the" use: >
412 412
413 /the\> 413 /the\>
414 414
415 The "\>" item is a special marker that only matches at the end of a word. 415 The "\>" item is a special marker that only matches at the end of a word.
416 Similarly "\<" only matches at the begin of a word. Thus to search for the 416 Similarly "\<" only matches at the beginning of a word. Thus to search for
417 word "the" only: > 417 the word "the" only: >
418 418
419 /\<the\> 419 /\<the\>
420 420
421 This does not match "there" or "soothe". Notice that the "*" and "#" commands 421 This does not match "there" or "soothe". Notice that the "*" and "#" commands
422 use these start-of-word and end-of-word markers to only find whole words (you 422 use these start-of-word and end-of-word markers to only find whole words (you