diff options
| author | 2026-04-17 10:53:50 +0100 | |
|---|---|---|
| committer | 2026-04-17 10:53:50 +0100 | |
| commit | 923630f8f0e6d10888a227fd8b4ddac5fe382f54 (patch) | |
| tree | 24f3b53ed29dc3e8852286166842e8606e79b105 | |
| parent | 6e2d153f675a1f498fcd06d03749d9a2c1a9bafd (diff) | |
| download | dotfiles-923630f8f0e6d10888a227fd8b4ddac5fe382f54.tar.gz dotfiles-923630f8f0e6d10888a227fd8b4ddac5fe382f54.tar.bz2 dotfiles-923630f8f0e6d10888a227fd8b4ddac5fe382f54.zip | |
fix: remap alacritty scroll bindings to avoid zellij conflict
Alt+[/] for ScrollLineUp/Down conflicted with zellij's
Alt+[/] GoToPreviousTab/GoToNextTab — alacritty intercepted
them before zellij could see them.
Remap to Ctrl+Shift+Up/Down which don't conflict.
| -rw-r--r-- | home/.config/alacritty/alacritty.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/home/.config/alacritty/alacritty.toml b/home/.config/alacritty/alacritty.toml index a08219b..552d674 100644 --- a/home/.config/alacritty/alacritty.toml +++ b/home/.config/alacritty/alacritty.toml @@ -47,13 +47,13 @@ mods = "Control|Shift" [[keyboard.bindings]] action = "ScrollLineUp" -key = "[" -mods = "Alt" +key = "Up" +mods = "Control|Shift" [[keyboard.bindings]] action = "ScrollLineDown" -key = "]" -mods = "Alt" +key = "Down" +mods = "Control|Shift" [[keyboard.bindings]] action = "ScrollPageUp" |
