Last active
June 18, 2019 16:29
-
-
Save steadystatic/923c200e011c05b208248a6a8fc26a9e to your computer and use it in GitHub Desktop.
tmuxa shell fn (requires Tmuxinator)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Attach to running tmuxinator/start a new tmuxinator session w/ fuzzy list | |
tmuxa () { | |
if [[ "$(tmux list-sessions -F '#S'&>/dev/null| wc -l)" -ne 0 ]]; then | |
muxSessions='' | |
muxSessionsList=$(tmuxinator ls | cut -d':' -f 2 | tr '[:blank:]' '\n') | |
while IFS= read -r line; do | |
# Denote running sessions with asterisk | |
if [[ "${line}" == *"$(tmux ls | cut -d':' -f 1)"* ]]; then | |
muxSessions+="$(echo $line | sed -e "s|$line|$line [*]|g")\n" | |
elif [[ "${line}" ]]; then | |
muxSessions+="$line\n" | |
fi; | |
done <<< $muxSessionsList | |
muxSessions=$(echo $muxSessions | sed '/^[[:space:]]*$/d' | sort -ur | fzf +m) | |
# Strip asterisk before executing | |
tmuxinator $(echo $muxSessions | sed 's| [*]||g') | |
else | |
tmuxinator $(tmuxinator ls | tail -n +2 | tr '[:blank:]' '\n' | sed '/^[[:space:]]*$/d' | sort -ur | fzf +m) | |
fi | |
} | |
# Suggested usage/binding: | |
bindkey -s '^b' "tmuxa\r" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment