Skip to content

Commit a996f2a

Browse files
committed
Fix async func return type
1 parent 15c7f58 commit a996f2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/terminal/browser/terminalInstance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1192,7 +1192,7 @@ export class TerminalInstance extends Disposable implements ITerminalInstance {
11921192
}
11931193
}
11941194

1195-
private async _onSelectionChange(): void {
1195+
private async _onSelectionChange(): Promise<void> {
11961196
if (this._configurationService.getValue('terminal.integrated.copyOnSelection')) {
11971197
if (this.hasSelection()) {
11981198
await this.copySelection();

0 commit comments

Comments
 (0)