We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 334f68c commit 1b8d31fCopy full SHA for 1b8d31f
Console/src/shell/terminal_implementation.ts
@@ -795,7 +795,7 @@ export class TerminalImplementation {
795
796
KeyDown(key: string, event: any) {
797
798
- if (event.ctrlKey) {
+ if (event.ctrlKey && !event.altKey) {
799
switch (event.key) {
800
case "PageUp":
801
TerminalImplementation.events_.next({ type: "previous-tab" });
@@ -818,7 +818,7 @@ export class TerminalImplementation {
818
}
819
this.FunctionTip(); // hide
820
821
- else if (event.altKey) {
+ else if (event.altKey && !event.ctrlKey) {
822
switch(event.key){
823
case 'F8':
824
this.ClearShell();
0 commit comments