Sha256: 519bac7623c37dbb286f819d3916f76224fc980f782d6fd3c6a141b11a4be294
Contents?: true
Size: 406 Bytes
Versions: 7
Compression:
Stored size: 406 Bytes
Contents
#!/usr/bin/env ruby require 'tmrb' tmux = TmRb::Multiplexer.new #creates an empty window tmux.new_session(session_name: 'the_array_comparator') 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
7 entries across 7 versions & 1 rubygems