File tree 2 files changed +7
-1
lines changed
runtime/pack/dist/opt/termdebug/plugin
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ func s:StartDebug(cmd)
116
116
if term_getline (s: gdbbuf , lnum) = ~ ' new-ui mi '
117
117
let response = term_getline (s: gdbbuf , lnum + 1 )
118
118
if response = ~ ' Undefined command'
119
- echoerr ' Your gdb does not support the Machine Interface feature '
119
+ echoerr ' Sorry, your gdb is too old, gdb 7.12 is required '
120
120
exe ' bwipe! ' . s: ptybuf
121
121
exe ' bwipe! ' . s: commbuf
122
122
return
@@ -143,6 +143,10 @@ func s:StartDebug(cmd)
143
143
" running.
144
144
call s: SendCommand (' -gdb-set mi-async on' )
145
145
146
+ " Disable pagination, it causes everything to stop at the gdb
147
+ " "Type <return> to continue" prompt.
148
+ call s: SendCommand (' -gdb-set pagination off' )
149
+
146
150
" Sign used to highlight the line where the program has stopped.
147
151
" There can be only one.
148
152
sign define debugPC linehl= debugPC
Original file line number Diff line number Diff line change @@ -762,6 +762,8 @@ static char *(features[]) =
762
762
763
763
static int included_patches [] =
764
764
{ /* Add new patch number below this line */
765
+ /**/
766
+ 1655 ,
765
767
/**/
766
768
1654 ,
767
769
/**/
You can’t perform that action at this time.
0 commit comments