Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 805 Bytes

VSCode.md

File metadata and controls

34 lines (29 loc) · 805 Bytes

Ctl + Opt + up/down => change property’s position in JSX/TSX

{
  "key": "alt+cmd+backspace",
  "command": "editor.action.removeBrackets",
  "when": "editorTextFocus"
}
{
  "key": "alt+cmd+.",
  "command": "editor.action.autoFix",
  "when": "textInputFocus && !editorReadonly && supportedCodeAction =~ /(\\s|^)quickfix\\b/"
}

{
  "key": "cmd+.",
  "command": "editor.action.quickFix",
  "when": "editorHasCodeActionsProvider && textInputFocus && !editorReadonly"
}

{
  "key": "cmd+.",
  "command": "workbench.action.terminal.showQuickFixes",
  "when": "terminalFocus"
}

{
  "key": "ctrl+q",
  "command": "workbench.action.quickOpenView"
}

Install code in MacOS PATH environment variable

cmd + shift + PType Shell Command: Install 'code' command in PATH and select it.