Cheatography
https://cheatography.com
Personal Sublime Text 3 shortcuts
Navigate
ctrl+p |
To File |
ctrl+r |
To Method |
ctrl+g |
To Line |
ctrl+shift+r |
To Simbol |
F12 |
Go to definition |
Layout
alt+shift+1 |
One File Layout |
alt+shift+2 |
Two Files Layout |
ctrl+shift+1 |
Move File to 1st Column |
ctrl+shift+2 |
Move File to 2nd Column |
ctrl+1 |
Focus 1st Column |
ctrl+2 |
Focus 2nd Column |
|
|
Select
alt+shift+up |
Select Lines Up |
alt+shift+down |
Select Lines Down |
ctrl+shift+l |
Split selection into lines |
ctrl+l |
Select full line |
ctrl+shift+space |
Expand selection to scope |
ctrl+d |
Select next occurrence too |
|
|
Edit
ctrl+7 |
Line comment |
ctrl+shift+7 |
Block comment |
ctrl+k ctrl+u |
Uppercase |
ctrl+k ctrl+l |
Lowercase |
Line
F9 |
Sort lines |
ctrl+F9 |
Sort lines case sensitive |
ctrl+shift+up/down |
Swap line up/down |
ctrl+j |
Join lines |
ctrl+shift+d |
Duplicate |
|
Created By
Metadata
Favourited By
Comments
mike513, 12:06 6 Aug 14
I have the following key-bindings:
[
{ "keys": ["ctrl+7"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+7"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["alt+shift+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["alt+shift+down"], "command": "select_lines", "args": {"forward": true} }
]
Add a Comment
Related Cheat Sheets