add zellij keybinds for floating jj windows

This commit is contained in:
gwg313 2026-04-18 01:36:37 -04:00
parent 7283d5da1b
commit 6f5fc5c229
Signed by: gwg313
GPG key ID: 60FF63B4826B7400

View file

@ -74,6 +74,20 @@
bind "Alt l" { MoveFocus "Right"; }
bind "Alt f" { ToggleFloatingPanes; }
bind "Alt n" { NewPane; }
bind "Alt g" {
Run "sh" "-c" "jj log --color always | less -R" {
name " JJ Log "
floating true
close_on_exit true
}
}
bind "Alt s" {
Run "sh" "-c" "jj st --color always | less -R" {
name " JJ Status "
floating true
close_on_exit true
}
}
}
locked {
@ -99,6 +113,22 @@
bind "s" { SwitchToMode "Scroll"; }
bind "d" { Detach; }
bind "q" { Quit; }
bind "g" {
Run "sh" "-c" "jj log --color always | less -R" {
name " JJ Log "
floating true
close_on_exit true
};
SwitchToMode "Locked";
}
bind "s" {
Run "sh" "-c" "jj st --color always | less -R" {
name " JJ Status "
floating true
close_on_exit true
};
SwitchToMode "Locked";
}
}
scroll {