From 0ec80d5f64666f143abd0ded63df14f7a21433ac Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Wed, 28 Aug 2019 20:19:38 -0400 Subject: vim-patch:8.1.0193: terminal debugger buttons don't always work (#10874) Problem: Terminal debugger buttons don't always work. (Dominique Pelle) Solution: Set 'cpo' to its default value. https://github.com/vim/vim/commit/ca4cc018addbeb3ac5d0e05f18847015f91ff814 --- runtime/pack/dist/opt/termdebug/plugin/termdebug.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim index a3356d35a5..a6990d40de 100644 --- a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim +++ b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim @@ -896,3 +896,5 @@ func s:BufUnloaded() endfor endfunc +let &cpo = s:keepcpo +unlet s:keepcpo -- cgit