Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update insert.{txt,jax} #1896

Merged
merged 2 commits into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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: 4 additions & 4 deletions doc/insert.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*insert.txt* For Vim バージョン 9.1. Last change: 2024 Oct 08
*insert.txt* For Vim バージョン 9.1. Last change: 2024 Dec 28


VIMリファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -1996,9 +1996,9 @@ NOTE: ":append" と ":insert" は、":if" と ":endif"、":for" と ":endfor"、
指定したラインの直後から行われる。一番最初のラインより上(ファイルの先頭)に挿入
するには ":0r {name}" というコマンドを使う。

":read" コマンドの後には、新しいラインの左で、最初の空白でない文字にカーソルが
移動する。もしExモードでなければ、カーソルは新しい行の最後の左側に移動する(残
念だがViとの互換性のため)。
":read" コマンドの後、カーソルは最初の新しい行の最初の非空白文字に残される。Ex
モードの場合、カーソルは最後の新しい行に残される (申し訳ないが、これは Vi 互換
である)。

":r" にファイル名が与えられた場合、それが代替バッファのファイルになる。これは
例えば代わりにそのファイルを編集したい時に使うことができる: ":e! #"。
Expand Down
4 changes: 2 additions & 2 deletions en/insert.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*insert.txt* For Vim version 9.1. Last change: 2024 Oct 08
*insert.txt* For Vim version 9.1. Last change: 2024 Dec 28


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -2090,7 +2090,7 @@ the cursor is, or below the specified line. To insert text above the first
line use the command ":0r {name}".

After the ":read" command, the cursor is left on the first non-blank in the
first new line. Unless in Ex mode, then the cursor is left on the last new
first new line. If in Ex mode, then the cursor is left on the last new
line (sorry, this is Vi compatible).

If a file name is given with ":r", it becomes the alternate file. This can be
Expand Down
Loading