summaryrefslogtreecommitdiff
path: root/runtime/pack/dist/opt/termdebug
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-05-09 19:50:35 +0100
committerBram Moolenaar <Bram@vim.org>2022-05-09 19:50:35 +0100
commit921bde88804663a7cb825d7f7e8a5d8ae6b58650 (patch)
tree62585af76ea59d97218b2161cdf9ae2c466b9587 /runtime/pack/dist/opt/termdebug
parent2ac037f54bb2588b7a86e61c9c6e9504884edbec (diff)
downloadvim-git-921bde88804663a7cb825d7f7e8a5d8ae6b58650.tar.gz
Update runtime files, translations
Diffstat (limited to 'runtime/pack/dist/opt/termdebug')
-rw-r--r--runtime/pack/dist/opt/termdebug/plugin/termdebug.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim
index 9f84e6dfb..a5aa5a7ad 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: 2022 May 04
+" Last Change: 2022 May 09
"
" WORK IN PROGRESS - The basics works stable, more to come
" Note: In general you need at least GDB 7.12 because this provides the
@@ -201,8 +201,8 @@ func s:CheckGdbRunning()
return 'ok'
endfunc
+" Open a terminal window without a job, to run the debugged program in.
func s:StartDebug_term(dict)
- " Open a terminal window without a job, to run the debugged program in.
let s:ptybuf = term_start('NONE', {
\ 'term_name': 'debugged program',
\ 'vertical': s:vertical,
@@ -346,8 +346,8 @@ func s:StartDebug_term(dict)
call s:StartDebugCommon(a:dict)
endfunc
+" Open a window with a prompt buffer to run gdb in.
func s:StartDebug_prompt(dict)
- " Open a window with a prompt buffer to run gdb in.
if s:vertical
vertical new
else