diff options
| author | nsfisis <nsfisis@gmail.com> | 2022-12-01 00:01:55 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2022-12-01 00:01:55 +0900 |
| commit | c1e4b66e359f827db2756d1b300f4778b232f52a (patch) | |
| tree | 2cfc4018db664dac80de65c3dfc6d77816ae73ef | |
| parent | f228b0e3bdec4200a2123588e9570a5416c471e1 (diff) | |
| download | dotfiles-c1e4b66e359f827db2756d1b300f4778b232f52a.tar.gz dotfiles-c1e4b66e359f827db2756d1b300f4778b232f52a.tar.zst dotfiles-c1e4b66e359f827db2756d1b300f4778b232f52a.zip | |
alacritty: workaround for Yen key
| -rw-r--r-- | .config/alacritty/alacritty.macos.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.config/alacritty/alacritty.macos.yml b/.config/alacritty/alacritty.macos.yml index b5f7359..7ab36d5 100644 --- a/.config/alacritty/alacritty.macos.yml +++ b/.config/alacritty/alacritty.macos.yml @@ -17,3 +17,8 @@ key_bindings: - { key: Key0, mods: Command, action: ResetFontSize } - { key: Key1, mods: Command, action: IncreaseFontSize } - { key: Key2, mods: Command, action: DecreaseFontSize } + # Workaround: + # Alacritty v0.11.0-rc1 or later emits Yen symbol when you type Yen key + # even if you set "backslash" to "a character by Yen key". + # See also: https://github.com/rust-windowing/winit/issues/2577 + - { key: Yen, chars: "\x5c" } |
