comparison runtime/pack/dist/opt/termdebug/plugin/termdebug.vim @ 20856:83cfa1ef1bf2

Update runtime files Commit: https://github.com/vim/vim/commit/65e0d77a66b7e50beb562ad554ace46c32ef8f0f Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 14 17:29:55 2020 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sun, 14 Jun 2020 17:45:04 +0200
parents 74e3316c1d5a
children 3a1ed539ae2a
comparison
equal deleted inserted replaced
20855:6390b8b611fb 20856:83cfa1ef1bf2
1 " Debugger plugin using gdb. 1 " Debugger plugin using gdb.
2 " 2 "
3 " Author: Bram Moolenaar 3 " Author: Bram Moolenaar
4 " Copyright: Vim license applies, see ":help license" 4 " Copyright: Vim license applies, see ":help license"
5 " Last Change: 2020 May 22 5 " Last Change: 2020 Jun 12
6 " 6 "
7 " WORK IN PROGRESS - Only the basics work 7 " WORK IN PROGRESS - Only the basics work
8 " Note: On MS-Windows you need a recent version of gdb. The one included with 8 " Note: On MS-Windows you need a recent version of gdb. The one included with
9 " MingW is too old (7.6.1). 9 " MingW is too old (7.6.1).
10 " I used version 7.12 from http://www.equation.com/servlet/equation.cmd?fa=gdb 10 " I used version 7.12 from http://www.equation.com/servlet/equation.cmd?fa=gdb
708 delcommand Gdb 708 delcommand Gdb
709 delcommand Program 709 delcommand Program
710 delcommand Source 710 delcommand Source
711 delcommand Winbar 711 delcommand Winbar
712 712
713 if exists('s:k_map_saved') 713 if exists('s:k_map_saved') && !empty(s:k_map_saved)
714 call mapset('n', 0, s:k_map_saved) 714 call mapset('n', 0, s:k_map_saved)
715 unlet s:k_map_saved 715 unlet s:k_map_saved
716 endif 716 endif
717 717
718 if has('menu') 718 if has('menu')