Diff to HTML by rtfpessoa

Files changed (6) hide show
  1. runtime/doc/builtin.txt +7 -7
  2. runtime/doc/quickfix.txt +2 -2
  3. runtime/doc/syntax.txt +2 -2
  4. runtime/doc/terminal.txt +2 -2
  5. runtime/doc/version9.txt +1 -1
  6. runtime/doc/vi_diff.txt +34 -1
runtime/doc/builtin.txt CHANGED
@@ -1,4 +1,4 @@
1
- *builtin.txt* For Vim version 9.1. Last change: 2024 Nov 09
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -467,9 +467,9 @@ prop_type_get({name} [, {props}])
467
  prop_type_list([{props}]) List get list of property types
468
  pum_getpos() Dict position and size of pum if visible
469
  pumvisible() Number whether popup menu is visible
470
- py3eval({expr}[, {locals}]) any evaluate |python3| expression
471
- pyeval({expr}[, {locals}]) any evaluate |Python| expression
472
- pyxeval({expr}[, {locals}]) any evaluate |python_x| expression
473
  rand([{expr}]) Number get pseudo-random number
474
  range({expr} [, {max} [, {stride}]])
475
  List items from {expr} to {max}
@@ -8127,7 +8127,7 @@ pumvisible() *pumvisible()*
8127
  Return type: |Number|
8128
 
8129
 
8130
- py3eval({expr}[, {locals}]) *py3eval()*
8131
  Evaluate Python expression {expr} and return its result
8132
  converted to Vim data structures.
8133
  If a {locals} |Dictionary| is given, it defines set of local
@@ -8153,7 +8153,7 @@ py3eval({expr}[, {locals}]) *py3eval()*
8153
  {only available when compiled with the |+python3| feature}
8154
 
8155
  *E858* *E859*
8156
- pyeval({expr}[, {locals}]) *pyeval()*
8157
  Evaluate Python expression {expr} and return its result
8158
  converted to Vim data structures.
8159
  For {locals} see |py3eval()|.
@@ -8172,7 +8172,7 @@ pyeval({expr}[, {locals}]) *pyeval()*
8172
 
8173
  {only available when compiled with the |+python| feature}
8174
 
8175
- pyxeval({expr}[, {locals}]) *pyxeval()*
8176
  Evaluate Python expression {expr} and return its result
8177
  converted to Vim data structures.
8178
  For {locals} see |py3eval()|.
1
+ *builtin.txt* For Vim version 9.1. Last change: 2024 Nov 10
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
467
  prop_type_list([{props}]) List get list of property types
468
  pum_getpos() Dict position and size of pum if visible
469
  pumvisible() Number whether popup menu is visible
470
+ py3eval({expr} [, {locals}]) any evaluate |python3| expression
471
+ pyeval({expr} [, {locals}]) any evaluate |Python| expression
472
+ pyxeval({expr} [, {locals}]) any evaluate |python_x| expression
473
  rand([{expr}]) Number get pseudo-random number
474
  range({expr} [, {max} [, {stride}]])
475
  List items from {expr} to {max}
8127
  Return type: |Number|
8128
 
8129
 
8130
+ py3eval({expr} [, {locals}]) *py3eval()*
8131
  Evaluate Python expression {expr} and return its result
8132
  converted to Vim data structures.
8133
  If a {locals} |Dictionary| is given, it defines set of local
8153
  {only available when compiled with the |+python3| feature}
8154
 
8155
  *E858* *E859*
8156
+ pyeval({expr} [, {locals}]) *pyeval()*
8157
  Evaluate Python expression {expr} and return its result
8158
  converted to Vim data structures.
8159
  For {locals} see |py3eval()|.
8172
 
8173
  {only available when compiled with the |+python| feature}
8174
 
8175
+ pyxeval({expr} [, {locals}]) *pyxeval()*
8176
  Evaluate Python expression {expr} and return its result
8177
  converted to Vim data structures.
8178
  For {locals} see |py3eval()|.
runtime/doc/quickfix.txt CHANGED
@@ -1,4 +1,4 @@
1
- *quickfix.txt* For Vim version 9.1. Last change: 2024 Nov 07
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -361,7 +361,7 @@ processing a quickfix or location list command, it will be aborted.
361
  Example: >
362
  :g/mypattern/caddexpr expand("%") .. ":" .. line(".") .. ":" .. getline(".")
363
  <
364
- *:lad* *:addd* *:laddexpr*
365
  :lad[dexpr] {expr} Same as ":caddexpr", except the location list for the
366
  current window is used instead of the quickfix list.
367
 
1
+ *quickfix.txt* For Vim version 9.1. Last change: 2024 Nov 10
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
361
  Example: >
362
  :g/mypattern/caddexpr expand("%") .. ":" .. line(".") .. ":" .. getline(".")
363
  <
364
+ *:lad* *:ladd* *:laddexpr*
365
  :lad[dexpr] {expr} Same as ":caddexpr", except the location list for the
366
  current window is used instead of the quickfix list.
367
 
runtime/doc/syntax.txt CHANGED
@@ -1,4 +1,4 @@
1
- *syntax.txt* For Vim version 9.1. Last change: 2024 Nov 09
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2670,7 +2670,7 @@ To specify elements that should not be concealed, set the following variable: >
2670
 
2671
  :let g:pandoc#syntax#conceal#blacklist = []
2672
 
2673
- This is a list of the rules wich can be used here:
2674
 
2675
  - titleblock
2676
  - image
1
+ *syntax.txt* For Vim version 9.1. Last change: 2024 Nov 10
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
2670
 
