mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
Merge pull request #207105 from microsoft/merogge/term-editor-focus
force terminal to focus when focusing terminal editor
This commit is contained in:
commit
5fe9008857
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ export class TerminalEditor extends EditorPane {
|
|||
override focus() {
|
||||
super.focus();
|
||||
|
||||
this._editorInput?.terminalInstance?.focus();
|
||||
this._editorInput?.terminalInstance?.focus(true);
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/naming-convention
|
||||
|
|
Loading…
Reference in a new issue