vim-patch:060107c: runtime(doc): fix typo in g:termdebug_config (#31155)

closes: vim/vim#16023

060107cbc4
This commit is contained in:
zeertzjq 2024-11-10 21:47:24 +08:00 committed by GitHub
parent f59aeb5a9a
commit 0e54931b99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -611,7 +611,7 @@ If you want to customize the breakpoint signs to show `>>` in the signcolumn: >v
let g:termdebug_config['sign'] = '>>'
If you would like to use decimal (base 10) breakpoint signs: >vim
let g:termdebug_config['sign_decimal'] = 1
If there is no g:terminal_config yet you can use: >vim
If the variable g:termdebug_config does not yet exist, you can use: >vim
let g:termdebug_config = {'sign': '>>'}
Likewise, to enable decimal signs: >vim
let g:termdebug_config = {'sign_decimal': 1}