comparison runtime/doc/motion.txt @ 625:81fe2ccc1207 v7.0179

updated for version 7.0179
author vimboss
date Thu, 12 Jan 2006 23:22:24 +0000
parents d220eb88e4e4
children 6beb2c667935
comparison
equal deleted inserted replaced
624:91e7d4a7b3b0 625:81fe2ccc1207
1 *motion.txt* For Vim version 7.0aa. Last change: 2005 Dec 12 1 *motion.txt* For Vim version 7.0aa. Last change: 2006 Jan 02
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
384 384
385 These commands move over words or WORDS. 385 These commands move over words or WORDS.
386 *word* 386 *word*
387 A word consists of a sequence of letters, digits and underscores, or a 387 A word consists of a sequence of letters, digits and underscores, or a
388 sequence of other non-blank characters, separated with white space (spaces, 388 sequence of other non-blank characters, separated with white space (spaces,
389 tabs, <EOL>). This can be changed with the 'iskeyword' option. 389 tabs, <EOL>). This can be changed with the 'iskeyword' option. An empty line
390 is also considered to be a word.
390 *WORD* 391 *WORD*
391 A WORD consists of a sequence of non-blank characters, separated with white 392 A WORD consists of a sequence of non-blank characters, separated with white
392 space. An empty line is also considered to be a word and a WORD. 393 space. An empty line is also considered to be a WORD.
393 394
394 A sequence of folded lines is counted for one word of a single character. 395 A sequence of folded lines is counted for one word of a single character.
395 "w" and "W", "e" and "E" move to the start/end of the first word or WORD after 396 "w" and "W", "e" and "E" move to the start/end of the first word or WORD after
396 a range of folded lines. "b" and "B" move to the start of the first word or 397 a range of folded lines. "b" and "B" move to the start of the first word or
397 WORD before the fold. 398 WORD before the fold.