File tree 2 files changed +5
-3
lines changed
src/client/datascience/interactive-ipynb 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 92
92
([ #12169 ] ( https://github.com/Microsoft/vscode-python/issues/12169 ) )
93
93
1 . Disable ` Sort Imports ` command in ` Notebook Cells ` .
94
94
([ #12193 ] ( https://github.com/Microsoft/vscode-python/issues/12193 ) )
95
+ 1 . Fix debugger continue event to actually change a cell.
96
+ ([ #12155 ] ( https://github.com/Microsoft/vscode-python/issues/12155 ) )
95
97
96
98
### Code Health
97
99
Original file line number Diff line number Diff line change @@ -105,18 +105,18 @@ export class NativeEditorRunByLineListener
105
105
106
106
private async handleStep ( ) {
107
107
// User issued a step command.
108
- this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : undefined } ) ;
108
+ this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : this . currentCellBeingRun } ) ;
109
109
return this . debugService . step ( ) ;
110
110
}
111
111
112
112
private async handleContinue ( ) {
113
113
// User issued a continue command
114
- this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : undefined } ) ;
114
+ this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : this . currentCellBeingRun } ) ;
115
115
return this . debugService . continue ( ) ;
116
116
}
117
117
118
118
private async handleContinueEvent ( ) {
119
119
// Tell the ui to erase the current IP
120
- this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : undefined } ) ;
120
+ this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : this . currentCellBeingRun } ) ;
121
121
}
122
122
}
You can’t perform that action at this time.
0 commit comments