diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-07-19 02:55:01 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-07-19 02:55:01 +0200 |
commit | 963c1ad5d072346d9e95d4c3be066b5e03c601d3 (patch) | |
tree | 96073f0b8e9c9fc4405e2720d68b87490d7bc215 /runtime | |
parent | 414998023fbff15cce20ef01a54d0366370ad8b6 (diff) | |
download | vim-git-963c1ad5d072346d9e95d4c3be066b5e03c601d3.tar.gz |
patch 8.1.0195: terminal debugger commands don't always workv8.1.0195
Problem: Terminal debugger commands don't always work. (Dominique Pelle)
Solution: Set 'cpo' to its default value when defining commands. (Christian
Brabandt)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/pack/dist/opt/termdebug/plugin/termdebug.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim index 4ccbc4cb6..63a3b1d83 100644 --- a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim +++ b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim @@ -566,6 +566,9 @@ endfunc " Install commands in the current window to control the debugger. func s:InstallCommands() + let save_cpo = &cpo + set cpo&vim + command Break call s:SetBreakpoint() command Clear call s:ClearBreakpoint() command Step call s:SendCommand('-exec-step') @@ -603,6 +606,8 @@ func s:InstallCommands() an 1.230 PopUp.Evaluate :Evaluate<CR> endif endif + + let &cpo = save_cpo endfunc let s:winbar_winids = [] |