vscode (Visual Studio Code)

Date: 2019-04-10
Shortcuts:
CTRL+SHIFT+P => Search commands
CTRL+P => Search file
SHIFT+ALT+F => Format document

Expand selection: SHIFT + ALT + right arrow
Shrink selection: SHIFT + ALT + left arrow
Extra selection cursor up: SHIFT + ALT + up arrow
Extra selection cursor down: SHIFT + ALT + down arrow
Move line up: ALT + up arrow
Move line down: ALT + down arrow
Duplicate line up: CTRL + SHIFT + ALT + up arrow
Duplicate line down: CTRL + SHIFT + ALT + down arrow
Select next occurrence of current selection: CTRL + D

Fold in: CTRL + SHIFT + [
Fold out: CTRL + SHIFT + ]



Extensions:
Toggle Header/Source
ALT+O => Switch header/source

tslint

c#
live share


{
    "workbench.startupEditor": "newUntitledFile",
    "workbench.tree.indent": 16,
    "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe",
    "git.enableSmartCommit": true,
    "workbench.editor.enablePreview": false,
    "explorer.openEditors.visible": 0,
    "editor.minimap.enabled": false,
    "window.zoomLevel": -1,
    "headerSourceSwitch.mappings": [
        {
          "header": [
            ".html",
            ".htm"            
          ],
          "source": [
            ".ts",
            ".js"
          ],
          "name": "HTML/Typescript"
        }
      ],
      "editor.snippetSuggestions": "top"
}

20770cookie-checkvscode (Visual Studio Code)