1
0
Fork 0

alacritty: fix the weird char error in the move from YAML to TOML

This commit is contained in:
Pratham Patel 2024-02-19 16:02:44 +05:30
parent 49d89332d6
commit 1906cd07d8
Signed by: thefossguy
SSH Key Fingerprint: SHA256:/B3wAg7jnMEBQ2JwkebbS/eXVZANDmqRfnd9QkIhxMI
2 changed files with 5 additions and 5 deletions

View File

@ -9,22 +9,22 @@ columns = 125
lines = 30
[[keyboard.bindings]]
chars = "\x1b[1;5D"
chars = "\u001B[1;5D"
key = "Left"
mods = "Alt"
[[keyboard.bindings]]
chars = "\x1b[1;5C"
chars = "\u001B[1;5C"
key = "Right"
mods = "Alt"
[[keyboard.bindings]]
chars = "\x0c"
chars = "\f"
key = "L"
mods = "Control"
[[keyboard.bindings]]
chars = "\x1e"
chars = "\u001E"
key = "Key6"
mods = "Control"

View File

@ -15,7 +15,7 @@ key = "C"
mods = "Control|Shift"
[[keyboard.bindings]]
chars = "\x0c"
chars = "\f"
key = "L"
mods = "Control"