comparison runtime/doc/cmdline.txt @ 11659:49c12c93abf3

Updated runtime files and translations. commit https://github.com/vim/vim/commit/74675a666b51edd61e0210132658d81a86c5102c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 15 13:53:23 2017 +0200 Updated runtime files and translations.
author Christian Brabandt <cb@256bit.org>
date Sat, 15 Jul 2017 14:00:04 +0200
parents 883396809b45
children da55ea30842c
comparison
equal deleted inserted replaced
11658:8486d843ab52 11659:49c12c93abf3
1 *cmdline.txt* For Vim version 8.0. Last change: 2016 Sep 27 1 *cmdline.txt* For Vim version 8.0. Last change: 2017 Jul 11
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
452 a previous version <Esc> was used). In the pattern standard wildcards '*' and 452 a previous version <Esc> was used). In the pattern standard wildcards '*' and
453 '?' are accepted when matching file names. '*' matches any string, '?' 453 '?' are accepted when matching file names. '*' matches any string, '?'
454 matches exactly one character. 454 matches exactly one character.
455 455
456 The 'wildignorecase' option can be set to ignore case in filenames. 456 The 'wildignorecase' option can be set to ignore case in filenames.
457
458 The 'wildmenu' option can be set to show the matches just above the command
459 line.
457 460
458 If you like tcsh's autolist completion, you can use this mapping: 461 If you like tcsh's autolist completion, you can use this mapping:
459 :cnoremap X <C-L><C-D> 462 :cnoremap X <C-L><C-D>
460 (Where X is the command key to use, <C-L> is CTRL-L and <C-D> is CTRL-D) 463 (Where X is the command key to use, <C-L> is CTRL-L and <C-D> is CTRL-D)
461 This will find the longest match and then list all matching files. 464 This will find the longest match and then list all matching files.