aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-11-09 15:46:14 +0800
committerGitHub <noreply@github.com>2023-11-09 15:46:14 +0800
commit610f50ddaff260e2e2f7236f6a3982ee7554c2a6 (patch)
tree5e39b283cec2550c122077f939528f3ca67689f0
parent43b0e2752c06ec5460a417fb9a8c60856011f563 (diff)
downloadrneovim-610f50ddaff260e2e2f7236f6a3982ee7554c2a6.tar.gz
rneovim-610f50ddaff260e2e2f7236f6a3982ee7554c2a6.tar.bz2
rneovim-610f50ddaff260e2e2f7236f6a3982ee7554c2a6.zip
vim-patch:20a94f44b3cd (#25946)
runtime(doc): fix grammar in termdebug doc, remove trailing spaces (vim/vim#13505) https://github.com/vim/vim/commit/20a94f44b3cd4a33fb7d2ce5faf07a5244ba2cae
-rw-r--r--runtime/doc/nvim_terminal_emulator.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/runtime/doc/nvim_terminal_emulator.txt b/runtime/doc/nvim_terminal_emulator.txt
index d961ebb696..f038163ec2 100644
--- a/runtime/doc/nvim_terminal_emulator.txt
+++ b/runtime/doc/nvim_terminal_emulator.txt
@@ -401,20 +401,20 @@ If there is no g:termdebug_config you can use: >vim
<
Mappings ~
*termdebug_map_K* *termdebug-mappings*
-The K key is normally mapped to |:Evaluate| unless there already exists a
-buffer local mapping to K |:map-local|. If you do not want this use: >vim
+The K key is normally mapped to |:Evaluate| unless a buffer local (|:map-local|)
+mapping to K already exists. If you do not want this use: >vim
let g:termdebug_config['map_K'] = 0
If there is no g:termdebug_config you can use: >vim
let g:termdebug_map_K = 0
<
*termdebug_map_minus*
-The - key is normally mapped to |:Down| unless there already exists a buffer
-local mapping to the - key. If you do not want this use: >vim
+The - key is normally mapped to |:Down| unless a buffer local mapping to the -
+key already exists. If you do not want this use: >vim
let g:termdebug_config['map_minus'] = 0
<
*termdebug_map_plus*
-The + key is normally mapped to |:Up| unless there already exists a buffer
-local mapping to the + key. If you do not want this use: >vim
+The + key is normally mapped to |:Up| unless a buffer local mapping to the +
+key already exists. If you do not want this use: >vim
let g:termdebug_config['map_plus'] = 0
<
*termdebug_disasm_window*