Daily Software Tips & Tricks
Bite-sized knowledge to improve your coding skills daily.
VS Code's Hidden Multi-Cursor Superpower
February 8, 2026
Ever need to change the same variable name in 10 different places simultaneously? Stop copying and pasting! In VS Code, select the first instance, then hit `Ctrl+D` (Windows/Linux) or `Cmd+D` (Mac) repeatedly. Each press selects the next match and adds a cursor. Now, type once, and modify everything at the same time. This simple shortcut is an absolute lifesaver when refactoring large blocks of boilerplate code.