GitXplorerGitXplorer
T

my-vscode-key-mappings

public
2 stars
0 forks
0 issues

Commits

List of commits on branch master.

No commits found

There are no commits on branch master.

README

The README file for this repository.

my-vscode-key-mappings

Command Status Keybinding Custom Keybinding Category
Cursor undo CTRL + U
Close All files 😎 CTRL + K + CTRL + W
Add Selection To Next Find Match 😎 CTRL + D
Save file 😎 CTRL + S
Rename Symbol 😎 F2
Go file 😎 CTRL + P NAVIGATION
Go to next problem in files (warning, error) F8 NAVIGATION
Toggle Integrated Terminal 😎 CTRL+` NAVIGATION
Go to definition F12 NAVIGATION
Go to navigate by breadcrumbs CTRL + SHIFT + . NAVIGATION
Go Line CTRL + P & : + <number> NAVIGATION
Go Symbol CTRL + P & & NAVIGATION
Show Search 😎 CTRL+SHIFT+F NAVIGATION
Navigate Editor Group History 😎 CTRL+TAB NAVIGATION
Toggle word wrap ALT + Z
Jump to matching bracket CTRL+SHIFT+\
Select all occurrences of current word CTRL+F2
Fold (collapse) region CTRL+SHIFT + [ VIEW
Unfold (uncollapse) region CTRL+SHIFT + ] VIEW
Fold (collapse) all regions CTRL + K CTRL + 0 VIEW
Toggle Bottom Bar Visibility 😎 CTRL+J VIEW
Show Problems CTRL+SHIFT+M VIEW
Add Line Comment 😎 CTRL+K CTRL+C
Remove Line Comment 😎 CTRL+K CTRL+U
Toggle Block Comment CTRL+/
Quick Fix 😎 CTRL+.
Delete Line 😎 CTRL+SHIFT+K
Select Line CTRL+L
Open Preview to the Side CTRL+K + V PREVIEW
Format Document SHIFT+ALT + F
Undo 😎 CTRL+Z
Redo CTRL+Y

Refactoring

With the code select (you can use CTRL+l to select the line), type ctrl+. to list the operators to refactor or "wrapper".

refactor operators:

  • move code to function, arrow function, function out scope.
  • separate object to a variable
  • ...