Skip to content

Instantly share code, notes, and snippets.

@hileon
Forked from lucasfais/gist:1207002
Created October 25, 2011 07:39
Show Gist options
  • Select an option

  • Save hileon/1311735 to your computer and use it in GitHub Desktop.

Select an option

Save hileon/1311735 to your computer and use it in GitHub Desktop.
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 - Useful Shortcuts

Tested in Mac OS X: super == command

Open/Goto

  • super+t: go to file
  • super+ctrl+p: go to project
  • super+r: go to methods
  • super+shift+p: command prompt
  • ctrl+g: go to line
  • ctrl+`: Python console

Editing

  • super+l: select line (repeat select next lines)
  • super+d: select word (repeat select others occurrences in context for multiple editing)
  • ctrl+shift+m: select content into brackets
  • super+shift+enter: insert line before
  • super+enter: inter line after
  • ctrl+shift+k: delete line
  • super+k-k: delete from cursor to end of line
  • super+k-backspace: delete from cursor to start of line
  • super+shift+d: duplicate line(s)
  • super+j: join lines
  • super+k-u: upper case
  • super+k-l: lower case
  • super+/: comment
  • super+alt+/: block comment
  • super+y: redo or repeat
  • super+shift+z: past and ident
  • ctrl+space: autocomplete (repeat to select next suggestion)
  • ctrl+m: jump to matching brackets

XML/HTML

  • super+shift+a: select content into tag
  • super+alt+.: close tag

Find/Replace

  • super+f: find
  • super+alt+f: replace
  • super+alt+g: find next occurrence of current word
  • super+ctrl+g: select all occurrences of current word for multiple editing
  • super+shift+f: find in files

Splits/Tabs

  • super+alt+1: Single column
  • super+alt+2: Two columns
  • super+alt+5: Grid (4 groups)
  • ctrl+[1,2,3,4]: Focus group
  • ctrl+shift[1,2,3,4]: Move file to group
  • super+[1,2,3...] Select tab

Bookmarks

  • super+f2: Toggle bookmark
  • f2: next bookmark
  • shift+f2: previous bookmark
  • super+shift+f2: clear bookmarks

Marks

  • super+k-space: set mark // super+k-; for me
  • super+k-w: delete from cursor to mark
  • super+k-a: select from cursor to mark
  • super+k-g: clear mark
@marcJV
Copy link

marcJV commented Dec 29, 2011

Some other useful tips are:
Ctrl+Home Takes you to the top of the document
Ctrl+End Takes you to the bottom of the document
Ctrl+P Search all files in your project by name. If you then type in @ it searches that file by functions and classes.

@hileon
Copy link
Author

hileon commented Dec 30, 2011

I like Ctrl+P and its @, it is very convenient.

@adibMosharrof
Copy link

There is a shortcut to the Ctrl+P and then @, if you press Ctrl+R, then the @ sign will automatically come.

Also there is another shortcut, Ctrl+; This produces a # in the Ctrl+P menu, and you will be able to search any name in the file.

@davidkaneda
Copy link

Any idea if there's a keyboard-based way to navigate the search results page?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment