const constantKeyCode: KeyCode = this._scanCodeKeyCodeMapper.guessStableKeyCode(chord.scanCode);
if (constantKeyCode !== KeyCode.DependsOnKbLayout) {
// Verify that this is a good key code that can be mapped back to the same scan code
macLinuxKeyboardMapper.ts
const reverseChords = this.keyCodeChordToScanCodeChord(new KeyCodeChord(chord.ctrlKey, chord.shiftKey, chord.altKey, chord.metaKey, constantKeyCode));
for (let i = 0, len = reverseChords.length; i < len; i++) {
const reverseChord = reverseChords[i];
if (reverseChord.scanCode === chord.scanCode) {