Skip to content

Commit e7a021b

Browse files
authored
Merge pull request #1866 from h-east/update-options
Update options.{txt,jax}
2 parents 9fb5bfe + 1ee2952 commit e7a021b

File tree

2 files changed

+51
-18
lines changed

2 files changed

+51
-18
lines changed

doc/options.jax

Lines changed: 26 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*options.txt* For Vim バージョン 9.1. Last change: 2024 Dec 03
1+
*options.txt* For Vim バージョン 9.1. Last change: 2024 Dec 07
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -4476,8 +4476,8 @@ Note 1番目の形式では、行全体がオプション指定に使われる
44764476
グローバル
44774477
":" によるコマンドと以前に使った検索パターンの履歴は保存されるわけだが、
44784478
このオプションはそれぞれの履歴に何個の項目が保存されるかを指定する (記
4479-
憶するメッセージ数については、|cmdline-editing| および 'msghistory' を
4480-
参照)。
4479+
憶するメッセージ数については、|cmdline-editing| および 'messagesopt'
4480+
を参照)。
44814481
最大値は10000。
44824482
NOTE: このオプションは 'compatible' がオンになるとViの既定値に設定され、
44834483
'compatible' がオフになるとVimの既定値に設定されるので注意。
@@ -5682,6 +5682,29 @@ Note 1番目の形式では、行全体がオプション指定に使われる
56825682
に対して使われる。このオプションを変更しても直接の効果はなく、メニュー
56835683
を更新しなければならない。
56845684

5685+
*'messagesopt'* *'mopt'*
5686+
'messagesopt' 'mopt' 文字列 (既定では "hit-enter,history:500")
5687+
グローバル
5688+
5689+
メッセージ出力のためのオプション設定。以下の項目から構成される。項目は
5690+
コンマで区切る必要がある。
5691+
5692+
hit-enter メッセージが 'cmdheight' のサイズより長い場合は、
5693+
|hit-enter| プロンプトを使用する。
5694+
5695+
wait:{n} |hit-enter| プロンプトを使用する代わりに、ユーザーが
5696+
メッセージを読む機会が得られるように、単純に {n} ミリ
5697+
秒間ウェイトする。{n} の最大値は 10000 である。ウェイ
5698+
トを無効にするには 0 を使用する (ただし、ユーザーは重
5699+
要なメッセージを見逃す可能性がある)。
5700+
この項目は、"hit-enter" が指定される場合は無視される
5701+
が、"hit-enter" が指定されない場合は必須である。
5702+
5703+
history:{n} |:messages| 履歴に記憶されるエントリ数を決定する。最大
5704+
値は 10000 である。
5705+
ゼロに設定すると、メッセージ履歴がクリアされる。
5706+
この項目は常に指定する必要がある。
5707+
56855708
*'mkspellmem'* *'msm'*
56865709
'mkspellmem' 'msm' 文字列 (既定では "460000,2000,500")
56875710
グローバル
@@ -5959,12 +5982,6 @@ Note 1番目の形式では、行全体がオプション指定に使われる
59595982
GUI版, Win32とUnixのxtermでのみ有効。ダブルクリックなどとして認識され
59605983
るクリックとクリックの間の時間を、ミリ秒単位で設定する。
59615984

5962-
*'msghistory'* *'mhi'*
5963-
'msghistory' 'mhi' 数値 (既定では 500)
5964-
グローバル
5965-
|:messages| 履歴に記憶される項目数を決定する。最大値は 10000 である。
5966-
ゼロに設定すると、メッセージ履歴がクリアされる。
5967-
59685985

59695986
*'mzquantum'* *'mzq'*
59705987
'mzquantum' 'mzq' 数値 (既定では 100)

en/options.txt

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*options.txt* For Vim version 9.1. Last change: 2024 Dec 03
1+
*options.txt* For Vim version 9.1. Last change: 2024 Dec 07
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -4439,7 +4439,7 @@ A jump table for the options with a short description can be found at |Q_op|.
44394439
global
44404440
A history of ":" commands, and a history of previous search patterns
44414441
is remembered. This option decides how many entries may be stored in
4442-
each of these histories (see |cmdline-editing| and 'msghistory' for
4442+
each of these histories (see |cmdline-editing| and 'messagesopt' for
44434443
the number of messages to remember).
44444444
The maximum value is 10000.
44454445
NOTE: This option is set to the Vi default value when 'compatible' is
@@ -5634,6 +5634,29 @@ A jump table for the options with a short description can be found at |Q_op|.
56345634
generated from a list of items, e.g., the Buffers menu. Changing this
56355635
option has no direct effect, the menu must be refreshed first.
56365636

5637+
*'messagesopt'* *'mopt'*
5638+
'messagesopt' 'mopt' string (default "hit-enter,history:500")
5639+
global
5640+
5641+
Option settings for outputting messages. It can consist of the
5642+
following items. Items must be separated by a comma.
5643+
5644+
hit-enter Use a |hit-enter| prompt when the message is longer than
5645+
'cmdheight' size.
5646+
5647+
wait:{n} Instead of using a |hit-enter| prompt, simply wait for
5648+
{n} milliseconds so that the user has a chance to read
5649+
the message. The maximum value of {n} is 10000. Use
5650+
0 to disable the wait (but then the user may miss an
5651+
important message).
5652+
This item is ignored when "hit-enter" is present, but
5653+
required when "hit-enter" is not present.
5654+
5655+
history:{n} Determines how many entries are remembered in the
5656+
|:messages| history. The maximum value is 10000.
5657+
Setting it to zero clears the message history.
5658+
This item must always be present.
5659+
56375660
*'mkspellmem'* *'msm'*
56385661
'mkspellmem' 'msm' string (default "460000,2000,500")
56395662
global
@@ -5917,13 +5940,6 @@ A jump table for the options with a short description can be found at |Q_op|.
59175940
time in msec between two mouse clicks for the second click to be
59185941
recognized as a multi click.
59195942

5920-
*'msghistory'* *'mhi'*
5921-
'msghistory' 'mhi' number (default 500)
5922-
global
5923-
Determines how many entries are remembered in the |:messages| history.
5924-
The maximum value is 10000.
5925-
Setting it to zero clears the message history.
5926-
59275943

59285944
*'mzquantum'* *'mzq'*
59295945
'mzquantum' 'mzq' number (default 100)

0 commit comments

Comments
 (0)