vim-patch:388a5d4f20b4

Update runtime files
388a5d4f20

Omit vim9.
This commit is contained in:
Jan Edmund Lazo
2021-04-28 01:55:06 -04:00
parent 0185625c04
commit 65821cc1b9
15 changed files with 220 additions and 31 deletions

View File

@@ -2,7 +2,7 @@
"
" Author: Bram Moolenaar
" Copyright: Vim license applies, see ":help license"
" Last Change: 2020 Feb 19
" Last Change: 2020 May 22
"
" WORK IN PROGRESS - Only the basics work
" Note: On MS-Windows you need a recent version of gdb. The one included with
@@ -758,8 +758,10 @@ func s:InstallCommands()
command Program call s:GotoProgram()
command Source call s:GotoSourcewinOrCreateIt()
command Asm call s:GotoAsmwinOrCreateIt()
command Winbar call s:InstallWinbar()
command Winbar call s:InstallWinbar()
if !exists('g:termdebug_map_K') || g:termdebug_map_K
let s:k_map_saved = maparg('K', 'n', 0, 1)
nnoremap K :Evaluate<CR>
endif
@@ -797,7 +799,10 @@ func s:DeleteCommands()
delcommand Program
delcommand Source
delcommand Asm
delcommand Winbar
delcommand Winbar
if exists('s:k_map_saved')
call mapset('n', 0, s:k_map_saved)
unlet s:k_map_saved
endif