shlogg · Early preview
Krzysztof Platis @krisplatis

Software Engineering Shortcuts For VSCode Efficiency

Boost code review efficiency with custom VSCode shortcuts: switch between diff & source, navigate changes, mark files as viewed & more!

If you're a tech lead who spends a lot of time reviewing code and helping others, you know how crucial it is to be efficient. Over time, I've set up some handy keyboard shortcuts in Visual Studio Code (VSCode) that make my life a whole lot easier. Let me show you my keybindings.json and how these shortcuts can help you too.

  
  
  Switch between Diff and Source

Switching between the diff view and the source view can be such a hassle, especially during code reviews.
These shortcuts make it super easy:

// Toggle between file diff and file source when in a diff editor
{
  "key": "cmd+ctrl+d",...