diff options
Diffstat (limited to '.config/tmux/tmux.conf')
| -rw-r--r-- | .config/tmux/tmux.conf | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 04618aa..859e56c 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -105,14 +105,14 @@ set -g detach-on-destroy off bind -N "last-session (via sesh)" L run-shell "sesh last" bind-key T run-shell "sesh connect \"$( - sesh list --icons | grep -v '^popup-' | fzf-tmux -p 80%,70% \ + sesh list --icons | grep -v 'popup-' | fzf-tmux -p 80%,70% \ --no-sort --ansi --border-label ' sesh ' --prompt '⚡ ' \ --header ' ^a all ^t tmux ^g configs ^x zoxide ^d kill ^f find' \ --bind 'tab:down,btab:up' \ - --bind 'ctrl-a:change-prompt(\uf0e7 )+reload(sesh list --icons)' \ - --bind 'ctrl-t:change-prompt(\uf2d2 )+reload(sesh list -t --icons)' \ - --bind 'ctrl-x:change-prompt(\uf013 )+reload(sesh list -z --icons)' \ - --bind 'ctrl-d:execute(tmux kill-session -t {2..})+change-prompt(\uf1f8 )+reload(sesh list --icons)' \ + --bind 'ctrl-a:change-prompt(\uf0e7 )+reload(sesh list --icons | grep -v popup-)' \ + --bind 'ctrl-t:change-prompt(\uf2d2 )+reload(sesh list -t --icons | grep -v popup-)' \ + --bind 'ctrl-x:change-prompt(\uf013 )+reload(sesh list -z --icons | grep -v popup-)' \ + --bind 'ctrl-d:execute(tmux kill-session -t {2..})+change-prompt(\uf1f8 )+reload(sesh list --icons | grep -v popup-)' \ --bind 'ctrl-f:change-prompt(\uf002 )+reload(fd -H -d 2 -t d . ~)' \ --preview 'sesh preview {}' \ --preview-window 'right:55%' |