diff --git a/doc/repeat.jax b/doc/repeat.jax index 37435515c..1188b0bdb 100644 --- a/doc/repeat.jax +++ b/doc/repeat.jax @@ -1,4 +1,4 @@ -*repeat.txt* For Vim バージョン 9.1. Last change: 2024 Oct 16 +*repeat.txt* For Vim バージョン 9.1. Last change: 2025 Jul 09 VIMリファレンスマニュアル by Bram Moolenaar @@ -225,7 +225,12 @@ Vim script の書き方はユーザーマニュアルの41章|usr_41.txt|を参 例: > :4,5source :10,18source ++clear -< + +< 実装の詳細: 折り畳まれた領域内にある行の [range] を読 + み込む場合、範囲は折り畳みの開始と終了に合わせて調整さ + れるが、2 つのアドレスの範囲が使用された場合のみであ + る。 + *:source!* :so[urce]! {file} Vimコマンドを{file}から読み込む。ノーマルモードでファ イルの内容をあなたがタイプしたのと同じように実行される。 diff --git a/en/repeat.txt b/en/repeat.txt index d85e580f5..bf260dc48 100644 --- a/en/repeat.txt +++ b/en/repeat.txt @@ -1,4 +1,4 @@ -*repeat.txt* For Vim version 9.1. Last change: 2024 Oct 16 +*repeat.txt* For Vim version 9.1. Last change: 2025 Jul 09 VIM REFERENCE MANUAL by Bram Moolenaar @@ -233,7 +233,12 @@ For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|. Examples: > :4,5source :10,18source ++clear -< + +< Implementation detail: When sourcing a [range] of + lines that falls inside a folded region, the range + will be adjusted to the start and end of the fold, + but only if a two-address range was used. + *:source!* :so[urce]! {file} Read Vim commands from {file}. These are commands that are executed from Normal mode, like you type