You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Switch isSession to FindSession and return nil if not found
- Determine name logic now returns the session name if it exists
- Use "::" separator in tmux list to support spaces in path and name
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ sesh connect $(sesh list | fzf)
76
76
In order to integrate with tmux, you can add a binding to your tmux config (`tmux.conf`). For example, the following will bind `ctrl-a T` to open a fzf prompt as a tmux popup (using `fzf-tmux`) and using different commands to list sessions (`sesh list -t`), zoxide directories (`sesh list -z`), and find directories (`fd...`).
77
77
78
78
```sh
79
-
bind-key "T" run-shell "sesh connect $(
79
+
bind-key "T" run-shell "sesh connect \"$(
80
80
sesh list -tz | fzf-tmux -p 55%,60% \
81
81
--no-sort --border-label ' sesh ' --prompt '⚡ ' \
82
82
--header ' ^a all ^t tmux ^x zoxide ^f find' \
@@ -85,7 +85,7 @@ In order to integrate with tmux, you can add a binding to your tmux config (`tmu
85
85
--bind 'ctrl-t:change-prompt(🪟 )+reload(sesh list -t)' \
86
86
--bind 'ctrl-x:change-prompt(📁 )+reload(sesh list -z)' \
0 commit comments