Skip to content

Instantly share code, notes, and snippets.

@RegiusK
Last active August 22, 2018 13:58
Show Gist options
  • Save RegiusK/dc8871e532df16920f78b4bab8aebad6 to your computer and use it in GitHub Desktop.
Save RegiusK/dc8871e532df16920f78b4bab8aebad6 to your computer and use it in GitHub Desktop.
A list of tips for Visual Studio Code
========================================================================================================================================
General tips:
Useful VSCode extension:
Git and Gitlens:
The Git panel allows you to stage, commit, stash, and undo changes. GitLens extension for VS Code offers you much more.
JSON to Code:
Converts your JSON into a interface usable in strong-typed language (like typescript)
========================================================================================================================================
General tips:
Rename All Occurrences:
If you select a variable/method and hit F2, you can edit the name and it will change every instance of that variable’s name
throughout the entire current working project.
If you only want to change within the current file, use the Command + F2 (on Mac) or Ctrl + F2 (on Windows) keyboard shortcut
and VS Code will spawn a cursor at every instance throughout the current file.
========================================================================================================================================
Sources:
https://medium.com/@i_AnkurBiswas/pro-tips-for-visual-studio-code-to-be-productive-in-2018-d5252e914561
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment