From 0d3f17a6c317b26cdc319b48e25e1574f3a0e9fd Mon Sep 17 00:00:00 2001 From: Sean Dewar Date: Sun, 8 May 2022 10:15:36 +0100 Subject: vim-patch:partial:d899e5112079 (#18474) Update runtime files https://github.com/vim/vim/commit/d899e51120798d3fb5420abb1f19dddf3f014d05 - Skip vimhelp.vim stuff (syntax/help.vim, syntax.txt; v8.2.4891). - Skip :let heredoc eval stuff (eval.txt; v8.2.4770). - Skip uk.cp1251.po. - Skip `*hl-CurSearch*` change (syntax.txt): - Vim's CurSearch works differently (Nvim's uses current cursor pos). Dunno know how applicable the redrawing comment is to Nvim... - Might be preferred to move it under `*hl-Search*` like Vim? --- runtime/pack/dist/opt/termdebug/plugin/termdebug.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/pack/dist/opt/termdebug/plugin/termdebug.vim') diff --git a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim index 8a7dcb0e75..ab1871fe60 100644 --- a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim +++ b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim @@ -2,7 +2,7 @@ " " Author: Bram Moolenaar " Copyright: Vim license applies, see ":help license" -" Last Change: 2022 Apr 16 +" Last Change: 2022 May 04 " " WORK IN PROGRESS - The basics works stable, more to come " Note: In general you need at least GDB 7.12 because this provides the @@ -924,7 +924,7 @@ func s:DeleteCommands() if empty(s:k_map_saved) nunmap K else - " call mapset('n', 0, s:k_map_saved) + " call mapset(s:k_map_saved) let mode = s:k_map_saved.mode !=# ' ' ? s:k_map_saved.mode : '' call nvim_set_keymap(mode, 'K', s:k_map_saved.rhs, { \ 'expr': s:k_map_saved.expr ? v:true : v:false, -- cgit