comparison runtime/doc/terminal.txt @ 33649:88cad94caef9

runtime(doc): Fix typos in several documents (#13420) Commit: https://github.com/vim/vim/commit/5985879e3c36383155f84649fa42d06813a1893e Author: h_east <h.east.727@gmail.com> Date: Wed Oct 25 22:47:05 2023 +0900 runtime(doc): Fix typos in several documents (https://github.com/vim/vim/issues/13420) * Fix typos in several documents * Update runtime/doc/terminal.txt Co-authored-by: K.Takata <kentkt@csc.jp> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 25 Oct 2023 16:00:07 +0200
parents 4541997c3638
children 55e587f6b02f
comparison
equal deleted inserted replaced
33648:13e4398925ea 33649:88cad94caef9
1483 If there is no g:termdebug_config you can use: > 1483 If there is no g:termdebug_config you can use: >
1484 let g:termdebug_disasm_window = 15 1484 let g:termdebug_disasm_window = 15
1485 Any value greater than 1 will set the Asm window height to that value. 1485 Any value greater than 1 will set the Asm window height to that value.
1486 1486
1487 *termdebug_variables_window* 1487 *termdebug_variables_window*
1488 If you want the Var window shown by default, set the flag to 1. 1488 If you want the Var window shown by default, set the "variables_window" flag
1489 the "variables_window_height" entry can be used to set the window height: > 1489 to 1. The "variables_window_height" entry can be used to set the window
1490 height: >
1490 let g:termdebug_config['variables_window'] = 1 1491 let g:termdebug_config['variables_window'] = 1
1491 let g:termdebug_config['variables_window_height'] = 15 1492 let g:termdebug_config['variables_window_height'] = 15
1492 If there is no g:termdebug_config you can use: > 1493 If there is no g:termdebug_config you can use: >
1493 let g:termdebug_variables_window = 15 1494 let g:termdebug_variables_window = 15
1494 Any value greater than 1 will set the Var window height to that value. 1495 Any value greater than 1 will set the Var window height to that value.