Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Today I Learned Simultaneously opening Ruby gem source files in Vim tabs

Say you're working on a Ruby Gem structured like :

|-- bin
    |   `-- sample_gem
    `-- lib
        |-- sample_gem
        |   |-- bar.rb
        |   |-- baz.rb
        |   |-- biz.rb
        |   |-- foo.rb
        |   `-- version.rb
        `-- sample_gem.rb

Use this to open the full set of source files in Vim tabs :

vim -p bin/sample_gem lib/**/*.rb