This file contains hidden or 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
# Switching projects like mad? | |
# t: start or restore a tmux session named after your current working directory | |
# | |
# e.g. calling t in /home/project/awesome_project will reattach the tmux session named | |
# awesome_project or create a new one | |
t() { tmux attach-session -t $(pwd | awk -F/ '{print $NF}') || tmux new-session -s $(pwd | awk -F/ '{print $NF}') ; } |