Fix bug with split target

This commit is contained in:
Rémi Prévost 2011-10-23 21:41:06 -04:00
parent 68d07cd897
commit 459b971a6a

View File

@ -105,15 +105,17 @@ module Teamocil
commands = []
# Is it a vertical or horizontal split?
init_command = ""
unless @index == 0
if !@width.nil?
commands << "tmux split-window -h -p #{@width}"
init_command = "tmux split-window -h -p #{@width}"
elsif !@height.nil?
commands << "tmux split-window -p #{@height}"
init_command = "tmux split-window -p #{@height}"
else
commands << "tmux split-window"
init_command = "tmux split-window"
end
commands << " -t #{@target}" unless @target.nil?
init_command << " -t #{@target}" unless @target.nil?
commands << init_command
end
# Wrap all commands around filters