File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ Versioning].
20
20
([ @GitMensch ] )
21
21
- New ` frameFilters ` option for GDB that allows using custom frame filters,
22
22
enabled by default ([ @JacquesLucke ] )
23
+ - Suppress error for hover as the user may just play with the mouse ([ @oltolm ] ).
23
24
24
25
## [ 0.27.0] - 2024-02-07
25
26
Original file line number Diff line number Diff line change @@ -715,7 +715,12 @@ export class MI2DebugSession extends DebugSession {
715
715
} ;
716
716
this . sendResponse ( response ) ;
717
717
} , msg => {
718
- this . sendErrorResponse ( response , 7 , msg . toString ( ) ) ;
718
+ if ( args . context == "hover" ) {
719
+ // suppress error for hover as the user may just play with the mouse
720
+ this . sendResponse ( response ) ;
721
+ } else {
722
+ this . sendErrorResponse ( response , 7 , msg . toString ( ) ) ;
723
+ }
719
724
} ) ;
720
725
} else {
721
726
this . miDebugger . sendUserInput ( args . expression , threadId , level ) . then ( output => {
You can’t perform that action at this time.
0 commit comments