File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/vs/workbench/browser/parts/editor Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -671,7 +671,7 @@ export class EditorStatus extends Disposable implements IWorkbenchContribution {
671
671
} ) ) ;
672
672
673
673
// Hook Listener for Selection changes
674
- this . activeEditorListeners . add ( Event . defer ( activeCodeEditor . onDidChangeCursorPosition , this . _store ) ( ( ) => {
674
+ this . activeEditorListeners . add ( Event . defer ( activeCodeEditor . onDidChangeCursorPosition ) ( ( ) => {
675
675
this . onSelectionChange ( activeCodeEditor ) ;
676
676
this . currentProblemStatus . update ( activeCodeEditor ) ;
677
677
} ) ) ;
@@ -682,7 +682,7 @@ export class EditorStatus extends Disposable implements IWorkbenchContribution {
682
682
} ) ) ;
683
683
684
684
// Hook Listener for content changes
685
- this . activeEditorListeners . add ( Event . accumulate ( activeCodeEditor . onDidChangeModelContent , 0 , this . _store ) ( e => {
685
+ this . activeEditorListeners . add ( Event . accumulate ( activeCodeEditor . onDidChangeModelContent ) ( e => {
686
686
this . onEOLChange ( activeCodeEditor ) ;
687
687
this . currentProblemStatus . update ( activeCodeEditor ) ;
688
688
You can’t perform that action at this time.
0 commit comments