Skip to content

Instantly share code, notes, and snippets.

@psave
psave / gist:cadc5e4b3101e8505239
Created March 5, 2016 22:37 — 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
#All of my classes
class Player
attr_accessor :name, :lives, :points
def initialize(name, lives=3, points=0)
@name = name
@lives = lives
@points = points
end