Merge branch 'garno'
This commit is contained in:
commit
8df40e6ee3
@ -14,6 +14,8 @@ Teamocil is a tool used to automatically create windows and splits in `tmux` wit
|
|||||||
|
|
||||||
# ~/.teamocil/sample.yml
|
# ~/.teamocil/sample.yml
|
||||||
|
|
||||||
|
session:
|
||||||
|
name: sample-session
|
||||||
windows:
|
windows:
|
||||||
- name: sample-window
|
- name: sample-window
|
||||||
splits:
|
splits:
|
||||||
|
@ -16,7 +16,14 @@ module Teamocil
|
|||||||
def generate_commands # {{{
|
def generate_commands # {{{
|
||||||
output = []
|
output = []
|
||||||
|
|
||||||
@layout["windows"].each_with_index do |window, window_index|
|
if @layout["session"].nil?
|
||||||
|
windows = @layout["windows"]
|
||||||
|
else
|
||||||
|
output << "tmux rename-session #{@layout["session"]["name"]}"
|
||||||
|
windows = @layout["session"]["windows"]
|
||||||
|
end
|
||||||
|
|
||||||
|
windows.each_with_index do |window, window_index|
|
||||||
|
|
||||||
if options.include?(:here) and window_index == 0
|
if options.include?(:here) and window_index == 0
|
||||||
output << "tmux rename-window #{window["name"]}"
|
output << "tmux rename-window #{window["name"]}"
|
||||||
|
Loading…
Reference in New Issue
Block a user