VS Code Productivity
The habits that separate "knows VS Code" from "types slower than the editor allows."
Beginner → Advanced
for then Tab in a
Python file). Custom ones are just as easy to add for whatever you type often.
prefix (what you type), a body
(what gets inserted), and numbered tabstops ($1, $2, ...) that
Tab cycles through after insertion — so a snippet can prompt you for the parts that
actually change each time.
{
"version": "2.0.0",
"tasks": [
{
"label": "run tests",
"type": "shell",
"command": "pytest -q",
"group": { "kind": "test", "isDefault": true }
}
]
}
Ctrl+Shift+P → Toggle Minimap) and breadcrumbs off if you find them
more distracting than useful — both are on by default.