File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- *cmdline.txt* For Vim バージョン 9.1. Last change: 2024 Aug 20
1
+ *cmdline.txt* For Vim バージョン 9.1. Last change: 2024 Oct 05
2
2
3
3
4
4
VIMリファレンスマニュアル by Bram Moolenaar
@@ -456,13 +456,13 @@ CTRL-T 'incsearch' が設定され "/" や "?" にパターンを入力して
456
456
'ignorecase' オプションが使用される (ただし、あいまい一致では常に大文字と小文
457
457
字が無視される)。
458
458
459
- tcshのautolist補完が好みなら、このマッピングが使える。 >
459
+ tcshのautolist補完が好みなら、このマッピングが使える: >
460
460
:cnoremap X <C-L><C-D>
461
461
(ここで X は使いたいコマンドキー。<C-L> は CTRL-L , <C-D> は CTRL-D のこと)
462
462
これは最長のマッチを見つけ、マッチしたファイルを全て一覧表示する。
463
463
464
464
tcshのautolist補完が好みなら、オプション 'wildmode' を使ってその動作をエミュ
465
- レートできる。例えば、次の設定は autolist=ambiguous という設定を真似る。 >
465
+ レートできる。例えば、次の設定は autolist=ambiguous という設定を真似る: >
466
466
:set wildmode=longest,list
467
467
これは、最初の 'wildchar' で最長のマッチを見つけ、次はマッチするファイルを全て
468
468
一覧表示する。
Original file line number Diff line number Diff line change 1
- *cmdline.txt* For Vim version 9.1. Last change: 2024 Aug 20
1
+ *cmdline.txt* For Vim version 9.1. Last change: 2024 Oct 05
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -481,13 +481,13 @@ The 'wildignorecase' option can be set to ignore case in filenames. For
481
481
completing other texts (e.g. command names), the 'ignorecase' option is used
482
482
instead (fuzzy matching always ignores case, however).
483
483
484
- If you like tcsh's autolist completion, you can use this mapping:
484
+ If you like tcsh's autolist completion, you can use this mapping: >
485
485
:cnoremap X <C-L><C-D>
486
486
(Where X is the command key to use, <C-L> is CTRL-L and <C-D> is CTRL-D )
487
487
This will find the longest match and then list all matching files.
488
488
489
489
If you like tcsh's autolist completion, you can use the 'wildmode' option to
490
- emulate it. For example, this mimics autolist=ambiguous:
490
+ emulate it. For example, this mimics autolist=ambiguous: >
491
491
:set wildmode=longest,list
492
492
This will find the longest match with the first 'wildchar' , then list all
493
493
matching files with the next.
You can’t perform that action at this time.
0 commit comments