From: zeertzjq Date: Sun, 10 Nov 2024 13:08:56 +0000 (+0100) Subject: runtime(doc): fix typo in g:termdebug_config X-Git-Tag: v9.1.0849~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=060107cbc40a68b30d81e5531a1c8dde91fc9b59;p=thirdparty%2Fvim.git runtime(doc): fix typo in g:termdebug_config closes: #16023 Signed-off-by: zeertzjq Signed-off-by: Christian Brabandt --- diff --git a/runtime/doc/terminal.txt b/runtime/doc/terminal.txt index 7027b3fef7..637277ab59 100644 --- a/runtime/doc/terminal.txt +++ b/runtime/doc/terminal.txt @@ -1,4 +1,4 @@ -*terminal.txt* For Vim version 9.1. Last change: 2024 Nov 09 +*terminal.txt* For Vim version 9.1. Last change: 2024 Nov 10 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1690,7 +1690,7 @@ If you want to customize the breakpoint signs to show `>>` in the signcolumn: > let g:termdebug_config['sign'] = '>>' If you would like to use decimal (base 10) breakpoint signs: > let g:termdebug_config['sign_decimal'] = 1 -If there is no g:terminal_config yet you can use: > +If the variable g:termdebug_config does not yet exist, you can use: > let g:termdebug_config = {'sign': '>>'} Likewise, to enable decimal signs: > let g:termdebug_config = {'sign_decimal': 1}