Diff to HTML by rtfpessoa

Files changed (6) hide show
  1. runtime/doc/builtin.txt +4 -4
  2. runtime/doc/filetype.txt +7 -1
  3. runtime/doc/message.txt +2 -2
  4. runtime/doc/options.txt +10 -3
  5. runtime/doc/os_mac.txt +7 -3
  6. runtime/doc/version9.txt +2 -1
runtime/doc/builtin.txt CHANGED
@@ -1,4 +1,4 @@
1
- *builtin.txt* For Vim version 9.1. Last change: 2024 Nov 11
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -3790,10 +3790,10 @@ getbufvar({buf}, {varname} [, {def}]) *getbufvar()*
3790
  getcellpixels() *getcellpixels()*
3791
  Returns a |List| of terminal cell pixel size.
3792
  List format is [xpixels, ypixels].
3793
- Only works on Unix. For gVim and on other systems,
3794
- returns [-1, -1].
3795
 
3796
- Return type: list<Number>
3797
 
3798
 
3799
  getcellwidths() *getcellwidths()*
1
+ *builtin.txt* For Vim version 9.1. Last change: 2024 Nov 14
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
3790
  getcellpixels() *getcellpixels()*
3791
  Returns a |List| of terminal cell pixel size.
3792
  List format is [xpixels, ypixels].
3793
+ Only works on (terminal) Unix. For gVim, on other systems and
3794
+ on failure returns [].
3795
 
3796
+ Return type: list<any>
3797
 
3798
 
3799
  getcellwidths() *getcellwidths()*
runtime/doc/filetype.txt CHANGED
@@ -1,4 +1,4 @@
1
- *filetype.txt* For Vim version 9.1. Last change: 2024 Nov 12
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -843,6 +843,12 @@ To enable folding use this: >
843
  let g:markdown_recommended_style = 0
844
 
845
 
 
 
 
 
 
 
846
  PDF *ft-pdf-plugin*
847
 
848
  Two maps, <C-]> and <C-T>, are provided to simulate a tag stack for navigating
1
+ *filetype.txt* For Vim version 9.1. Last change: 2024 Nov 14
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
843
  let g:markdown_recommended_style = 0
844
 
845
 
846
+ ORG *ft-org-plugin*
847
+
848
+ To enable folding use this: >
849
+ let g:org_folding = 1
850
+ <
851
+
852
  PDF *ft-pdf-plugin*
853
 
854
  Two maps, <C-]> and <C-T>, are provided to simulate a tag stack for navigating
runtime/doc/message.txt CHANGED
@@ -1,4 +1,4 @@
1
- *message.txt* For Vim version 9.1. Last change: 2024 Mar 13
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 fixed at 200.
33
 
34
  *g<*
35
  The "g<" command can be used to see the last page of previous command output.
1
+ *message.txt* For Vim version 9.1. Last change: 2024 Nov 14
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 'msghistory' option.
33
 
34
  *g<*
35
  The "g<" command can be used to see the last page of previous command output.
runtime/doc/options.txt CHANGED
@@ -1,4 +1,4 @@
1
- *options.txt* For Vim version 9.1. Last change: 2024 Nov 06
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -4440,7 +4440,8 @@ A jump table for the options with a short description can be found at |Q_op|.
4440
  global
4441
  A history of ":" commands, and a history of previous search patterns
4442
  is remembered. This option decides how many entries may be stored in
4443
- each of these histories (see |cmdline-editing|).
 
4444
  The maximum value is 10000.
4445
  NOTE: This option is set to the Vi default value when 'compatible' is
4446
  set and to the Vim default value when 'compatible' is reset.
@@ -5917,6 +5918,12 @@ 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
  *'mzquantum'* *'mzq'*
5921
  'mzquantum' 'mzq' number (default 100)
5922
  global
@@ -9430,7 +9437,7 @@ A jump table for the options with a short description can be found at |Q_op|.
9430
  happens when there are special characters.
9431
 
