Added Ctrl+T (charactor transposing for shell such as Bash) to Console Control Keys list

This commit is contained in:
Ni Rui
2022-08-12 19:10:33 +08:00
parent 5f1a34a8b9
commit d5badd135b

View File

@@ -529,7 +529,7 @@ export const consoleScreenKeys = [
}, },
], ],
[ [
"Ctrl+A", "Ctrl+T",
{ {
altKey: false, altKey: false,
charCode: 0, charCode: 0,
@@ -656,6 +656,22 @@ export const consoleScreenKeys = [
which: 88, which: 88,
}, },
], ],
[
"Ctrl+T",
{
altKey: false,
charCode: 0,
code: "KeyT",
ctrlKey: true,
key: "t",
keyCode: 84,
location: 0,
metaKey: false,
repeat: false,
shiftKey: false,
which: 84,
},
],
], ],
}, },
]; ];