Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ sesh includes built-in keybindings for switching between panes:
|-----|--------|
| `Alt+1` | Focus the AI pane (left) |
| `Alt+2` | Focus lazygit (right) |
| `Ctrl+f` | Toggle focused pane fullscreen (collapse/expand lazygit) |
| `Ctrl+q` | Detach from the session (keeps it running) |

These are embedded in the session layout and won't interfere with your global Zellij config. Use `Ctrl+q` to close the window — your session stays alive in the background and you can reattach later.
Expand Down
1 change: 1 addition & 0 deletions functions/sesh.fish
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ keybinds {
shared {
bind \"Alt 1\" { MoveFocus \"left\"; }
bind \"Alt 2\" { MoveFocus \"right\"; }
bind \"Ctrl f\" { ToggleFocusFullscreen; }
bind \"Ctrl q\" { Detach; }
}
}
Expand Down
1 change: 1 addition & 0 deletions sesh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ keybinds {
shared {
bind "Alt 1" { MoveFocus "left"; }
bind "Alt 2" { MoveFocus "right"; }
bind "Ctrl f" { ToggleFocusFullscreen; }
bind "Ctrl q" { Detach; }
}
}
Expand Down