white = "#ffffff"
[window]
-title = "terminal"
+title = "terminal"
+#decorations = "None"
# Key bindings translates what is typed in the application to what is actually
# _emulated_ by the application.
# The escape sequence for the Home key is 1b 5b 37 7e (we exclude the last
# 0a since this is the Enter key code).
#
- # This sequence is then converted to terminal escape codes: \x1b\x5b\x38\x7e
+ # This sequence is then converted to terminal escape codes, but since
+ # recent alacritty does not support sequences like \x1b\x5b\x38\x7e,
+ # they should be written as \u001b\u005b\u0038\u007e.
#
# Procedure based on
# https://linuxvox.com/blog/what-is-terminal-escape-sequence-for-ctrl-arrow-left-right-in-term-linux/