2671
  :let g:pandoc#syntax#conceal#blacklist = []
2672
 
2673
+ This is a list of the rules which can be used here:
2674
 
2675
  - titleblock
2676
  - image
runtime/doc/terminal.txt CHANGED
@@ -1,4 +1,4 @@
1
- *terminal.txt* For Vim version 9.1. Last change: 2024 Nov 09
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1690,7 +1690,7 @@ If you want to customize the breakpoint signs to show `>>` in the signcolumn: >
1690
  let g:termdebug_config['sign'] = '>>'
1691
  If you would like to use decimal (base 10) breakpoint signs: >
1692
  let g:termdebug_config['sign_decimal'] = 1
1693
- If there is no g:terminal_config yet you can use: >
1694
  let g:termdebug_config = {'sign': '>>'}
1695
  Likewise, to enable decimal signs: >
1696
  let g:termdebug_config = {'sign_decimal': 1}
1
+ *terminal.txt* For Vim version 9.1. Last change: 2024 Nov 10
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
1690
  let g:termdebug_config['sign'] = '>>'
1691
  If you would like to use decimal (base 10) breakpoint signs: >
1692
  let g:termdebug_config['sign_decimal'] = 1
1693
+ If the variable g:termdebug_config does not yet exist, you can use: >
1694
  let g:termdebug_config = {'sign': '>>'}
1695
  Likewise, to enable decimal signs: >
1696
  let g:termdebug_config = {'sign_decimal': 1}
runtime/doc/version9.txt CHANGED
@@ -31790,7 +31790,7 @@ Changed ~
31790
  - The features |++builtin_terms|, |+cmdline_info|, |+cmdwin|, |+file_in_path|,
31791
  |+float|, |+path_extra|, |+textobjects|, |+wildignore| and |+wildmenu| are
31792
  available in all the builds.
31793
- - Support for Windows-XP is dropped.
31794
  - Support for VisVim is removed.
31795
  - The "small" and "big" builds are dropped in favor of "tiny" and "huge"
31796
  builds.
31790
  - The features |++builtin_terms|, |+cmdline_info|, |+cmdwin|, |+file_in_path|,
31791
  |+float|, |+path_extra|, |+textobjects|, |+wildignore| and |+wildmenu| are
31792
  available in all the builds.
31793
+ - Support for Windows-XP is dropped (starting with v9.0.0496)
31794
  - Support for VisVim is removed.
31795
  - The "small" and "big" builds are dropped in favor of "tiny" and "huge"
31796
  builds.
runtime/doc/vi_diff.txt CHANGED
@@ -1,4 +1,4 @@
1
- *vi_diff.txt* For Vim version 9.1. Last change: 2024 Oct 05
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
@@ -21,6 +21,7 @@ is missing something or because Posix is beside the mark).
21
  6. Supported Vi features |vi-features|
22
  7. Command-line arguments |cmdline-arguments|
23
  8. POSIX compliance |posix-compliance|
 
24
 
25
  ==============================================================================
26
  1. Simulated command *simulated-command*
@@ -1361,5 +1362,37 @@ These are remarks about running the POSIX test suite:
1361
  1 instead of 2.
1362
  - ex test 534 fails because .exrc isn't read in silent mode.
1363
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1364
 
1365
  vim:tw=78:ts=8:noet:ft=help:norl:
1
+ *vi_diff.txt* For Vim version 9.1. Last change: 2024 Nov 10
2
 
3
 
4
  VIM REFERENCE MANUAL by Bram Moolenaar
21
  6. Supported Vi features |vi-features|
22
  7. Command-line arguments |cmdline-arguments|
23
  8. POSIX compliance |posix-compliance|
24
+ 9. Supported Operating Systems |os-support|
25
 
26
  ==============================================================================
27
  1. Simulated command *simulated-command*
1362
  1 instead of 2.
1363
  - ex test 534 fails because .exrc isn't read in silent mode.
1364
 
1365
+ ==============================================================================
1366
+ 9. Supported Operating systems *os-support*
1367
+
1368
+ Vim tries to support some old operating systems, however support for older
1369
+ operating systems might be dropped if maintenance becomes a burden or can no
1370
+ longer be verified.
1371
+
1372
+ Here is the status of some operating systems. Note fully supported means,
1373
+ support is verified as part of the CI test suite.
1374
+
1375
+ System | Status:~
1376
+ --------------------------------+-----------------------------------------
1377
+ Amiga (OS4, AROS & MorphOS): | still supported (?)
1378
+ Haiku: | still supported (?)
1379
+ Linux: | fully supported (on maintained versions)
1380
+ Mac OS: | fully supported up until v10.6 (?)
1381
+ MS-Windows 7, 8, 10, 11: | fully supported
1382
+ UNIX: | supported (on maintained versions)
1383
+ OpenVMS: | supported
1384
+ QNX: | still supported (?)
1385
+ zOS/OS390: | still supported (?)
1386
+
1387
+ The following operating systems are no longer supported:
1388
+
1389
+ System | Status:~
1390
+ --------------------------------+-----------------------------------------
1391
+ Atari MiNT | support was dropped with v8.2.1215
1392
+ BeOS: | support was dropped with v8.2.0849
1393
+ MS-DOS: | support was dropped with v7.4.1399
1394
+ MS-Windows XP and Vista: | support was dropped with v9.0.0496
1395
+ OS/2 | support was dropped with v7.4.1008
1396
+ RISC OS: | support was dropped with v7.3.0187
1397
 
1398
  vim:tw=78:ts=8:noet:ft=help:norl: