diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-11-10 21:47:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-10 21:47:24 +0800 |
commit | 0e54931b99530cd58af0434e12c58fe6243acb64 (patch) | |
tree | 31a5edbf3dfd0edbbeb40a214af61c97adb67c55 | |
parent | f59aeb5a9ae80f6f0e12ae52330f3f4e0e7e03e0 (diff) | |
download | rneovim-0e54931b99530cd58af0434e12c58fe6243acb64.tar.gz rneovim-0e54931b99530cd58af0434e12c58fe6243acb64.tar.bz2 rneovim-0e54931b99530cd58af0434e12c58fe6243acb64.zip |
vim-patch:060107c: runtime(doc): fix typo in g:termdebug_config (#31155)
closes: vim/vim#16023
https://github.com/vim/vim/commit/060107cbc40a68b30d81e5531a1c8dde91fc9b59
-rw-r--r-- | runtime/doc/terminal.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/terminal.txt b/runtime/doc/terminal.txt index 189bf8b0b9..ed9659d6e7 100644 --- 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} |