From 923630f8f0e6d10888a227fd8b4ddac5fe382f54 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Fri, 17 Apr 2026 10:53:50 +0100 Subject: fix: remap alacritty scroll bindings to avoid zellij conflict MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- home/.config/alacritty/alacritty.toml | 8 ++++---- 1 file 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" -- cgit v1.2.3-70-g09d2