diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-09 08:38:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-09 08:38:25 +0800 |
commit | 77bb69d7b0d1ae8d9526b658eeea07b2d58ae78d (patch) | |
tree | 3501c3642c0972d98e65c27acfee9517604cb4f0 /runtime/doc | |
parent | 04187d1cb58a46dff3b490115f38f9120e13d598 (diff) | |
download | rneovim-77bb69d7b0d1ae8d9526b658eeea07b2d58ae78d.tar.gz rneovim-77bb69d7b0d1ae8d9526b658eeea07b2d58ae78d.tar.bz2 rneovim-77bb69d7b0d1ae8d9526b658eeea07b2d58ae78d.zip |
vim-patch:7fbbd7fdc6df (#25944)
runtime(termdebug): handle buffer-local mappings properly
closes: vim/vim#13475
https://github.com/vim/vim/commit/7fbbd7fdc6df9dc198b3735cfbe8dbe8afd646f9
Co-authored-by: shane.xb.qian <shane.qian@foxmail.com>
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/nvim_terminal_emulator.txt | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/runtime/doc/nvim_terminal_emulator.txt b/runtime/doc/nvim_terminal_emulator.txt index 4326414ff7..d961ebb696 100644 --- a/runtime/doc/nvim_terminal_emulator.txt +++ b/runtime/doc/nvim_terminal_emulator.txt @@ -399,18 +399,22 @@ Prompt mode can be used with: >vim If there is no g:termdebug_config you can use: >vim let g:termdebug_use_prompt = 1 < - *termdebug_map_K* -The K key is normally mapped to |:Evaluate|. If you do not want this 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 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|. If you do not want this use: >vim +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 let g:termdebug_config['map_minus'] = 0 < *termdebug_map_plus* -The + key is normally mapped to |:Up|. If you do not want this use: >vim +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 let g:termdebug_config['map_plus'] = 0 < *termdebug_disasm_window* |