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
22
33
44 VIMリファレンスマニュアル by Bram Moolenaar
@@ -456,13 +456,13 @@ CTRL-T 'incsearch' が設定され "/" や "?" にパターンを入力して
456456'ignorecase' オプションが使用される (ただし、あいまい一致では常に大文字と小文
457457字が無視される)。
458458
459- tcshのautolist補完が好みなら、このマッピングが使える。 >
459+ tcshのautolist補完が好みなら、このマッピングが使える: >
460460 :cnoremap X <C-L><C-D>
461461 (ここで X は使いたいコマンドキー。<C-L> は CTRL-L , <C-D> は CTRL-D のこと)
462462これは最長のマッチを見つけ、マッチしたファイルを全て一覧表示する。
463463
464464tcshのautolist補完が好みなら、オプション 'wildmode' を使ってその動作をエミュ
465- レートできる。例えば、次の設定は autolist=ambiguous という設定を真似る。 >
465+ レートできる。例えば、次の設定は autolist=ambiguous という設定を真似る: >
466466 :set wildmode=longest,list
467467 これは、最初の 'wildchar' で最長のマッチを見つけ、次はマッチするファイルを全て
468468一覧表示する。
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
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -481,13 +481,13 @@ The 'wildignorecase' option can be set to ignore case in filenames. For
481481completing other texts (e.g. command names), the 'ignorecase' option is used
482482instead (fuzzy matching always ignores case, however).
483483
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: >
485485 :cnoremap X <C-L><C-D>
486486 (Where X is the command key to use, <C-L> is CTRL-L and <C-D> is CTRL-D )
487487This will find the longest match and then list all matching files.
488488
489489If 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: >
491491 :set wildmode=longest,list
492492 This will find the longest match with the first 'wildchar' , then list all
493493matching files with the next.
You can’t perform that action at this time.
0 commit comments