alacritty updated their toml parser, which now throws an error on \x1b + key_bindings to keyboard.bindings

This commit is contained in:
Sebastian Moser
2024-07-09 13:42:47 +02:00
parent ce237ce5b4
commit a55c357e97

View File

@@ -118,13 +118,13 @@
};
};
key_bindings = [
keyboard.bindings = [
{ key = "V"; mods = "Control|Shift"; action = "Paste"; }
{ key = "C"; mods = "Control|Shift"; action = "Copy"; }
{ key = "J"; mods = "Control"; chars = ''\x1b\x5b\x42''; }
{ key = "K"; mods = "Control"; chars = ''\x1b\x5b\x41''; }
{ key = "H"; mods = "Control"; chars = ''\x1b\x5b\x44''; }
{ key = "L"; mods = "Control"; chars = ''\x1b\x5b\x43''; }
{ key = "J"; mods = "Control"; chars = ''\u001b\u005b\u0042''; }
{ key = "K"; mods = "Control"; chars = ''\u001b\u005b\u0041''; }
{ key = "H"; mods = "Control"; chars = ''\u001b\u005b\u0044''; }
{ key = "L"; mods = "Control"; chars = ''\u001b\u005b\u0043''; }
];
};
};