Add support for a “root” window key

This commit is contained in:
Rémi Prévost 2011-07-19 20:47:16 -04:00
parent 8047e2d994
commit 8823113219
2 changed files with 13 additions and 5 deletions

View File

@ -23,11 +23,12 @@ Teamocil is a tool used to automatically create sessions, windows and splits in
name: sample-session
windows:
- name: sample-window
root: ~/Code/sample/www
splits:
- cmd: cd ~/Code/sample/www
- cmd:
- cd ~/Code/sample/www
- rails s
- ls -la
- git status
- cmd: rails server --port 3000
width: 50
- cmd: memcached -p 11211 -vv
height: 25

View File

@ -26,10 +26,11 @@ module Teamocil
windows.each_with_index do |window, window_index|
if options.include?(:here) and window_index == 0
output << "tmux rename-window #{window["name"]}"
output << "tmux rename-window \"#{window["name"]}\""
else
output << "tmux new-window -n #{window["name"]}"
output << "tmux new-window -n \"#{window["name"]}\""
end
window["splits"].each_with_index do |split, index|
unless index == 0
if split.include?("width")
@ -43,7 +44,13 @@ module Teamocil
end
end
# Support single command splits, but treat it as an array nevertheless
split["cmd"] = [split["cmd"]] unless split["cmd"].is_a? Array
# If a `root` key exist, start each split in this directory
split["cmd"] = ["cd \"#{window["root"]}\""] + split["cmd"] if window.include?("root")
# Execute each split command
split["cmd"].each do |command|
output << "tmux send-keys -t #{index} \"#{command}\""
output << "tmux send-keys -t #{index} Enter"