Sha256: 982f56f7f4f808a7de4b974ff62596309b033c142f74e7d96b4826f4db6c0360
Contents?: true
Size: 398 Bytes
Versions: 3
Compression:
Stored size: 398 Bytes
Contents
#!/usr/bin/env ruby require 'tmrb' tmux = TmRb::Multiplexer.new #creates an empty window tmux.new_session(session_name: 'command_exec') tmux.new_window(:name => 'code', :command => "zsh -c 'vim -p lib/**/*.rb'") tmux.new_window(:name => 'spec', :command => "zsh -c 'vim -p spec/**/*.rb'") tmux.new_window(:name => 'features', :command => "zsh -c 'vim -p features/**/*.{rb,feature}'") tmux.start
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
command_exec-0.2.0 | script/terminal |
command_exec-0.1.3 | script/terminal |
command_exec-0.1.0 | script/terminal |