comparison runtime/pack/dist/opt/termdebug/plugin/termdebug.vim @ 12499:d91cf2e26ef0

Update runtime files. commit https://github.com/vim/vim/commit/37c64c78fd87e086b5a945ad7032787c274e2dcb Author: Bram Moolenaar <Bram@vim.org> Date: Tue Sep 19 22:06:03 2017 +0200 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Tue, 19 Sep 2017 22:15:06 +0200
parents 3f16cf18386c
children 34c8ec888122
comparison
equal deleted inserted replaced
12498:bf98d339b568 12499:d91cf2e26ef0
12 " The communication with gdb uses GDB/MI. See: 12 " The communication with gdb uses GDB/MI. See:
13 " https://sourceware.org/gdb/current/onlinedocs/gdb/GDB_002fMI.html 13 " https://sourceware.org/gdb/current/onlinedocs/gdb/GDB_002fMI.html
14 " 14 "
15 " Author: Bram Moolenaar 15 " Author: Bram Moolenaar
16 " Copyright: Vim license applies, see ":help license" 16 " Copyright: Vim license applies, see ":help license"
17
18 " In case this gets loaded twice.
19 if exists(':Termdebug')
20 finish
21 endif
17 22
18 " The command that starts debugging, e.g. ":Termdebug vim". 23 " The command that starts debugging, e.g. ":Termdebug vim".
19 " To end type "quit" in the gdb window. 24 " To end type "quit" in the gdb window.
20 command -nargs=* -complete=file Termdebug call s:StartDebug(<q-args>) 25 command -nargs=* -complete=file Termdebug call s:StartDebug(<q-args>)
21 26