Skip to content

Instantly share code, notes, and snippets.

@surjithctly
Last active March 20, 2016 07:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save surjithctly/7b0070f532652921f731 to your computer and use it in GitHub Desktop.
Save surjithctly/7b0070f532652921f731 to your computer and use it in GitHub Desktop.
Sublime Text 3 for Beginners (Designers or Developers)

Sublime 3 Shortcuts

Shortcut Description
Ctrl + Shift + P Command Palette
Ctrl + D Multi Edit : Select the next same matched word
Alt + F3 Select all occurences of selected text
Ctrl + Click Every place you click will create a cursor to edit
Ctrl + F then Alt + Enter Highlight all occurences of selected word and to edit at same time
Ctrl + Shift + [ Fold Code wrap of selected line
Ctrl + Shift + ] Unfold Code wrap of selected line
Alt + shift + w Wrap tags with

then change to other tags like div if needed. changes will apply both sides

Ctrl + K then Ctrl + V Clipboard History => Now it will show the history popup, where we can select previously copied text.
Ctrl + J Join the line below your cursor to the one you’re currently editing.
Crtl + Shift + Up / Down Swap the current line to up or down.
Crtl + Shift + K Delete the current line + remove the space
Crtl + Shift + D Duplicate the current line of code in to new. (No more copy pasting)
- -
- -

Full keyboard shortcuts : https://scotch.io/bar-talk/sublime-text-keyboard-shortcuts

###Snippets

Type "Lorem" and press Tab to fill it with dummy text

###Install Package

Ctrl+Shift+P to see package manager

Type : Package Control : Install Package {package-name}

It will automatically install that package. Press Ctrl+` to Show Console Panel.

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