Zellij notes

I like Zellij a lot! Especially editing the scrollback and easy navigation – very nice. One keybinding conflict with Helix that I did notice is Ctrl-b, which I use for scroll-back a lot. In Zellij, Ctrl-g is used to switch to tmux mode, which I don’t want to use, so I disabled it with the following in ~/.config/zellij/config.kdl:

keybinds {
	shared_except "tmux" "locked" {
	//  bind "Ctrl b" { SwitchToMode "Tmux"; }
	    unbind "Ctrl b"
	}
}