Last active
July 30, 2021 01:48
-
-
Save tyrants666/3c89648de812a586d9cd573c0c1dae56 to your computer and use it in GitHub Desktop.
All VS Code Snippets here
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
All Vscode snippets, hints, tricks, problems. | |
Feel free to show me your love if you view this content :) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ctrl + KS // Open Kayboard shortcut | |
Ctrl + Alt + rightarrow // moves tab to right window vice-versa | |
Ctrl + ENTER // Insert Next Line | |
Ctrl + Shift + ENTER // Insert above | |
Ctrl + KT // Toggle Theme | |
Ctrl + [ // Folds | |
Ctrl + Shift + Alt + [ // Folds All | |
Ctrl + Alt + downarrow // Selects multi cursor down | |
Ctrl + Shift + F // Find text in all files | |
Ctrl + Shift + H // Search Replace in all files | |
Ctrl + Alt + leftarrow // Moves cursor to split window (vice-versa) | |
Alt + S // Configure snippets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Follow step by step run learn & debug from VSCODE | |
1. Run Live Server (extension by Ritwik Day) | |
2. Check on what port server has started (Eg: 5500) | |
3. Goto Project Root > .vscode > launch.json > "url": "http://localhost:5500", | |
4. F5 (Start Debugging) //opens hot reload window + Debug in side panel | |
5. Ctrl+F5 (Run without Debugging) | |
6. On left Run panel now you can check all the local & global variables :) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment