mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Merge pull request #3437 from Eugeny/alt-group-is-dead
input: treat AltGraph as a dead key
This commit is contained in:
@@ -1032,7 +1032,7 @@ export class Terminal extends CoreTerminal implements ITerminal {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (event.key === 'Dead') {
|
||||
if (event.key === 'Dead' || event.key === 'AltGraph') {
|
||||
this._unprocessedDeadKey = true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user