9432
  *'wildmenu'* *'wmnu'* *'nowildmenu'* *'nowmnu'*
9433
- 'wildmenu' 'wmnu' boolean (default off, set in |defaults.vim|)
9434
  global
9435
  When 'wildmenu' is on, command-line completion operates in an enhanced
9436
  mode. On pressing 'wildchar' (usually <Tab>) to invoke completion,
1
+ *options.txt* For Vim version 9.1. Last change: 2024 Nov 14
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
4440
  global
4441
  A history of ":" commands, and a history of previous search patterns
4442
  is remembered. This option decides how many entries may be stored in
4443
+ each of these histories (see |cmdline-editing| and 'msghistory' for
4444
+ the number of messages to remember).
4445
  The maximum value is 10000.
4446
  NOTE: This option is set to the Vi default value when 'compatible' is
4447
  set and to the Vim default value when 'compatible' is reset.
5918
  time in msec between two mouse clicks for the second click to be
5919
  recognized as a multi click.
5920
 
5921
+ *'msghistory'* *'mhi'*
5922
+ 'msghistory' 'mhi' number (default 500)
5923
+ global
5924
+ Determines how many entries are remembered in the |:messages| history.
5925
+ The maximum value is 10000.
5926
+
5927
  *'mzquantum'* *'mzq'*
5928
  'mzquantum' 'mzq' number (default 100)
5929
  global
9437
  happens when there are special characters.
9438
 
9439
  *'wildmenu'* *'wmnu'* *'nowildmenu'* *'nowmnu'*
9440
+ 'wildmenu' 'wmnu' boolean (default on)
9441
  global
9442
  When 'wildmenu' is on, command-line completion operates in an enhanced
9443
  mode. On pressing 'wildchar' (usually <Tab>) to invoke completion,
runtime/doc/os_mac.txt CHANGED
@@ -1,4 +1,4 @@
1
- *os_mac.txt* For Vim version 9.1. Last change: 2019 Apr 21
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar et al.
@@ -118,9 +118,13 @@ Shift-Control-2.
118
 
119
  When reporting any Mac specific bug or feature change, please use the vim-mac
120
  maillist |vim-mac|. However, you need to be subscribed. An alternative is to
121
- send a message to the current MacVim maintainers:
122
 
123
- mac@vim.org
 
 
 
 
124
 
125
  ==============================================================================
126
  7. Compiling Vim *mac-compile*
1
+ *os_mac.txt* For Vim version 9.1. Last change: 2024 Nov 14
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar et al.
118
 
119
  When reporting any Mac specific bug or feature change, please use the vim-mac
120
  maillist |vim-mac|. However, you need to be subscribed. An alternative is to
121
+ report issues either directly at the Vim github repository:
122
 
123
+ https://github.com/vim/vim/issues
124
+
125
+ or for MacVim specific issues, you may report those over here:
126
+
127
+ https://github.com/macvim-dev/macvim/issues
128
 
129
  ==============================================================================
130
  7. Compiling Vim *mac-compile*
runtime/doc/version9.txt CHANGED
@@ -1,4 +1,4 @@
1
- *version9.txt* For Vim version 9.1. Last change: 2024 Nov 11
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -41659,6 +41659,7 @@ Options: ~
41659
  popup
41660
  'findfunc' Vim function to obtain the results for a |:find|
41661
  command
 
41662
  'winfixbuf' Keep buffer focused in a window
41663
  'tabclose' Which tab page to focus after closing a tab page
41664
  't_xo' Terminal uses XON/XOFF handshaking (e.g. vt420)
1
+ *version9.txt* For Vim version 9.1. Last change: 2024 Nov 14
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
41659
  popup
41660
  'findfunc' Vim function to obtain the results for a |:find|
41661
  command
41662
+ 'msghistory' Max number of messages to remember
41663
  'winfixbuf' Keep buffer focused in a window
41664
  'tabclose' Which tab page to focus after closing a tab page
41665
  't_xo' Terminal uses XON/XOFF handshaking (e.g. vt420)