Last active
August 29, 2015 14:18
-
-
Save bsmithgall/36357fed0b02f26d8dfb to your computer and use it in GitHub Desktop.
Sublime Keyboard Shortcuts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// COMMAND + CONTROL + G --> select all matches on a page | |
// COMMAND + CLICK --> add a new cursor | |
// COMMAND + D --> select the next match | |
// COMMAND + CONTROL + UP ARROW --> move the highlighted line up | |
// COMMAND + CONTROL + DOWN ARROW --> move the highlighted line down | |
// COMMAND + SHIFT + L (over highlighted lines) --> CURSOR AT THE END OF EACH LINE | |
// COMMAND + SHIFT + P --> Opens command window for sublime | |
// CONTROL + N --> Down one line | |
// CONTROL + P --> Up one line | |
// CONTROL + F --> Forward one character | |
// CONTROL + B --> Back one character | |
// CONTROL + A --> Beginning of the line | |
// CONTROL + E --> End of the line | |
// CONTROL + D --> Delete the character after your cursor | |
// CONTROL + K --> Delete a line from the cursor's location forward | |
// ALT + F (right arrow) --> Forward one word | |
// ALT + B (left arrow) --> Back one word | |
[ | |
{ | |
"breed": "corgi", | |
"name": "whiskers", | |
"age": 10 | |
}, | |
{ | |
"breed": "corgi", | |
"name": "sutter brown", | |
"age": 10 | |
}, | |
{ | |
"breed": "golden", | |
"name": "lucy", | |
"age": 10 | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment