GitXplorerGitXplorer
T

my-vscode-key-mappings

public
2 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
79d3c5397c9b16046edbea994bda4934bab6a400

close all files shortcut

TTsugami committed 2 years ago
Unverified
058a348859a19958f7f55b32eac9eacbac654f91

tips for refactoring

TTsugami committed 2 years ago
Unverified
f937c0ef5eb2639ebd8d3dc4eaeb63cae6e6150f

line and symbol shortcuts

TTsugami committed 2 years ago
Unverified
9aa0fbf8f2cee916f1215662c3fc43704e7dc9a1

my keybindings

TTsugami committed 2 years ago
Verified
374eb0b8525fc93b0b421f30203a7b7d805f8d50

Initial commit

TTsugami committed 2 years ago

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
  • ...