We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dc543d commit 146a7d8Copy full SHA for 146a7d8
src/vs/workbench/contrib/terminal/browser/terminalInstance.ts
@@ -976,6 +976,8 @@ export class TerminalInstance extends Disposable implements ITerminalInstance {
976
return false;
977
}
978
979
+ // Prevent default when shift+tab is being sent to the terminal to avoid it bubbling up
980
+ // and changing focus https://github.com/microsoft/vscode/issues/188329
981
if (event.key === 'Tab' && event.shiftKey) {
982
event.preventDefault();
983
return true;
0 commit comments