File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
src/client/datascience/interactive-ipynb Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 9292 ([ #12169 ] ( https://github.com/Microsoft/vscode-python/issues/12169 ) )
93931 . Disable ` Sort Imports ` command in ` Notebook Cells ` .
9494 ([ #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 ) )
9597
9698### Code Health
9799
Original file line number Diff line number Diff line change @@ -105,18 +105,18 @@ export class NativeEditorRunByLineListener
105105
106106 private async handleStep ( ) {
107107 // User issued a step command.
108- this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : undefined } ) ;
108+ this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : this . currentCellBeingRun } ) ;
109109 return this . debugService . step ( ) ;
110110 }
111111
112112 private async handleContinue ( ) {
113113 // User issued a continue command
114- this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : undefined } ) ;
114+ this . postEmitter . fire ( { message : InteractiveWindowMessages . ShowContinue , payload : this . currentCellBeingRun } ) ;
115115 return this . debugService . continue ( ) ;
116116 }
117117
118118 private async handleContinueEvent ( ) {
119119 // 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 } ) ;
121121 }
122122}
You can’t perform that action at this time.
0 commit comments