neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 0e54931b99530cd58af0434e12c58fe6243acb64
parent f59aeb5a9ae80f6f0e12ae52330f3f4e0e7e03e0
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Sun, 10 Nov 2024 21:47:24 +0800

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

closes: vim/vim#16023

https://github.com/vim/vim/commit/060107cbc40a68b30d81e5531a1c8dde91fc9b59
Diffstat:
Mruntime/doc/terminal.txt | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runtime/doc/terminal.txt b/runtime/doc/terminal.txt @@ -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}