We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 963c1ad commit f63db65Copy full SHA for f63db65
2 files changed
runtime/pack/dist/opt/termdebug/plugin/termdebug.vim
@@ -200,7 +200,8 @@ func s:StartDebug_term(dict)
200
let response = ''
201
for lnum in range(1,200)
202
if term_getline(s:gdbbuf, lnum) =~ 'new-ui mi '
203
- let response = term_getline(s:gdbbuf, lnum + 1)
+ " response can be in the same line or the next line
204
+ let response = term_getline(s:gdbbuf, lnum) . term_getline(s:gdbbuf, lnum + 1)
205
if response =~ 'Undefined command'
206
echoerr 'Sorry, your gdb is too old, gdb 7.12 is required'
207
exe 'bwipe! ' . s:ptybuf
src/version.c
@@ -789,6 +789,8 @@ static char *(features[]) =
789
790
static int included_patches[] =
791
{ /* Add new patch number below this line */
792
+/**/
793
+ 196,
794
/**/
795
195,
796
0 commit comments