mirror of
https://github.com/neovim/neovim.git
synced 2026-08-28 10:01:49 +00:00
vim-patch:7fbbd7fdc6df (#25944)
runtime(termdebug): handle buffer-local mappings properly
closes: vim/vim#13475
7fbbd7fdc6
Co-authored-by: shane.xb.qian <shane.qian@foxmail.com>
This commit is contained in:
@@ -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*
|
||||
|
||||
Reference in New Issue
Block a user