Skip to content

Instantly share code, notes, and snippets.

@juanmaguitar
Forked from lucasfais/gist:1207002
Last active September 15, 2016 14:56
Show Gist options
  • Save juanmaguitar/3656577 to your computer and use it in GitHub Desktop.
Save juanmaguitar/3656577 to your computer and use it in GitHub Desktop.
SUBLIME: Sublime Text 3 - Useful Shortcuts
  1. Sublime Text 3 – Useful Shortcuts (Mac OS X)
  1. General

Shortcut | Description
-——- | -————
⌘⌃P | go to project
⌘R | go to methods
⌃G | go to line
⌘KB | toggle side bar
⌘⇧P | command palette
⌃ ` | python console

  1. Editing

Shortcut | Description
-——- | -————
⌘L | select line (repeat select next lines)
⌘D | select word (repeat select others occurrences in context for multiple editing)
⌃⇧M | select content into brackets
⌘⇧↩ | insert line before
⌘↩ | inter line after
⌃⇧K | delete line
⌘KK | delete from cursor to end of line
⌘K⌫ | delete from cursor to start of line
⌘⇧D | duplicate line(s)
⌘J | join lines
⌘KU | upper case
⌘KL | lower case
⌘ / | comment
⌘⌥ / | block comment
⌘Y | redo or repeat
⌘⇧V | past and ident
⌃ space | autocomplete (repeat to select next suggestion)
⌃M | jump to matching brackets
⌘U | soft undo (movement undo)
⌘⇧U | soft redo (movement redo)

  1. XML/HTML

Shortcut | Description
-——- | -————
⌘⇧A | select content into tag
⌘⌥ . | close tag

  1. Find/Replace

Shortcut | Description
-——- | -————
⌘F | find
⌘⌥F | replace
⌘⌥G | find next occurrence of current word
⌘⌃G | select all occurrences of current word for multiple editing
⌘⇧F | find in files

  1. Splits/Tabs

Shortcut | Description
-——- | -————
⌘⌥1 | single column
⌘⌥2 | two columns
⌘⌥5 | grid (4 groups)
⌃[1,2,3,4] | focus group
⌃⇧[1,2,3,4] | move file to group
⌘[1,2,3…] | select tab

  1. Bookmarks

Shortcut | Description
-——- | -————
⌘F2 | toggle bookmark
F2 | next bookmark
⇧F2 | previous bookmark
⌘⇧F2 | clear bookmarks

  1. Marks

Shortcut | Description
-——- | -————
⌘K space | set mark // ⌘K; for me
⌘KW | delete from cursor to mark
⌘KA | select from cursor to mark
⌘KG | clear mark

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