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 repeat.{txt,jax} #618

Merged
merged 8 commits into from
Jun 26, 2019
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
15 changes: 10 additions & 5 deletions doc/repeat.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*repeat.txt* For Vim バージョン 8.1. Last change: 2019 May 22
*repeat.txt* For Vim バージョン 8.1. Last change: 2019 Jun 14


VIMリファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -273,10 +273,15 @@ Vim script の書き方はユーザーマニュアルの41章|usr_41.txt|を参
これは通常起動時に.vimrcが読み込まれた後に自動的に行わ
れる。このコマンドはそれよりも前に行うことができる。

パッケージの読み込みは一度だけ行われる。よってこのコマ
ンドを実行した後に読み込みは行われない。任意の ! が付
けられた場合はすでに読み込みが行われていてもパッケージ
を読み込む。
パッケージの読み込みは一度だけ行われる。`:packloadall`
を再度使用しても効果はない。任意の ! が付けられた場合
はすでに読み込みが行われていてもパッケージを読み込む。

Note |vimrc| ファイル内に `:packloadall` が使われてい
る場合、'runtimepath' オプションが更新され、後で
'runtimepath' 内のすべてのプラグインが読み込まれる。こ
れはそれらが再び読み込まれることを意味する。プラグイン
はそれを正しく扱うことが期待される。

(スクリプトを読み込む際の)エラーは読み込んでいるスクリ
プトの読み込みのみを中止させる。その他のプラグインは読
Expand Down
15 changes: 11 additions & 4 deletions en/repeat.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*repeat.txt* For Vim version 8.1. Last change: 2019 May 22
*repeat.txt* For Vim version 8.1. Last change: 2019 Jun 14


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -280,9 +280,16 @@ For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
after loading your .vimrc file. With this command it
can be done earlier.

Packages will be loaded only once. After this command
it won't happen again. When the optional ! is added
this command will load packages even when done before.
Packages will be loaded only once. Using
`:packloadall` a second time will have no effect.
When the optional ! is added this command will load
packages even when done before.

Note that when using `:packloadall` in the |vimrc|
file, the 'runtimepath' option is updated, and later
all plugins in 'runtimepath' will be loaded, which
means they are loaded again. Plugins are expected to
handle that.

An error only causes sourcing the script where it
happens to be aborted, further plugins will be loaded.
Expand Down