Archive for the 'textmate' Category

Learning Textmate shortcuts

As Nick Carroll said here, pairing with different IDEs means more shortcuts to remember. For our project we’ll be using jEdit and Textmate, so that motivated me to look up the equivalent for Textmate
: Ctrl-Cmd-T lists the actions in a Quicksilver manner.
During onboarding with new developers, it takes quite some efforts to learn the […]

TextMate bundle to Run Focused Test on a module

On our Ruby on Rails project we use TextMate. Run Focused Test is one of our favourite features. However we have some tests that are modules. e.g. we have
class CatTest < Test::Unit::TestCase
include AnimalTests
… and then some Cat-specific tests
end

class DogTest < Test::Unit::TestCase
include AnimalTests
… and then some Dog-specific tests
end
One annoying thing is that after we […]