We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have created a popup in tmux to switch session faster but it doesn't work as expected.
bind-key P run-shell "tmuxifier ls | fzf-tmux -p | xargs tmuxifier load-session"
Creating the session for the first time doesn't switch client. After the session is created, switch client works. How can I debug the problem myself?
tmux 3.3a tmuxifier 0.13.0 fish, version 3.6.1
The text was updated successfully, but these errors were encountered:
There is a workaround. Create a script instead of the inline commands.
#! /usr/bin/env bash set -x session=$(tmuxifier ls | fzf-tmux -p) tmuxifier load-session $session tmux switch-client -t $session
Sorry, something went wrong.
This worked for me.
bind-key P run-shell "tmuxifier ls | fzf-tmux -p | xargs -I % sh -c 'tmuxifier s %; tmux switch-client -t %;'"
No branches or pull requests
I have created a popup in tmux to switch session faster but it doesn't work as expected.
bind-key P run-shell "tmuxifier ls | fzf-tmux -p | xargs tmuxifier load-session"
Creating the session for the first time doesn't switch client. After the session is created, switch client works.
How can I debug the problem myself?
tmux 3.3a
tmuxifier 0.13.0
fish, version 3.6.1
The text was updated successfully, but these errors were encountered: