Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions doc/cmdline.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*cmdline.txt* For Vim バージョン 9.2. Last change: 2026 Mar 17
*cmdline.txt* For Vim バージョン 9.2. Last change: 2026 Apr 20


VIM リファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -439,14 +439,18 @@ CTRL-L カーソルより前のパターンに対してマッチの検索が行
れた文字は小文字に変換される。
*c_CTRL-G* */_CTRL-G*
CTRL-G 'incsearch' が設定され "/" や "?" にパターンを入力して現在のマ
ッチが表示されている時に、CTRL-G を押すと次のマッチに移動する(
|search-offset| は考慮しない)。CTRL-T を押すと前のマッチに移動
する。ヒント: 通常のキーボードでは、G は T より下にある。
ッチが表示されている時に、CTRL-G を押すと次のマッチに移動する。
|search-offset| は <CR> キーが押されたときに適用されるが、マッ
チ箇所のハイライト表示には影響しない。
CTRL-T を押すと前のマッチに移動する。ヒント: 通常のキーボード
では、G は T より下にある。
*c_CTRL-T* */_CTRL-T*
CTRL-T 'incsearch' が設定され "/" や "?" にパターンを入力して現在のマ
ッチが表示されている時に、CTRL-T は前のマッチに移動する(
|search-offset| は考慮しない)。CTRL-G を使うと次のマッチに移動
する。ヒント: 通常のキーボードは、T は G より上にある。
ッチが表示されている時に、CTRL-T は前のマッチに移動する。
|search-offset| は <CR> キーが押されたときに適用されるが、マッ
チ箇所のハイライト表示には影響しない。
CTRL-G を使うと次のマッチに移動する。ヒント: 通常のキーボード
は、T は G より上にある。

オプション 'wildchar' の既定値は <Tab> である (Vi互換モードの場合は CTRL-E で
ある。以前のバージョンでは <Esc> が使われていた)。パターンがファイル名に対して
Expand Down
9 changes: 5 additions & 4 deletions en/cmdline.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*cmdline.txt* For Vim version 9.2. Last change: 2026 Mar 17
*cmdline.txt* For Vim version 9.2. Last change: 2026 Apr 20


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -466,14 +466,15 @@ CTRL-L A match is done on the pattern in front of the cursor. If
*c_CTRL-G* */_CTRL-G*
CTRL-G When 'incsearch' is set, entering a search pattern for "/" or
"?" and the current match is displayed then CTRL-G will move
to the next match (does not take |search-offset| into account)
to the next match. The |search-offset| is applied when <CR>
is pressed, but does not affect the match highlighting.
Use CTRL-T to move to the previous match. Hint: on a regular
keyboard G is below T.
*c_CTRL-T* */_CTRL-T*
CTRL-T When 'incsearch' is set, entering a search pattern for "/" or
"?" and the current match is displayed then CTRL-T will move
to the previous match (does not take |search-offset| into
account).
to the previous match. The |search-offset| is applied when
<CR> is pressed, but does not affect the match highlighting.
Use CTRL-G to move to the next match. Hint: on a regular
keyboard T is above G.

Expand Down