Sha256: 4d37e1c151484d07d974627f43b3e6f1fa7538d145c24253067a9ce43bfdffc0
Contents?: true
Size: 428 Bytes
Versions: 56
Compression:
Stored size: 428 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 require 'tmrb' tmux = TmRb::Multiplexer.new # creates an empty window tmux.new_session(session_name: 'fedux_org-stdlib') tmux.new_window(name: 'models', command: 'vim -c \"NERDTree lib/fedux_org_stdlib/models\"') tmux.new_window(name: 'logging', command: 'vim -c \"NERDTree lib/fedux_org_stdlib/logging\"') tmux.new_window(name: 'spec', command: 'vim -c \"NERDTree spec\"') tmux.start
Version data entries
56 entries across 56 versions & 1 rubygems