diff options
| author | 2026-05-13 13:43:22 +0100 | |
|---|---|---|
| committer | 2026-05-13 13:43:22 +0100 | |
| commit | 38cf1936d2b509dc367499b2fa003bd53d338dea (patch) | |
| tree | 5bbcab0c383e145c41609093497fea81327b3d2a /dot_config/zellij | |
| parent | 42aa21ea4b12031af45a1e4499f5114dad396a0a (diff) | |
| download | dotfiles-38cf1936d2b509dc367499b2fa003bd53d338dea.tar.gz dotfiles-38cf1936d2b509dc367499b2fa003bd53d338dea.tar.bz2 dotfiles-38cf1936d2b509dc367499b2fa003bd53d338dea.zip | |
feat(zellij): explicit split binds (Alt+| vertical, Alt+_ horizontal)
tmux-style mnemonics. Bypasses NewPane's aspect-ratio auto-direction
which misfires on widescreens with pane_frames disabled.
Diffstat (limited to 'dot_config/zellij')
| -rw-r--r-- | dot_config/zellij/config.kdl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dot_config/zellij/config.kdl b/dot_config/zellij/config.kdl index 569a52e..d87771a 100644 --- a/dot_config/zellij/config.kdl +++ b/dot_config/zellij/config.kdl @@ -62,6 +62,12 @@ keybinds { bind "Alt x" { CloseFocus; } bind "Alt e" { EditScrollback; } + // Explicit splits (tmux-style mnemonics: | vertical, _ horizontal). + // Bypasses NewPane's aspect-ratio auto-direction which misfires on + // widescreens with pane_frames disabled. + bind "Alt |" { NewPane "Right"; } + bind "Alt _" { NewPane "Down"; } + // Session bind "Alt q" { Detach; } |
