Skip to content

update repeat.{txt,jax} #618

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

Merged
merged 8 commits into from
Jun 26, 2019
Merged
Show file tree
Hide file tree
Changes from 3 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
14 changes: 9 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,14 @@ Vim script の書き方はユーザーマニュアルの41章|usr_41.txt|を参
これは通常起動時に.vimrcが読み込まれた後に自動的に行わ
れる。このコマンドはそれよりも前に行うことができる。

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

|vimrc| ファイル内に `:packloadal` が使われている場合、
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • 英語のNote that ~Note としてください。(Noteにハイライトが付いて、補足だということが分かりやすくなります)
  • :packloadall (最後の l が抜けています)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • 英語のNote that ~Note としてください。

そこは合意には至ってなかった気がしましたが…。

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

どうしましょう...h-eastさんの言うとおりに修正する形でよろしいでしょうか?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

あれ? 私は今までそうやってました。汗。
k-takataさんに判断委ねます。

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

承知しました。

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#205, #61
どうするか結論は出ていませんね。どちらでもいいと思います。

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

わかりました.NOTEをつけたほうがわかりやすいと個人的に判断したので,あとで付け加えさせていただきます.

Copy link
Member

@h-east h-east Jun 26, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

各 "\cNote:\?" の出現回数を調べました。

検索パターン en ja
:helpg Note 551 202
:helpg Note: 310 444
:helpg NOTE 7 13
:helpg NOTE: 167 189

この結果から分かる傾向は...

  • Note は翻訳で消えるかそのまま残っている。
  • Note:NOTEおよびNOTE:は基本的に本家で使われているものをそのまま日本語に持って来ている。
  • Note の一部を日本語でNote:に変えている。

ですので、NoteNOTEに変更するのは少数派かなぁと感じます。
個人的には、「Note は残すならそのまま。:をつけるのはやぶさかでない」という意見です。

Copy link
Member Author

@get-me-power get-me-power Jun 26, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

わかりました。Noteとさせていただきます。

`: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