1
- *terminal.txt* For Vim version 9.0. Last change: 2023 Aug 23
1
+ *terminal.txt* For Vim version 9.0. Last change: 2023 Nov 08
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -42,6 +42,7 @@ If the result is "1" you have it.
42
42
Other commands | termdebug-commands |
43
43
Events | termdebug-events |
44
44
Prompt mode | termdebug-prompt |
45
+ Mappings | termdebug-mappings |
45
46
Communication | termdebug-communication |
46
47
Customizing | termdebug-customizing |
47
48
@@ -1461,18 +1462,22 @@ Prompt mode can be used even when the |+terminal| feature is present with: >
1461
1462
If there is no g:termdebug_config you can use: >
1462
1463
let g:termdebug_use_prompt = 1
1463
1464
<
1464
- *termdebug_map_K*
1465
- The K key is normally mapped to | :Evaluate | . If you do not want this use: >
1465
+ Mappings ~
1466
+ *termdebug_map_K* *termdebug-mappings*
1467
+ The K key is normally mapped to | :Evaluate | unless a buffer local (| :map-local | )
1468
+ mapping to K already exists. If you do not want this use: >
1466
1469
let g:termdebug_config['map_K'] = 0
1467
1470
If there is no g:termdebug_config you can use: >
1468
1471
let g:termdebug_map_K = 0
1469
1472
<
1470
1473
*termdebug_map_minus*
1471
- The - key is normally mapped to | :Down | . If you do not want this use: >
1474
+ The - key is normally mapped to | :Down | unless a buffer local mapping to the -
1475
+ key already exists. If you do not want this use: >
1472
1476
let g:termdebug_config['map_minus'] = 0
1473
1477
<
1474
1478
*termdebug_map_plus*
1475
- The + key is normally mapped to | :Up | . If you do not want this use: >
1479
+ The + key is normally mapped to | :Up | unless a buffer local mapping to the +
1480
+ key already exists. If you do not want this use: >
1476
1481
let g:termdebug_config['map_plus'] = 0
1477
1482
<
1478
1483
*termdebug_disasm_window*
@@ -1483,6 +1488,9 @@ If you want the Asm window shown by default, set the "disasm_window" flag to
1483
1488
If there is no g:termdebug_config you can use: >
1484
1489
let g:termdebug_disasm_window = 15
1485
1490
Any value greater than 1 will set the Asm window height to that value.
1491
+ If the current window has enough horizontal space, it will be vertically split
1492
+ and the Asm window will be shown side by side with the source code window (and
1493
+ the height option won't be used).
1486
1494
1487
1495
*termdebug_variables_window*
1488
1496
If you want the Var window shown by default, set the "variables_window" flag
@@ -1493,6 +1501,9 @@ height: >
1493
1501
If there is no g:termdebug_config you can use: >
1494
1502
let g:termdebug_variables_window = 15
1495
1503
Any value greater than 1 will set the Var window height to that value.
1504
+ If the current window has enough horizontal space, it will be vertically split
1505
+ and the Var window will be shown side by side with the source code window (and
1506
+ the height options won't be used).
1496
1507
1497
1508
Communication ~
1498
1509
*termdebug-communication*
0 commit comments