Diff to HTML by rtfpessoa

Files changed (4) hide show
  1. runtime/doc/help.txt +2 -1
  2. runtime/doc/message.txt +3 -2
  3. runtime/doc/options.txt +22 -9
  4. runtime/doc/version9.txt +2 -2
runtime/doc/help.txt CHANGED
@@ -1,4 +1,4 @@
1
- *help.txt* For Vim version 9.1. Last change: 2024 Nov 07
2
 
3
  VIM - main help file
4
  k
@@ -180,6 +180,7 @@ Language support ~
180
  |hebrew.txt| Hebrew language support and editing
181
  |russian.txt| Russian language support and editing
182
  |hangulin.txt| Hangul (Korean) input mode
 
183
 
184
  GUI ~
185
  |gui.txt| Graphical User Interface (GUI)
1
+ *help.txt* For Vim version 9.1. Last change: 2024 Dec 06
2
 
3
  VIM - main help file
4
  k
180
  |hebrew.txt| Hebrew language support and editing
181
  |russian.txt| Russian language support and editing
182
  |hangulin.txt| Hangul (Korean) input mode
183
+ |vietnamese.txt| Vietnamese language support and editing
184
 
185
  GUI ~
186
  |gui.txt| Graphical User Interface (GUI)
runtime/doc/message.txt CHANGED
@@ -1,4 +1,4 @@
1
- *message.txt* For Vim version 9.1. Last change: 2024 Nov 14
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -29,7 +29,7 @@ depends on the 'shortmess' option.
29
  Clear messages, keeping only the {count} most
30
  recent ones.
31
 
32
- The number of remembered messages is determined by the 'msghistory' option.
33
 
34
  *g<*
35
  The "g<" command can be used to see the last page of previous command output.
@@ -837,6 +837,7 @@ If you accidentally hit <Enter> or <Space> and you want to see the displayed
837
  text then use |g<|. This only works when 'more' is set.
838
 
839
  To reduce the number of hit-enter prompts:
 
840
  - Set 'cmdheight' to 2 or higher.
841
  - Add flags to 'shortmess'.
842
  - Reset 'showcmd' and/or 'ruler'.
1
+ *message.txt* For Vim version 9.1. Last change: 2024 Dec 06
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
29
  Clear messages, keeping only the {count} most
30
  recent ones.
31
 
32
+ The number of remembered messages is determined by the 'messagesopt' option.
33
 
34
  *g<*
35
  The "g<" command can be used to see the last page of previous command output.
837
  text then use |g<|. This only works when 'more' is set.
838
 
839
  To reduce the number of hit-enter prompts:
840
+ - Set 'messagesopt'.
841
  - Set 'cmdheight' to 2 or higher.
842
  - Add flags to 'shortmess'.
843
  - Reset 'showcmd' and/or 'ruler'.
runtime/doc/options.txt CHANGED
@@ -1,4 +1,4 @@
1
- *options.txt* For Vim version 9.1. Last change: 2024 Dec 03
2
 
3
 
4
  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|.
4439
  global
4440
  A history of ":" commands, and a history of previous search patterns
4441
  is remembered. This option decides how many entries may be stored in
4442
- each of these histories (see |cmdline-editing| and 'msghistory' for
4443
  the number of messages to remember).
4444
  The maximum value is 10000.
4445
  NOTE: This option is set to the Vi default value when 'compatible' is
@@ -5634,6 +5634,26 @@ A jump table for the options with a short description can be found at |Q_op|.
5634
  generated from a list of items, e.g., the Buffers menu. Changing this
5635
  option has no direct effect, the menu must be refreshed first.
5636
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5637
  *'mkspellmem'* *'msm'*
5638
  'mkspellmem' 'msm' string (default "460000,2000,500")
5639
  global
@@ -5917,13 +5937,6 @@ A jump table for the options with a short description can be found at |Q_op|.
5917
  time in msec between two mouse clicks for the second click to be
5918
  recognized as a multi click.
5919
 
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
-
5927
 
5928
  *'mzquantum'* *'mzq'*
5929
  'mzquantum' 'mzq' number (default 100)
1
+ *options.txt* For Vim version 9.1. Last change: 2024 Dec 06
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
4439
  global
4440
  A history of ":" commands, and a history of previous search patterns
4441
  is remembered. This option decides how many entries may be stored in
4442
+ each of these histories (see |cmdline-editing| and 'messagesopt' for
4443
  the number of messages to remember).
4444
  The maximum value is 10000.
4445
  NOTE: This option is set to the Vi default value when 'compatible' is
5634
  generated from a list of items, e.g., the Buffers menu. Changing this
5635
  option has no direct effect, the menu must be refreshed first.
5636
 
5637
+ *'messagesopt'* *'mopt'*
5638
+ 'messagesopt' 'mopt' string (default "hit-enter,history:500")
5639
+ global
5640
+
5641
+ Option settings when outputting messages. It can consist of the
5642
+ following items. Items must be separated by a comma.
5643
+
5644
+ hit-enter Use |hit-enter| prompt when the message is longer than
5645
+ 'cmdheight' size.
5646
+
5647
+ wait:{n} Ignored when "hit-enter" is present. Instead of using
5648
+ |hit-enter| prompt, will simply wait for {n}
5649
+ milliseconds so the user has a chance to read the
5650
+ message, use 0 to disable sleep (but then the user may
5651
+ miss an important message).
5652
+
5653
+ history:{n} Determines how many entries are remembered in the
5654
+ |:messages| history. The maximum value is 10000.
5655
+ Setting it to zero clears the message history.
5656
+
5657
  *'mkspellmem'* *'msm'*
5658
  'mkspellmem' 'msm' string (default "460000,2000,500")
5659
  global
5937
  time in msec between two mouse clicks for the second click to be
5938
  recognized as a multi click.
5939
 
 
 
 
 
 
 
 
5940
 
5941
  *'mzquantum'* *'mzq'*
5942
  'mzquantum' 'mzq' number (default 100)
runtime/doc/version9.txt CHANGED
@@ -1,4 +1,4 @@
1
- *version9.txt* For Vim version 9.1. Last change: 2024 Dec 05
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -41667,7 +41667,7 @@ Options: ~
41667
  popup
41668
  'findfunc' Vim function to obtain the results for a |:find|
41669
  command
41670
- 'msghistory' Max number of messages to remember
41671
  'winfixbuf' Keep buffer focused in a window
41672
  'tabclose' Which tab page to focus after closing a tab page
41673
  't_xo' Terminal uses XON/XOFF handshaking (e.g. vt420)
1
+ *version9.txt* For Vim version 9.1. Last change: 2024 Dec 06
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
41667
  popup
41668
  'findfunc' Vim function to obtain the results for a |:find|
41669
  command
41670
+ 'messagesopt' configure |:messages| and |hit-enter| prompt
41671
  'winfixbuf' Keep buffer focused in a window
41672
  'tabclose' Which tab page to focus after closing a tab page
41673
  't_xo' Terminal uses XON/XOFF handshaking (e.g. vt420)