comparison runtime/doc/cmdline.txt @ 33902:8c4c6369239b

runtime(doc): link cmdline completion to to |wildcards| and fix typos (#13636) Commit: https://github.com/vim/vim/commit/61e984e212ed19774e088868c30c2d03c4e5a0cf Author: zeertzjq <zeertzjq@outlook.com> Date: Sat Dec 9 15:18:33 2023 +0800 runtime(doc): link cmdline completion to to |wildcards| and fix typos (https://github.com/vim/vim/issues/13636) The docs for cmdline completion doesn't mention that [abc] is considered a wildcard, and |wildcards| contains more detailed information, so just link to it. Also fix some typos in other help files. Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 10 Dec 2023 15:16:36 +0100
parents 9503dc55b5ed
children 4635e43f2c6f
comparison
equal deleted inserted replaced
33901:6732325893cc 33902:8c4c6369239b
1 *cmdline.txt* For Vim version 9.0. Last change: 2023 Nov 15 1 *cmdline.txt* For Vim version 9.0. Last change: 2023 Dec 09
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
461 account). 461 account).
462 Use CTRL-G to move to the next match. Hint: on a regular 462 Use CTRL-G to move to the next match. Hint: on a regular
463 keyboard T is above G. 463 keyboard T is above G.
464 464
465 The 'wildchar' option defaults to <Tab> (CTRL-E when in Vi compatible mode; in 465 The 'wildchar' option defaults to <Tab> (CTRL-E when in Vi compatible mode; in
466 a previous version <Esc> was used). In the pattern standard wildcards '*' and 466 a previous version <Esc> was used). In the pattern standard |wildcards| are
467 '?' are accepted when matching file names. '*' matches any string, '?' 467 accepted when matching file names.
468 matches exactly one character.
469 468
470 When repeating 'wildchar' or CTRL-N you cycle through the matches, eventually 469 When repeating 'wildchar' or CTRL-N you cycle through the matches, eventually
471 ending up back to what was typed. If the first match is not what you wanted, 470 ending up back to what was typed. If the first match is not what you wanted,
472 you can use <S-Tab> or CTRL-P to go straight back to what you typed. 471 you can use <S-Tab> or CTRL-P to go straight back to what you typed.
473 472