VS Code Shortcuts (General Purpose and for Flutter)
So Our team at GeekyPajis has Recently started Using Flutter for Personal as well as Freelance Projects .
The IDE of Our Choice like many other developers is VS code.
The follwing are some of the shortcuts that may come in handy if you're following the same path:-
- #Flutter #Android #VSCode
- Show All Shortcuts----------------------------------------->Ctrl + K + S
- Show Command Palette------------------------------------>Ctrl + Shift + P
- Code Completion-------------------------------------------->Ctrl + Space
- Quick Fix or the Magic Wand----------------------------->Ctrl + .
- Go to line Number------------------------------------------>Ctrl + G
- Format Document------------------------------------------>Shift + Alt +F
- rename component------------------------------------------>F2
- Comment multipe line(s)----------------------------------->Cntl + /
- remove unused imports------------------------------------>Alt+Shift+o
- Shift+Alt+↑ or Shift+Alt+↓ to copy a line/selection of lines up or down.
- Shift+Alt+→ to expand the selection more and you can also shrink the selection by using Shift+Alt+←
- find the pair of a bracket using Ctrl+Shift+\
- Alt+← to see which all code you had come through to get here, you can use Alt+→ to go forward as well.
- You can easily switch between open files/tabs using Ctrl+Tab
- you have to take the terminal and go to the location where the workspace is and then type code. and then that workspace will open in current visual code window. If you want it to open to a new window, use the command code -n. and it will open the workspace in a new VS Code window.
Debugging Shortcuts
These are some of the debugging shortcuts which will come in handy, hope you don’t need any examples for the same.
- F5 - Start Debugging
- Ctrl+F5 - Start Without Debugging
- Shift+F5 - Stop Debugging
- Ctrl+Shift+F5 (macOS: Cmd+Shift+F5) - Restart Debugging (Hot Reload when debugging Flutter apps)
- Ctrl+F5 - Hot Restart (when debugging Flutter apps and in a debug session)
- F9 - Toggle Breakpoint
- F10 - Step Over
- F11 - Step In
- Shift+F11 - Step Out
visit https://honai.github.io/vscode-shortcuts-wallpaper/ for more
Comments
Post a Comment