VSCODE

Settings

Text Editor - Cursor - Cursor Surrounding Lines

Text Editor - Suggestions - Snippet sugestions: top

Text Editor - Suggestions - filteredTypes

Files - Insert Final Newline

Files - Simple dialog

[github] johnpapa vscode peacock

code.visualstudio.com/docs/editor/user-defined-snippets

// $1, $2 for tab stops, $0 for the final cursor position
"Snnippet console.log": {
  "scope": "javascript,typescript",
  "prefix": "clog",
  "body": ["console.log($1)\n$0"]
},

code.visualstudio.com/docs/editor/assign-keybindings-to-snippets

// keybindings.json
{
  "key": "cmd+k 1",
  "command": "editor.action.insertSnippet",
  "when": "editorTextFocus",
  "args": {
    "snippet": "console.log($1)$0"
  }
}