Skip to content

Instantly share code, notes, and snippets.

@bogado
Created February 14, 2013 17:27
Show Gist options
  • Save bogado/4954473 to your computer and use it in GitHub Desktop.
Save bogado/4954473 to your computer and use it in GitHub Desktop.
tms: tmux split, this command will split your window in several panes, those panes will be synchronized.
#!/bin/sh
cd $1; shift
for i in "$@"; do
tmux split "cd \"$i\"; $SHELL"
tmux select-layout tiled
done
tmux setw syn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment