class Teamocil::Command::SplitWindow

Public Instance Methods

options() click to toggle source
# File lib/teamocil/command/split_window.rb, line 8
def options
  [].tap do |options|
    options << "-c '#{root}'" if root
  end
end
to_s() click to toggle source
# File lib/teamocil/command/split_window.rb, line 4
def to_s
  "split-window -t '#{name}' #{options.join(' ')}"
end