I'm coding in Ruby and I code like this
iterator.each {|item| do_something}
not like this(this is default snippet in textmate(ea|->)
iterator.each { |item| do_something }
so, I've just edit it using 'Bundles -> Bundle Editor -> Edit Snippets...' menu
as its result, each {|e| __}.tmDelta file was created in ~/Library/Application Support/TextMate/Bundles/Ruby.tmbundle/Snippets directory
BUT!, if I typed 'ea' and TAB, no change.
what's wrong?