File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
terminalContrib/accessibility/browser Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -976,6 +976,11 @@ export class TerminalInstance extends Disposable implements ITerminalInstance {
976
976
return false ;
977
977
}
978
978
979
+ if ( event . key === 'Tab' && event . shiftKey ) {
980
+ event . preventDefault ( ) ;
981
+ return true ;
982
+ }
983
+
979
984
// Always have alt+F4 skip the terminal on Windows and allow it to be handled by the
980
985
// system
981
986
if ( isWindows && event . altKey && event . key === 'F4' && ! event . ctrlKey ) {
Original file line number Diff line number Diff line change @@ -118,11 +118,6 @@ export abstract class TerminalAccessibleWidget extends DisposableStore {
118
118
// On escape, hide the accessible buffer and force focus onto the terminal
119
119
this . hide ( true ) ;
120
120
break ;
121
- case KeyCode . Tab :
122
- // On tab or shift+tab, hide the accessible buffer and perform the default tab
123
- // behavior
124
- this . hide ( ) ;
125
- break ;
126
121
}
127
122
} ) ) ;
128
123
this . add ( this . _editorWidget . onDidFocusEditorText ( async ( ) => {
You can’t perform that action at this time.
0 commit comments