Sublime Text keyboard shortcuts.
The Sublime Text shortcuts that matter — Go to Anything, multiple selections, find & replace. Mac and Windows.
Go to Anything is the master key
If you learn one Sublime Text shortcut, make it Go to Anything (⌘/Ctrl + P). Start typing a file name and it fuzzy-matches across the whole project in a couple of keystrokes — no clicking through the sidebar. The same box doubles as a symbol jumper and a line jumper: add @ to leap to a function or class, : to jump to a line number, and # to search for text. Many experienced Sublime users navigate an entire codebase without ever touching the mouse.
The Command Palette runs everything else
Where Go to Anything moves you around, the Command Palette (⌘/Ctrl + Shift + P) runs commands. Setting the syntax, changing indentation, sorting lines, installing a package — anything the editor can do is reachable by typing a few letters, so you never have to remember which menu it lives in. Pair it with Go to symbol (⌘/Ctrl + R) for large files and Go to line (⌃G / Ctrl + G) to land on an exact spot from a stack trace.
Multiple selections are the superpower
Sublime Text's multiple selections are what make people who use it look impossibly fast. Press ⌘/Ctrl + D to add the next occurrence of the current word to the selection and you can rename five instances of a variable at once; ⌃⌘G (Alt + F3) grabs every occurrence in one shot. Combine that with line actions — duplicate a line with ⌘⇧D / Ctrl + Shift + D, delete it with ⌘⇧K / Ctrl + Shift + K, move it with ⌘⌃↑/↓ (Ctrl + Shift + ↑/↓), and join lines with ⌘/Ctrl + J — and routine edits that would take a dozen mouse moves collapse into a single gesture.
How to adopt them
Add one shortcut at a time. Start with Go to Anything and the Command Palette this week; bring in multiple selections next. Press / to search this page when you forget one. Since Sublime Text shares its clipboard and editing keys with the rest of your system, the general shortcuts reinforce each other, and the Git commands pair naturally with editing code in Sublime.