diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-08-28 20:19:38 -0400 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2019-08-29 02:19:38 +0200 |
commit | 0ec80d5f64666f143abd0ded63df14f7a21433ac (patch) | |
tree | fdeaaff0bff27462e4c17f764616b28a8d2005be | |
parent | 71a96531942a2c8e51c2e75cbbbd57f0fd0f48fb (diff) | |
download | rneovim-0ec80d5f64666f143abd0ded63df14f7a21433ac.tar.gz rneovim-0ec80d5f64666f143abd0ded63df14f7a21433ac.tar.bz2 rneovim-0ec80d5f64666f143abd0ded63df14f7a21433ac.zip |
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
-rw-r--r-- | runtime/pack/dist/opt/termdebug/plugin/termdebug.vim | 2 |
1 files changed, 2 insertions, 0 deletions
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 |