diff options
author | Christian Clason <christian.clason@uni-due.de> | 2021-09-13 15:05:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-13 06:05:27 -0700 |
commit | 1a9d2a4040f3ba3fe272488a7e85db6cdb453d39 (patch) | |
tree | 651f4cc1673c1e75f23d06e52da635bc3c7d0c5d /runtime/pack | |
parent | d5b66e88601b4d2fde5d905f9d12847126ba4449 (diff) | |
download | rneovim-1a9d2a4040f3ba3fe272488a7e85db6cdb453d39.tar.gz rneovim-1a9d2a4040f3ba3fe272488a7e85db6cdb453d39.tar.bz2 rneovim-1a9d2a4040f3ba3fe272488a7e85db6cdb453d39.zip |
vim-patch:89a9c159f23f #15641
Update runtime files
https://github.com/vim/vim/commit/89a9c159f23fb7b3e24e6d09068adfc24a73afcb
Omit:
nsis/lang/turkish.nsi
pixmaps/gen-inline-pixbufs.sh
doc/popup.txt
doc/terminal.txt
tutor/tutor*
src/[g]vimtutor
CONTRIBUTING.md
Skip:
doc/eval.txt (needs 8.1.2342)
doc/testing.txt (needs 8.2.0299)
Diffstat (limited to 'runtime/pack')
-rw-r--r-- | runtime/pack/dist/opt/termdebug/plugin/termdebug.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim index a80cb38b8d..94b97c9f0c 100644 --- a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim +++ b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim @@ -2,7 +2,7 @@ " " Author: Bram Moolenaar " Copyright: Vim license applies, see ":help license" -" Last Change: 2021 Aug 06 +" Last Change: 2021 Aug 23 " " WORK IN PROGRESS - Only the basics work " Note: On MS-Windows you need a recent version of gdb. The one included with @@ -343,6 +343,9 @@ func s:StartDebug_term(dict) " "Type <return> to continue" prompt. call s:SendCommand('set pagination off') + " Set the filetype, this can be used to add mappings. + set filetype=termdebug + call s:StartDebugCommon(a:dict) endfunc |