Skip to content
Merged
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
8 changes: 6 additions & 2 deletions doc/editing.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*editing.txt* For Vim バージョン 9.2. Last change: 2026 Feb 14
*editing.txt* For Vim バージョン 9.2. Last change: 2026 Aug 13


VIM リファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -341,9 +341,13 @@ CTRL-^ 代替ファイルを編集する。たいていの場合、代替フ
eval.c @ 20 ~
eval.c (30) ~
eval.c 40 ~
eval.c line 50 ~

*v_gF*
{Visual}[count]gF "v_gf" と同じ。
{Visual}[count]gF "v_gf" と同じ。ただし、選択したテキストの直後にコロン
と数字が続く場合、カーソルはファイル内のその行に置かれ
る。|gF| とは異なり、区切り文字として認識されるのはコ
ロンのみである。

以上のコマンドは1つのファイルの編集を開始するために使用される。これはファイル
がバッファに読み込まれ、カレントファイル名が設定されることを意味する。開かれる
Expand Down
11 changes: 8 additions & 3 deletions en/editing.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*editing.txt* For Vim version 9.2. Last change: 2026 Feb 14
*editing.txt* For Vim version 9.2. Last change: 2026 Aug 13


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -338,15 +338,20 @@ CTRL-^ Edit the alternate file. Mostly the alternate file is
character. " line " is also recognized, like it is
used in the output of `:verbose command UserCmd`
White space between the filename, the separator and
the number are ignored.
the number is ignored.
Examples:
eval.c:10 ~
eval.c @ 20 ~
eval.c (30) ~
eval.c 40 ~
eval.c line 50 ~

*v_gF*
{Visual}[count]gF Same as "v_gf".
{Visual}[count]gF Same as "v_gf", but if a colon and a number appear
immediately after the end of the selected text,
then the cursor is positioned on that line in the
file. Unlike |gF|, only a colon is recognized as
separator.

These commands are used to start editing a single file. This means that the
file is read into the buffer and the current file name is set. The file that
Expand Down