Jay Taylor's notes

back to listing index

My Overused Sublime Text Keyboard Shortcuts | Viget

[web search]
Original source (www.viget.com)
Tags: sublime-text-2 editor sublime-text sublime-text-3 ide www.viget.com
Clipped on: 2016-04-27

Skip to Content Skip to Navigation

My Overused Sublime Text Keyboard Shortcuts

Image (Asset 1/19) alt=

Tommy Marshall, Front-End Developer
Posted in #Code
on December 18, 2014

Update

December 20, 2014

Added a note to shortcuts which require the Emmet package.

After giving a presentation that included some live coding, a few audience members asked how I was doing stuff so quickly. Of course there’s no one answer; it’s a combination of a bunch of simple shortcuts and a lot of practice. In response to that inquiry I thought it made sense to see what shortcuts I am using on a daily basis without thinking of it.

Here's a curated list of 15 16 shortcuts (and 1 custom shortcut), accompanied by gifs, that I use on a daily basis. Enjoy!

Selecting Stuff

Moving Lines and Text Around

Cutting and Removing, Copying, and Pasting

Text and Number Manipulation

Commentating and Aligning Variables

Select Next Match of a Selection: + D
By placing the cursor on a word and hitting + D, we select the word. Hitting D a few more time while still holding selects the next instance of the selection found. By hitting , then D three times, I have selected three iterations of the text.

Image (Asset 2/19) alt=

Select All Matches of a Selection: CTRL + + G
Same thing as above, except grabs all matches within the file. Careful using this one since it will grab all matches within a file..

Image (Asset 3/19) alt=

Select Opening and Closing Tag Relative to Cursor: + + K
This is a gem. Maybe you want all attributes to stay the same, but just want to select the tag. This shortcut will do that for you -- and notice you can do it with multiple tags at a time. *Emmet package required

Image (Asset 4/19) alt=

Select Between Container: CTRL + D
If you place the cursor between the text and hit the above command it will select the text, much like + D. But hit it again and you get the parent container, and again to get that parents’ container. *Emmet package required

Image (Asset 5/19) alt=

Select Between Brackets: + + Space
This is helpful for selecting everything between brackets. Works with CSS too.

Image (Asset 6/19) alt=

Move Line Up or Down: CTRL + + or

Image (Asset 7/19) alt=

Duplicate Line or Selection: + + D
If you have text selected, it will duplicate your selection. Otherwise, place your cursor on the line and duplicate the whole line.

Image (Asset 8/19) alt=

Indenting and Unindent: + [ or ]

Image (Asset 9/19) alt=

Cut Line or Selection: + X
Cuts a line to your clipboard, so you can paste it somewhere else.

Image (Asset 10/19) alt=

Paste While Respecting Indents: + + V
Another one I use all the time. In the gif I show both, pasting normally ( + V) versus the paste that accounts for indentation. Notice how the indents line up.

Image (Asset 11/19) alt=

Wrap Line or Selection with Tag: CTRL + + W
Wraps a line with a tag; start typing whatever tag you want, and you're done.

Image (Asset 12/19) alt=

Remove Enclosed Container Element: + '
This removes the parent tags relative to your cursor. Helpful for cleaning up markup. *Emmet package required

Image (Asset 13/19) alt=

Evaluate Math Expression: + + Y
I never thought I would use this as much as I do... but it's really helpful. *Emmet package required

Image (Asset 14/19) alt=

Increment and Decrement: + OPTION + or , OPTION + or
Holding will change the number by 10, and by 1 when not being held. And notice you don't have to select the number, Sublime Text is smart enough to update the closest number in the line. *Emmet or Hayaku package required

Image (Asset 15/19) alt=

Upper and Lowercase: + K then U, + K then L

Image (Asset 16/19) alt=

Comment Selection/Line: + /
This works across all languages, and works with lines or whole selections.

Image (Asset 17/19) alt=

Bonus! Use AlignTab with a Custom Keyboard Shortcut

The above shortcuts come with Sublime Text by default, but you can add your own custom shortcuts. The below example applies the AlignTab package using three custom key bindings to vertically align values based on =>, =, and :'s. Since I mainly work in JavaScript and PHP, these bindings account for almost every scenario I need, but you can vertically align with whatever character you want.

To duplicate gif below in your own editor, just install AlignTab, add the custom bindings to your custom key bindings file, select some code, and hit CTRL + + . or ; or =.

Image (Asset 18/19) alt=

Conclusion

Once you see a change that has to happen on multiple lines, there’s usually a way to accomplish the changes in fewer keystrokes than editing them one by one. By using a combination of the above shortcuts in succession to perform a repetitive or predictable change, you can greatly increase how fast you code.

Here's a short Gif that combines selecting all matching occurrences, copying the links' text, utilizing multiple curses to paste that text, and transforming that text to to lowercase.

Image (Asset 19/19) alt=

Tommy is a Front-End Developer in our Falls Church, VA office.

More posts by Tommy