comparison runtime/pack/dist/opt/termdebug/plugin/termdebug.vim @ 31139:20cf2080f1ee

Update runtime files Commit: https://github.com/vim/vim/commit/d13166e788fcaef59ec65c20b46ca4be16625669 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Nov 18 21:49:57 2022 +0000 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Fri, 18 Nov 2022 23:00:05 +0100
parents 729a7c00fabc
children b2e8663e6dcc
comparison
equal deleted inserted replaced
31138:e3510cfd5e37 31139:20cf2080f1ee
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: 2022 Jun 24 5 " Last Change: 2022 Nov 10
6 " 6 "
7 " WORK IN PROGRESS - The basics works stable, more to come 7 " WORK IN PROGRESS - The basics works stable, more to come
8 " Note: In general you need at least GDB 7.12 because this provides the 8 " Note: In general you need at least GDB 7.12 because this provides the
9 " frame= response in MI thread-selected events we need to sync stack to file. 9 " frame= response in MI thread-selected events we need to sync stack to file.
10 " The one included with "old" MingW is too old (7.6.1), you may upgrade it or 10 " The one included with "old" MingW is too old (7.6.1), you may upgrade it or
889 let s:k_map_saved = maparg('K', 'n', 0, 1) 889 let s:k_map_saved = maparg('K', 'n', 0, 1)
890 nnoremap K :Evaluate<CR> 890 nnoremap K :Evaluate<CR>
891 endif 891 endif
892 892
893 if has('menu') && &mouse != '' 893 if has('menu') && &mouse != ''
894 call s:InstallWinbar() 894 " install the window toolbar by default, can be disabled in the config
895 let winbar = 1
896 if exists('g:termdebug_config')
897 let winbar = get(g:termdebug_config, 'winbar', 1)
898 endif
899 if winbar
900 call s:InstallWinbar()
901 endif
895 902
896 let popup = 1 903 let popup = 1
897 if exists('g:termdebug_config') 904 if exists('g:termdebug_config')
898 let popup = get(g:termdebug_config, 'popup', 1) 905 let popup = get(g:termdebug_config, 'popup', 1)
899 elseif exists('g:termdebug_popup') 906 elseif exists('g:termdebug_popup')