Skip to content

Instantly share code, notes, and snippets.

@dgtm
dgtm / gist:2977416
Created June 23, 2012 07:43 — forked from lucasfais/gist:1207002
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@dgtm
dgtm / x.rb
Created August 28, 2012 15:19 — forked from practicingruby/x.rb
class EventHandler
def initialize
@callbacks = Hash.new { |h,k| h[k] = [] }
end
def on(event, callback)
@callbacks[event] << callback
end
def trigger(event, *args)