Skip to content

Commit

Permalink
Merge pull request #92100 from jheiv/master
Browse files Browse the repository at this point in the history
Focus terminal after 'Terminal:Clear' command palette action
  • Loading branch information
Tyriar committed Apr 7, 2020
2 parents 7f58c57 + 0db5731 commit f189f80
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -967,6 +967,7 @@ export class ClearTerminalAction extends Action {
const terminalInstance = this.terminalService.getActiveInstance();
if (terminalInstance) {
terminalInstance.clear();
terminalInstance.focus();
}
return Promise.resolve(undefined);
}
Expand Down

0 comments on commit f189f80

Please sign in to comment.