comparison runtime/doc/cmdline.txt @ 2581:e8a482a7fa6c

Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Sun, 19 Sep 2010 19:01:21 +0200
parents 073ff46fe397
children 916c90b37ea9
comparison
equal deleted inserted replaced
2580:06aa43dde561 2581:e8a482a7fa6c
1 *cmdline.txt* For Vim version 7.3. Last change: 2010 May 07 1 *cmdline.txt* For Vim version 7.3. Last change: 2010 Sep 18
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
421 no uppercase characters, the added character is converted to 421 no uppercase characters, the added character is converted to
422 lowercase. 422 lowercase.
423 423
424 The 'wildchar' option defaults to <Tab> (CTRL-E when in Vi compatible mode; in 424 The 'wildchar' option defaults to <Tab> (CTRL-E when in Vi compatible mode; in
425 a previous version <Esc> was used). In the pattern standard wildcards '*' and 425 a previous version <Esc> was used). In the pattern standard wildcards '*' and
426 '?' are accepted. '*' matches any string, '?' matches exactly one character. 426 '?' are accepted when matching file names. '*' matches any string, '?'
427 matches exactly one character.
427 428
428 If you like tcsh's autolist completion, you can use this mapping: 429 If you like tcsh's autolist completion, you can use this mapping:
429 :cnoremap X <C-L><C-D> 430 :cnoremap X <C-L><C-D>
430 (Where X is the command key to use, <C-L> is CTRL-L and <C-D> is CTRL-D) 431 (Where X is the command key to use, <C-L> is CTRL-L and <C-D> is CTRL-D)
431 This will find the longest match and then list all matching files. 432 This will find the longest match and then list all matching files.