File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/vs/platform/terminal/common/capabilities/commandDetection Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -94,10 +94,10 @@ export class PromptInputModel extends Disposable implements IPromptInputModel {
94
94
this . _register ( onCommandStart ( e => this . _handleCommandStart ( e as { marker : IMarker } ) ) ) ;
95
95
this . _register ( onCommandExecuted ( ( ) => this . _handleCommandExecuted ( ) ) ) ;
96
96
97
- this . onDidStartInput ( ( ) => this . _logCombinedStringIfTrace ( 'PromptInputModel#onDidStartInput' ) ) ;
98
- this . onDidChangeInput ( ( ) => this . _logCombinedStringIfTrace ( 'PromptInputModel#onDidChangeInput' ) ) ;
99
- this . onDidFinishInput ( ( ) => this . _logCombinedStringIfTrace ( 'PromptInputModel#onDidFinishInput' ) ) ;
100
- this . onDidInterrupt ( ( ) => this . _logCombinedStringIfTrace ( 'PromptInputModel#onDidInterrupt' ) ) ;
97
+ this . _register ( this . onDidStartInput ( ( ) => this . _logCombinedStringIfTrace ( 'PromptInputModel#onDidStartInput' ) ) ) ;
98
+ this . _register ( this . onDidChangeInput ( ( ) => this . _logCombinedStringIfTrace ( 'PromptInputModel#onDidChangeInput' ) ) ) ;
99
+ this . _register ( this . onDidFinishInput ( ( ) => this . _logCombinedStringIfTrace ( 'PromptInputModel#onDidFinishInput' ) ) ) ;
100
+ this . _register ( this . onDidInterrupt ( ( ) => this . _logCombinedStringIfTrace ( 'PromptInputModel#onDidInterrupt' ) ) ) ;
101
101
}
102
102
103
103
private _logCombinedStringIfTrace ( message : string ) {
You can’t perform that action at this time.
0 commit comments