comparison runtime/pack/dist/opt/termdebug/plugin/termdebug.vim @ 23164:99ef85ff1af4

Update runtime files. Commit: https://github.com/vim/vim/commit/1b884a0053982335f644eec6c71027706bf3c522 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 10 21:11:27 2020 +0100 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Thu, 10 Dec 2020 21:15:05 +0100
parents 8dad79c661d1
children e2e2cc5d0856
comparison
equal deleted inserted replaced
23163:ab4a692918ec 23164:99ef85ff1af4
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 Oct 28 5 " Last Change: 2020 Dec 07
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
724 delcommand Gdb 724 delcommand Gdb
725 delcommand Program 725 delcommand Program
726 delcommand Source 726 delcommand Source
727 delcommand Winbar 727 delcommand Winbar
728 728
729 if exists('s:k_map_saved') && !empty(s:k_map_saved) 729 if exists('s:k_map_saved')
730 call mapset('n', 0, s:k_map_saved) 730 if empty(s:k_map_saved)
731 nunmap K
732 else
733 call mapset('n', 0, s:k_map_saved)
734 endif
731 unlet s:k_map_saved 735 unlet s:k_map_saved
732 endif 736 endif
733 737
734 if has('menu') 738 if has('menu')
735 " Remove the WinBar entries from all windows where it was added. 739 " Remove the WinBar entries from all windows where it was added.