— 1 min read
This is a super-simple, super-basic Sublime Text 3 setup. It goes through downloading of the application, installing Package Control and a few basic Packages. It does not, go through a ton of "How-To"'s.
You can download from the Sublime Text download page. Once you have downloaded the appropriate version for your OS, install it. You're not an idiot so I'm sure you can do that without my step-by-step instructions.
The first thing you will want to install is Package Control. Follow the on-page instructions to get it setup and now you are ready to go to town.
Launch Sublime Text 3 and click Preferences
-> Package Control
. Then on the pop up list, type "install" or click Package Control: Install Package
". Another popup appears. This popup contains all the packages that are available to install. Anything you type here will act as a filter for the packages. For instance, if you type "angular", then all the packages that have that word in them will show up. Click on the item to install it.
The End.
You can see a list of all the Packages sorted by popularity, stars, etc on the Package Control homepage. Some of the packages I currently use:
Full Documentation : http://www.sublimetext.com/docs/3/
Ctrl+C | copy current line (if no selection) |
Ctrl+X | cut current line (if no selection)) |
Ctrl+⇧+K | delete line |
Ctrl+↩ | insert line after |
Ctrl+⇧+↩ | insert line before |
Ctrl+⇧+↑ | move line (or selection) up |
Ctrl+L | select line (repeat to select next lines) |
Ctrl+D | select word (repeat select others occurrences in context for multiple editing) |
Ctrl+M | jump to closing bracket for current code, repeat to jump to opening bracket |
Ctrl+⇧+M | select all contents of the current brackets (curly brackets, square brackets, parentheses) |
Ctrl+KK | delete from cursor to end of line |
Ctrl+K+⌫ | delete from cursor to start of line |
Ctrl+] | indent current line(s) |
Ctrl+⇧+D | duplicate line(s) |
Ctrl+J | join line below to the end of the current line |
Ctrl+ / | comment/un-comment current line |
Ctrl+⇧+/ | block comment current selection |
Ctrl+Y | redo, or repeat last keyboard shortcut command |
Ctrl+⇧+V | paste and indent correctly |
Ctrl+Space | select next auto-complete suggestion |
Ctrl+U | soft undo (somehow undoes your movements; it jumps to your last change before undoing it when you repeat this command) |
Ctrl+P | quick-open files by name in your project (doesn't seem to need an actual project set up, it just searches in the directories around the currently-opened file |
Ctrl+R | goto symbol (functions and classes) in the file. Same as *Ctrl+P*, then type *@* |
Ctrl+; | goto word in current file. Same as *Ctrl+P*, then type *#* |
Ctrl+G | goto line in current file. Same as *Ctrl+P*, then type *:* |
Ctrl+⇧+P | command prompt |
Ctrl+KB | toggle side bar |
Ctrl+F | find |
Ctrl+H | replace |
Ctrl+⇧+F | find in files |
Ctrl+⇧+t | open last closed tab (just like in your browser) |
Ctrl+PgDn | cycle down through open tabs |
Ctrl+PgUp | cycle up through open tabs |
Ctrl+⇆ | cycle through last tabs (repeat to go back further in history) |
Alt+⇧+2 | split into two columns |
Alt+⇧+1 | revert to single column |
Alt+⇧+5 | grid (4 groups) |
Ctrl+[1,2,3,4] | jump to "group" (pane) |
Ctrl+⇧+[1,2,3,4] | move file to specified group |
Ctrl+F2 | toggle bookmark |
F2 | next bookmark |
⇧+F2 | previous bookmark |
Ctrl+⇧+F2 | clear bookmarks |
Ctrl+KU | upper case |
Ctrl+KL | lower case |
You can also check out this article.
There you go. Enjoy!
'Til next time.
-G