https://www.shortcutfoo.com/app/dojos/sublime-text-3-mac/cheatsheet
CTRL+g: Go to line #CTRL+m: Go to matching bracket
-
CTRL+SHIFT+m: Select function currently enclosed by current bracket (repeat to select those enclosed by outside brackets) -
CMD+l: Select current line (repeat to select next line) -
CMD+d: Select current word (repeat to have more cursors to hightlight same word at other locations, then any change will be applied to all selections - very useful for refactoring) --->CMD+k+CMD+d: Skip current match -
CMD+CTRL+g: Multiselect all occurrences of current selection (instead of manually repeating ctrl+d till the end) -
CMD+SHIFT+j: Select current indentation (esp useful for Python) -
CMD+SHIFT+space: Select current scope and expand on subsequent commands (esp useful for JS) -
ALT+ mouse dragging: Select an area, with multi cursor for each line -
CMD+SHIFT+l: Split current selection into each lines, with their own cursors -
CTRL+SHIFT+UP/DOWN: Place an additional cursor above/ below current one -
CMD+u: Undo previous selection action -
CTRL+SHIFT+UP/DOWN: Column selection, one cursor each line
CMD+CTRL+UP/DOWN: Move current line up/downCMD+LEFT/RIGHT: Move to beginning / end char of current lineALT+LEFT/RIGHT: Move to previous / next word
CMD+ALT+/: Block comment current selectionCMD+/: Comment current line
CMD+Space: Show autocomplete suggestion (depends if there is autocomplete for current language)
CMD+ALT+v: Paste from history
CMD+j: Join line
CMD+ALT+ ([or]): Fold / unfold current block
CMD+j
@: Open list of symbols (functions, vars etc) and navigate:<number>: Go to line number#: Go to fuzzy matched string