mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
alacritty: fix escape sequence in example and test
See https://github.com/nix-community/home-manager/pull/4817#discussion_r1441710049
This commit is contained in:
parent
dc906b197b
commit
7ca7025cf2
3 changed files with 3 additions and 3 deletions
|
@ -32,7 +32,7 @@ in {
|
|||
{
|
||||
key = "K";
|
||||
mods = "Control";
|
||||
chars = "\\x0c";
|
||||
chars = "\\u000c";
|
||||
}
|
||||
];
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ family = "SFMono"
|
|||
family = "SFMono"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
chars = "\x0c"
|
||||
chars = "\u000c"
|
||||
key = "K"
|
||||
mods = "Control"
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
keyboard.bindings = [{
|
||||
key = "K";
|
||||
mods = "Control";
|
||||
chars = "\\x0c";
|
||||
chars = "\\u000c";
|
||||
}];
|
||||
|
||||
font = {
|
||||
|
|
Loading…
Reference in a new issue