Skip to content

Instantly share code, notes, and snippets.

@Roger-Melo
Last active October 8, 2021 21:29
Show Gist options
  • Save Roger-Melo/e8e275e8f0baaad78c2aff726cc59a33 to your computer and use it in GitHub Desktop.
Save Roger-Melo/e8e275e8f0baaad78c2aff726cc59a33 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{"lastUpload":"2021-10-02T02:52:18.337Z","extensionVersion":"v3.4.3"}
[
{
"metadata": {
"id": "f583eafd-aa0d-4ccb-8f44-d1e610389660",
"publisherId": "CoenraadS.bracket-pair-colorizer",
"publisherDisplayName": "CoenraadS"
},
"name": "bracket-pair-colorizer",
"publisher": "CoenraadS",
"version": "1.0.61"
},
{
"metadata": {
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
"publisherId": "Shan.code-settings-sync",
"publisherDisplayName": "Shan"
},
"name": "code-settings-sync",
"publisher": "Shan",
"version": "3.4.3"
},
{
"metadata": {
"id": "b63c44fd-0457-4696-99e9-dbfdf70d77de",
"publisherId": "ritwickdey.LiveServer",
"publisherDisplayName": "ritwickdey"
},
"name": "LiveServer",
"publisher": "ritwickdey",
"version": "5.6.1"
},
{
"metadata": {
"id": "4e1273ba-8871-42e2-8bc2-01dd29ebf16b",
"publisherId": "tomoki1207.selectline-statusbar",
"publisherDisplayName": "tomoki1207"
},
"name": "selectline-statusbar",
"publisher": "tomoki1207",
"version": "0.0.2"
},
{
"metadata": {
"id": "829a192d-496c-44ac-87f3-0a84ce36a853",
"publisherId": "emmanuelbeziat.vscode-great-icons",
"publisherDisplayName": "emmanuelbeziat"
},
"name": "vscode-great-icons",
"publisher": "emmanuelbeziat",
"version": "2.1.79"
}
]
{
"html.format.wrapLineLength": 80,
"editor.suggestOnTriggerCharacters": true,
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.parameterHints.enabled": true,
"editor.fontSize": 28,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": false,
"editor.insertSpaces": true,
"explorer.confirmDelete": false,
"workbench.startupEditor": "newUntitledFile",
"terminal.integrated.fontSize": 24,
"emmet.triggerExpansionOnTab": true,
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.cursorBlinking": true,
"terminal.external.windowsExec": "C:\\WINDOWS\\System32\\cmd.exe",
"emmet.showSuggestionsAsSnippets": true,
"emmet.showExpandedAbbreviation": "never",
"files.associations": {
"*.js": "javascript"
},
"editor.tabSize": 2,
"emmet.excludeLanguages": [],
"javascript.updateImportsOnFileMove.enabled": "always",
"diffEditor.renderSideBySide": false,
"window.menuBarVisibility": "toggle",
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": false,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"fontStyle": ""
}
}
]
},
"workbench.iconTheme": "vscode-great-icons",
"editor.foldingStrategy": "auto",
"explorer.confirmDragAndDrop": false,
"editor.rulers": [
80
],
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.donotVerifyTags": true,
"breadcrumbs.enabled": false,
"breadcrumbs.filePath": "off",
"editor.detectIndentation": false,
"extensions.ignoreRecommendations": true,
"[markdown]": {
"editor.wordWrapColumn": 80,
"editor.wordWrap": "on",
"editor.quickSuggestions": false
},
"[HTML]": {
"editor.wordWrapColumn": 80,
"editor.wordWrap": "on",
"editor.quickSuggestions": false
},
"sync.gist": "e8e275e8f0baaad78c2aff726cc59a33",
"workbench.activityBar.visible": false,
"terminal.integrated.tabs.hideCondition": "never",
"editor.inlineSuggest.enabled": true,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe",
"terminal.integrated.shellArgs.windows": [
"/K",
"C:\\Users\\roger\\cmder\\vscode.bat"
],
"terminal.integrated.defaultProfile.windows": "Ubuntu (WSL)",
// "editor.wordWrap": "wordWrapColumn",
}
{
// Place your snippets for css here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
}
{
// Place your snippets for html here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"create a div with container class": {
"prefix": "dcc",
"body": [
"<div class=\"container\"></div>"
],
"description": "create a div with container class"
},
"create a EJS tag": {
"prefix": "ejs",
"body": [
"<%= ${1:tagName} %>"
],
"description": "create a EJS tag"
}
}
{
// Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
// Pure JS --------------------------------------------------------
"Creates an html tag inside template string": {
"prefix": "tst",
"body": [
"`<${1:tagname}>$2</${1:tagname}>`"
],
"description": "Creates an html tag inside template string"
},
"const": {
"prefix": "c",
"body": [
"const ${constName} = ${constValue}"
],
"description": "Create a const declaration"
},
"let": {
"prefix": "l",
"body": [
"let ${letName} = ${letValue}"
],
"description": "Create a let declaration"
},
"Print to console": {
"prefix": "log",
"body": [
"console.log(${value})"
],
"description": "Log output to console"
},
"ES5 Function": {
"prefix": "f",
"body": [
"function ${functionName} (${params}) {",
"\t${functionBody}",
"}"
],
"description": "Create an ES5 function declaration"
},
"Anonimous Arrow Function": {
"prefix": "af",
"body": [
"${params} => {",
"\t${functionBody}",
"}"
],
"description": "Create an Anonimous Arrow Function declaration"
},
"Named Arrow Function (assigned to a const)": {
"prefix": "naf",
"body": [
"const ${constName} = ${param} => {",
"\t${functionBody}",
"}"
],
"description": "Create an Named Arrow Function"
},
"Template String": {
"prefix": "ts",
"body": [
"`${templateStringText}`"
],
"description": "Create a Template String"
},
"JS block comment": {
"prefix": "bc",
"body": [
"/* ${comment} */"
],
"description": "Create a JavaScript block comment"
},
"Show a template string in console": {
"prefix": "logts",
"body": [
"console.log(`${string}`)"
],
"description": "Create a template string within a console.log() method"
},
"Const + template string": {
"prefix": "cts",
"body": [
"const ${constName} = `${string}`"
],
"description": "Assign a template string to a const"
},
"Return a template string": {
"prefix": "rts",
"body": [
"return `${string}`"
],
"description": "Create a return statement wich returns a template string"
},
"HTML Inline Code": {
"prefix": "hic",
"body": [
"<${code}>$1</${code}>"
],
"description": "Declares a HTML Inline Code"
},
"Return Statement": {
"prefix": "r",
"body": [
"return ${value}"
],
"description": "Create a return statement"
},
"Create a JS Module to be exported": {
"prefix": "jsm",
"body": [
"'use strict'",
"",
"const ${1:moduleName} = () => {",
" ${2:moduleBody}",
"}",
"",
"export default ${1:moduleName}"
],
"description": "Create a JS Module to be exported"
},
"create an export default declaration": {
"prefix": "ed",
"body": [
"export default ${1:moduleName}"
],
"description": "create an export default declaration"
},
"Assigns & invoke a document.querySelector() method": {
"prefix": "dqs",
"body": [
"const ${1:elementName} = document.querySelector('${2:element selector}')"
],
"description": "invoke a document.querySelector() method"
},
"create an es6 module import ": {
"prefix": "im",
"body": [
"import ${1:method} from '${2:module}'"
],
"description": "create an es6 module import "
},
// Jest --------------------------------------------------------
"new it statement": {
"prefix": "it",
"body": [
"it('${1:description}', () => {",
" const before = ${2:value}",
" const after = ${3:value}",
" expect(before).toBe$4",
"})"
],
"description": "new it statement"
},
"describe: create scope for tests": {
"prefix": "des",
"body": [
"describe('\\n${1:description}', () => {",
" ${2:tests here}",
"})"
],
"description": "describe: create scope for tests"
},
"import expect from chai": {
"prefix": "ie",
"body": [
"import { expect } from 'chai'"
],
"description": "import expect from chai"
},
"create test template": {
"prefix": "test",
"body": [
"'use strict'",
"",
"import ${1:method} from '${2:module}'",
"",
"it('${3:description}', () => {",
" ${4:descriptionOrIt}",
"})"
],
"description": "create test template"
},
// React --------------------------------------------------------
"Create a React Component to be exported": {
"prefix": "rc",
"body": [
"'use strict'",
"",
"import React from 'react'",
"",
"const ${1:ComponentName} = () => (",
" ${2:component body}",
")",
"",
"export default ${1:ComponentName}"
],
"description": "Create a React Component to be exported"
},
"className": {
"prefix": "cn",
"body": [
"className={style['${1:class-name}']}"
],
"description": "className"
},
"className='className'": {
"prefix": "cns",
"body": [
"className='${1:className}'"
],
"description": "className with string"
},
// jQuery --------------------------------------------------------
"jQuery: Creates a const & assign a querySelectorAll": {
"prefix": "qsa",
"body": [
"const ${1:constName} = $(' ${2:selector} ')"
],
"description": "jQuery: Creates a const & assign a querySelectorAll"
}
}
{
// Place your snippets for less here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"Create a Less Variable": {
"prefix": "lv",
"body": [
"@${1:var-name}: ${2:value};"
],
"description": "Create a Less Variable"
},
"Create a Less Mixin": {
"prefix": "lm",
"body": [
".my-mixin(${1:parameter?}) {",
" ${2:properties}",
"}"
],
"description": "Create a Less Mixin"
},
"less import": {
"prefix": "li",
"body": [
"@import \"${1:path}\";"
],
"description": "less import"
}
}
{
// Place your snippets for markdown here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
// Análises CJRM ---------------------------------------------
"aplications criterions": {
"prefix": "ac",
"body": [
"## Boas decisões",
"",
"",
"",
"## Usabilidade",
"",
"",
"",
"## Organização de código",
"",
"",
"",
"### Local de declaração de variáveis",
"",
"",
"",
"### Nomes de variáveis e funções",
"",
"",
"",
"### Linhas em branco",
"",
"",
"",
"### Refatoração",
"",
"",
"",
"## Lógica",
"",
"",
""
],
"description": "aplications criterions"
},
// Content Review ---------------------------------------------
"Não pode faltar na aula": {
"prefix": "npf",
"body": [
"<!-- ",
"Vídeo nutella que mais gerou resultado semana passada: ",
"- Essa sacada vai te poupar de muita dor de cabeça com arrow functions em aplicações web com JS puro ",
"",
"Levar à Roma",
"Falar com audiência sobre aulas complementares",
"Revisar",
"-->"
],
"description": "Não pode faltar na aula"
},
"Details of YouTube Videos": {
"prefix": "yt",
"body": [
"## Tópicos / tags",
"",
"",
"",
"## Título",
"",
"",
"",
"## Cover",
"",
"",
"",
"## Descrição",
"",
"",
"",
"## Comentário fixado",
"",
"",
"",
"## Sugestão nutella de hj - descrição",
"",
"https://youtu.be/LINK_AQUI",
"C:\\Users\\roger\\Downloads\\my-videos\\nutella\\LINK-AQUI",
"(publicado há 3 meses)",
"",
"=> alguma observação aqui",
"",
"##",
""
],
"description": "Details of content Videos"
},
"Slide Image": {
"prefix": "si",
"body": [
"<!-- slide-0${1:number} -->"
],
"description": "Slide Image"
},
"Parte só para...": {
"prefix": "psp",
"body": [
"## Falar: parte só pra ${1:publico}",
"",
"",
"",
"## Falar: fim da parte só pra ${1:publico}",
],
"description": "Partes específicas para públicos diferentes"
},
"Script Code": {
"prefix": "sc",
"body": [
"<!-- code-0${1:number} -->"
],
"description": "Script Code"
},
// Code Formatting ---------------------------------------------
"create a `fetch()` code text": {
"prefix": "fc",
"body": [
"`fetch()`"
],
"description": "Declares a `fetch()` code text"
},
"Inline Code": {
"prefix": "ic",
"body": [
"`${code}`"
],
"description": "Declares a Inline Code"
},
// JS --------------------------------------------------------
"Declares a JavaScript Block Code": {
"prefix": "jsc",
"body": [
"```javascript",
"$1",
"```"
],
"description": "Declares a JavaScript Block Code"
},
"Declares a json Block Code": {
"prefix": "jsonc",
"body": [
"```json",
"$1",
"```"
],
"description": "Declares a json Block Code"
},
"alias h2": {
"prefix": "al",
"body": [
"## Alias: `${1:alias}`"
],
"description": "alias h2"
},
// JS Tests text formatting ------------------------------------
"TDD Formatting Text": {
"prefix": "tdd",
"body": [
"### Testando se `${1:code}` ${2:blablabla}",
"",
"```javascript",
"${3:TDD code}",
"```",
"",
"- **Assistir o teste falhar**",
"",
"#### Com a menor implementação possível, fazendo o teste passar",
"",
"```javascript",
"${4:Implementation code}",
"```",
"",
"$5"
],
"description": "TDD Formatting Text"
},
// HTML --------------------------------------------------------
"HTML Code": {
"prefix": "hc",
"body": [
"```html",
"$1",
"```"
],
"description": "Declares a HTML Block Code"
},
"HTML Inline Code": {
"prefix": "hic",
"body": [
"`<${code}>`"
],
"description": "Declares a HTML Inline Code"
},
"h1 + Code": {
"prefix": "h1c",
"body": [
"# `${code}` - ${heading}"
],
"description": "Declares a h1 with Code at beginning"
},
"h2 + Code": {
"prefix": "h2c",
"body": [
"## `${code}` - ${heading}"
],
"description": "Declares a h2 with Code at beginning"
},
"li + Code": {
"prefix": "lic",
"body": [
"- `${code}`"
],
"description": "Declares a li with Code"
},
// CSS --------------------------------------------------------
"CSS Code": {
"prefix": "cc",
"body": [
"```css",
"$1",
"```"
],
"description": "Declares a CSS Block Code"
},
}
{"ref":"a6d2842f-ecab-4993-8934-c9d14f0deabf","content":"{\"version\":5,\"machineId\":\"a5182fef-4a38-453c-9d44-4b99e71e35dc\",\"content\":\"[{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.bat\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.clojure\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.coffeescript\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.configuration-editing\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.cpp\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.csharp\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.css\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.css-language-features\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.dart\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.debug-auto-launch\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.debug-server-ready\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.docker\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.emmet\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.extension-editing\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.fsharp\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.git\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.github\\\"},\\\"version\\\":\\\"0.0.1\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.github-authentication\\\"},\\\"version\\\":\\\"0.0.2\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.go\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.groovy\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.grunt\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.gulp\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.handlebars\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.hlsl\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.html\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.html-language-features\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.image-preview\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.ini\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.ipynb\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.jake\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.java\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.javascript\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.json\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.json-language-features\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.julia\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.less\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.log\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.lua\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.make\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.markdown\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.markdown-language-features\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.markdown-math\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.merge-conflict\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.microsoft-authentication\\\"},\\\"version\\\":\\\"0.0.1\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode-remote.remote-wsl-recommender\\\",\\\"uuid\\\":\\\"cb296d3c-017a-4dee-83af-ebb5a5a16e9a\\\"},\\\"version\\\":\\\"0.0.11\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.js-debug\\\",\\\"uuid\\\":\\\"25629058-ddac-4e17-abba-74678e126c5d\\\"},\\\"version\\\":\\\"1.60.2\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.js-debug-companion\\\",\\\"uuid\\\":\\\"99cb0b7f-7354-4278-b8da-6cc79972169d\\\"},\\\"version\\\":\\\"1.0.15\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.references-view\\\",\\\"uuid\\\":\\\"dc489f46-520d-4556-ae85-1f9eab3c412d\\\"},\\\"version\\\":\\\"0.0.80\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.vscode-js-profile-table\\\",\\\"uuid\\\":\\\"7e52b41b-71ad-457b-ab7e-0620f1fc4feb\\\"},\\\"version\\\":\\\"0.0.18\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.npm\\\"},\\\"version\\\":\\\"1.0.1\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.objective-c\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.perl\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.php\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.php-language-features\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.powershell\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.pug\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.python\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.r\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.razor\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.ruby\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.rust\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.scss\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.search-result\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.shaderlab\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.shellscript\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.simple-browser\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.sql\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.swift\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-abyss\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-defaults\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-kimbie-dark\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-monokai\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-monokai-dimmed\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-quietlight\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-red\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.vscode-theme-seti\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-solarized-dark\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-solarized-light\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-tomorrow-night-blue\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.typescript\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.typescript-language-features\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.vb\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.xml\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.yaml\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"shan.code-settings-sync\\\",\\\"uuid\\\":\\\"e337c67b-55c2-4fef-8949-eb260e7fb7fd\\\"},\\\"version\\\":\\\"3.4.3\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"coenraads.bracket-pair-colorizer\\\",\\\"uuid\\\":\\\"f583eafd-aa0d-4ccb-8f44-d1e610389660\\\"},\\\"version\\\":\\\"1.0.61\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ritwickdey.liveserver\\\",\\\"uuid\\\":\\\"b63c44fd-0457-4696-99e9-dbfdf70d77de\\\"},\\\"version\\\":\\\"5.6.1\\\",\\\"installed\\\":true,\\\"state\\\":{\\\"liveServer.setup.version\\\":\\\"5.6.1\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"tomoki1207.selectline-statusbar\\\",\\\"uuid\\\":\\\"4e1273ba-8871-42e2-8bc2-01dd29ebf16b\\\"},\\\"version\\\":\\\"0.0.2\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"emmanuelbeziat.vscode-great-icons\\\",\\\"uuid\\\":\\\"829a192d-496c-44ac-87f3-0a84ce36a853\\\"},\\\"version\\\":\\\"2.1.79\\\",\\\"installed\\\":true}]\"}","skippedExtensions":[]}
{"ref":"f40bc438-3f79-4163-8311-3a3e3ce2573d","content":"{\"version\":1,\"machineId\":\"a5182fef-4a38-453c-9d44-4b99e71e35dc\",\"content\":\"{\\\"storage\\\":{\\\"globalState.argv.locale\\\":{\\\"version\\\":1,\\\"value\\\":\\\"en\\\"},\\\"workbench.panel.markers.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.markers.view\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.panel.output.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.output\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"terminal.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"terminal\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.explorer.views.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"outline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"timeline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.explorer.openEditorsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.explorer.emptyView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.explorer.fileView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.scm.views.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.scm.repositories\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.scm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.search.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.search\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.activity.pinnedViewlets2\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.explorer\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":0},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.search\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":1},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.scm\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":2},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.debug\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":3},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extensions\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":4},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.remote\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":4},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.test\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":6},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.references-view\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":7},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.sync\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false}]\\\"},\\\"nps/lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Fri Oct 01 2021\\\"},\\\"nps/sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"1\\\"},\\\"workbench.view.debug.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.welcome\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.variablesView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.watchExpressionsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.callStackView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.loadedScriptsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.breakPointsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"jsBrowserBreakpoints\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.telemetryOptOutShown\\\":{\\\"version\\\":1,\\\"value\\\":\\\"true\\\"},\\\"workbench.statusbar.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"status.workspaceTrust.1633121127676\\\\\\\",\\\\\\\"status.workspaceTrust.fdc72ec5263ddfcf087805ee287fcc1b\\\\\\\"]\\\"},\\\"colorThemeData\\\":{\\\"version\\\":1,\\\"value\\\":\\\"{\\\\\\\"id\\\\\\\":\\\\\\\"vs-dark vscode-theme-defaults-themes-dark_plus-json\\\\\\\",\\\\\\\"label\\\\\\\":\\\\\\\"Dark+ (default dark)\\\\\\\",\\\\\\\"settingsId\\\\\\\":\\\\\\\"Default Dark+\\\\\\\",\\\\\\\"themeTokenColors\\\\\\\":[{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#D4D4D4\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.embedded\\\\\\\",\\\\\\\"source.groovy.embedded\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"italic\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"emphasis\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"bold\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"strong\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#000080\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"header\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#6A9955\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"comment\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.language\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#b5cea8\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"constant.numeric\\\\\\\",\\\\\\\"variable.other.enummember\\\\\\\",\\\\\\\"keyword.operator.plus.exponent\\\\\\\",\\\\\\\"keyword.operator.minus.exponent\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#646695\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.regexp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.tag\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d7ba7d\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.tag.css\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9cdcfe\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.other.attribute-name\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d7ba7d\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.other.attribute-name.class.css\\\\\\\",\\\\\\\"entity.other.attribute-name.class.mixin.css\\\\\\\",\\\\\\\"entity.other.attribute-name.id.css\\\\\\\",\\\\\\\"entity.other.attribute-name.parent-selector.css\\\\\\\",\\\\\\\"entity.other.attribute-name.pseudo-class.css\\\\\\\",\\\\\\\"entity.other.attribute-name.pseudo-element.css\\\\\\\",\\\\\\\"source.css.less entity.other.attribute-name.id\\\\\\\",\\\\\\\"entity.other.attribute-name.scss\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#f44747\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"invalid\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"underline\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.underline\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"bold\\\\\\\",\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.bold\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"bold\\\\\\\",\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.heading\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"italic\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.italic\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#b5cea8\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.inserted\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.deleted\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.changed\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#6A9955\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.quote.begin.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#6796e6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.list.begin.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.inline.raw\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#808080\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.tag\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.preprocessor\\\\\\\",\\\\\\\"entity.name.function.preprocessor\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.preprocessor.string\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#b5cea8\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.preprocessor.numeric\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9cdcfe\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.structure.dictionary.key.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.diff.header\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"storage\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"storage.type\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"storage.modifier\\\\\\\",\\\\\\\"keyword.operator.noexcept\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"string\\\\\\\",\\\\\\\"meta.embedded.assembly\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"string.tag\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"string.value\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d16969\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"string.regexp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"punctuation.definition.template-expression.begin\\\\\\\",\\\\\\\"punctuation.definition.template-expression.end\\\\\\\",\\\\\\\"punctuation.section.embedded\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d4d4d4\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.template.expression\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9cdcfe\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"support.type.vendored.property-name\\\\\\\",\\\\\\\"support.type.property-name\\\\\\\",\\\\\\\"variable.css\\\\\\\",\\\\\\\"variable.scss\\\\\\\",\\\\\\\"variable.other.less\\\\\\\",\\\\\\\"source.coffee.embedded\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.control\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d4d4d4\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.operator.new\\\\\\\",\\\\\\\"keyword.operator.expression\\\\\\\",\\\\\\\"keyword.operator.cast\\\\\\\",\\\\\\\"keyword.operator.sizeof\\\\\\\",\\\\\\\"keyword.operator.alignof\\\\\\\",\\\\\\\"keyword.operator.typeid\\\\\\\",\\\\\\\"keyword.operator.alignas\\\\\\\",\\\\\\\"keyword.operator.instanceof\\\\\\\",\\\\\\\"keyword.operator.logical.python\\\\\\\",\\\\\\\"keyword.operator.wordlike\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#b5cea8\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.other.unit\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"punctuation.section.embedded.begin.php\\\\\\\",\\\\\\\"punctuation.section.embedded.end.php\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9cdcfe\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.function.git-rebase\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#b5cea8\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.sha.git-rebase\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d4d4d4\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"storage.modifier.import.java\\\\\\\",\\\\\\\"variable.language.wildcard.java\\\\\\\",\\\\\\\"storage.modifier.package.java\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.language\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#DCDCAA\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.name.function\\\\\\\",\\\\\\\"support.function\\\\\\\",\\\\\\\"support.constant.handlebars\\\\\\\",\\\\\\\"source.powershell variable.other.member\\\\\\\",\\\\\\\"entity.name.operator.custom-literal\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#4EC9B0\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.return-type\\\\\\\",\\\\\\\"support.class\\\\\\\",\\\\\\\"support.type\\\\\\\",\\\\\\\"entity.name.type\\\\\\\",\\\\\\\"entity.name.namespace\\\\\\\",\\\\\\\"entity.other.attribute\\\\\\\",\\\\\\\"entity.name.scope-resolution\\\\\\\",\\\\\\\"entity.name.class\\\\\\\",\\\\\\\"storage.type.numeric.go\\\\\\\",\\\\\\\"storage.type.byte.go\\\\\\\",\\\\\\\"storage.type.boolean.go\\\\\\\",\\\\\\\"storage.type.string.go\\\\\\\",\\\\\\\"storage.type.uintptr.go\\\\\\\",\\\\\\\"storage.type.error.go\\\\\\\",\\\\\\\"storage.type.rune.go\\\\\\\",\\\\\\\"storage.type.cs\\\\\\\",\\\\\\\"storage.type.generic.cs\\\\\\\",\\\\\\\"storage.type.modifier.cs\\\\\\\",\\\\\\\"storage.type.variable.cs\\\\\\\",\\\\\\\"storage.type.annotation.java\\\\\\\",\\\\\\\"storage.type.generic.java\\\\\\\",\\\\\\\"storage.type.java\\\\\\\",\\\\\\\"storage.type.object.array.java\\\\\\\",\\\\\\\"storage.type.primitive.array.java\\\\\\\",\\\\\\\"storage.type.primitive.java\\\\\\\",\\\\\\\"storage.type.token.java\\\\\\\",\\\\\\\"storage.type.groovy\\\\\\\",\\\\\\\"storage.type.annotation.groovy\\\\\\\",\\\\\\\"storage.type.parameters.groovy\\\\\\\",\\\\\\\"storage.type.generic.groovy\\\\\\\",\\\\\\\"storage.type.object.array.groovy\\\\\\\",\\\\\\\"storage.type.primitive.array.groovy\\\\\\\",\\\\\\\"storage.type.primitive.groovy\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#4EC9B0\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.type.cast.expr\\\\\\\",\\\\\\\"meta.type.new.expr\\\\\\\",\\\\\\\"support.constant.math\\\\\\\",\\\\\\\"support.constant.dom\\\\\\\",\\\\\\\"support.constant.json\\\\\\\",\\\\\\\"entity.other.inherited-class\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#C586C0\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.control\\\\\\\",\\\\\\\"source.cpp keyword.operator.new\\\\\\\",\\\\\\\"keyword.operator.delete\\\\\\\",\\\\\\\"keyword.other.using\\\\\\\",\\\\\\\"keyword.other.operator\\\\\\\",\\\\\\\"entity.name.operator\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9CDCFE\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"variable\\\\\\\",\\\\\\\"meta.definition.variable.name\\\\\\\",\\\\\\\"support.variable\\\\\\\",\\\\\\\"entity.name.variable\\\\\\\",\\\\\\\"constant.other.placeholder\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#4FC1FF\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"variable.other.constant\\\\\\\",\\\\\\\"variable.other.enummember\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9CDCFE\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.object-literal.key\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CE9178\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"support.constant.property-value\\\\\\\",\\\\\\\"support.constant.font-name\\\\\\\",\\\\\\\"support.constant.media-type\\\\\\\",\\\\\\\"support.constant.media\\\\\\\",\\\\\\\"constant.other.color.rgb-value\\\\\\\",\\\\\\\"constant.other.rgb-value\\\\\\\",\\\\\\\"support.constant.color\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CE9178\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"punctuation.definition.group.regexp\\\\\\\",\\\\\\\"punctuation.definition.group.assertion.regexp\\\\\\\",\\\\\\\"punctuation.definition.character-class.regexp\\\\\\\",\\\\\\\"punctuation.character.set.begin.regexp\\\\\\\",\\\\\\\"punctuation.character.set.end.regexp\\\\\\\",\\\\\\\"keyword.operator.negation.regexp\\\\\\\",\\\\\\\"support.other.parenthesis.regexp\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d16969\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"constant.character.character-class.regexp\\\\\\\",\\\\\\\"constant.other.character-class.set.regexp\\\\\\\",\\\\\\\"constant.other.character-class.regexp\\\\\\\",\\\\\\\"constant.character.set.regexp\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#DCDCAA\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.operator.or.regexp\\\\\\\",\\\\\\\"keyword.control.anchor.regexp\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d7ba7d\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.quantifier.regexp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#569cd6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.character\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d7ba7d\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.character.escape\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#C8C8C8\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.label\\\\\\\"}],\\\\\\\"semanticTokenRules\\\\\\\":[{\\\\\\\"_selector\\\\\\\":\\\\\\\"newOperator\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#d4d4d4\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"stringLiteral\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"customLiteral\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#d4d4d4\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"numberLiteral\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#b5cea8\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"newOperator\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#c586c0\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"stringLiteral\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#ce9178\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"customLiteral\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#dcdcaa\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"numberLiteral\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#b5cea8\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null}}],\\\\\\\"extensionData\\\\\\\":{\\\\\\\"_extensionId\\\\\\\":\\\\\\\"vscode.theme-defaults\\\\\\\",\\\\\\\"_extensionIsBuiltin\\\\\\\":true,\\\\\\\"_extensionName\\\\\\\":\\\\\\\"theme-defaults\\\\\\\",\\\\\\\"_extensionPublisher\\\\\\\":\\\\\\\"vscode\\\\\\\"},\\\\\\\"themeSemanticHighlighting\\\\\\\":true,\\\\\\\"colorMap\\\\\\\":{\\\\\\\"editor.background\\\\\\\":\\\\\\\"#1e1e1e\\\\\\\",\\\\\\\"editor.foreground\\\\\\\":\\\\\\\"#d4d4d4\\\\\\\",\\\\\\\"editor.inactiveSelectionBackground\\\\\\\":\\\\\\\"#3a3d41\\\\\\\",\\\\\\\"editorIndentGuide.background\\\\\\\":\\\\\\\"#404040\\\\\\\",\\\\\\\"editorIndentGuide.activeBackground\\\\\\\":\\\\\\\"#707070\\\\\\\",\\\\\\\"editor.selectionHighlightBackground\\\\\\\":\\\\\\\"#add6ff26\\\\\\\",\\\\\\\"list.dropBackground\\\\\\\":\\\\\\\"#383b3d\\\\\\\",\\\\\\\"activityBarBadge.background\\\\\\\":\\\\\\\"#007acc\\\\\\\",\\\\\\\"sideBarTitle.foreground\\\\\\\":\\\\\\\"#bbbbbb\\\\\\\",\\\\\\\"input.placeholderForeground\\\\\\\":\\\\\\\"#a6a6a6\\\\\\\",\\\\\\\"menu.background\\\\\\\":\\\\\\\"#252526\\\\\\\",\\\\\\\"menu.foreground\\\\\\\":\\\\\\\"#cccccc\\\\\\\",\\\\\\\"statusBarItem.remoteForeground\\\\\\\":\\\\\\\"#ffffff\\\\\\\",\\\\\\\"statusBarItem.remoteBackground\\\\\\\":\\\\\\\"#16825d\\\\\\\",\\\\\\\"ports.iconRunningProcessForeground\\\\\\\":\\\\\\\"#369432\\\\\\\",\\\\\\\"sideBarSectionHeader.background\\\\\\\":\\\\\\\"#00000000\\\\\\\",\\\\\\\"sideBarSectionHeader.border\\\\\\\":\\\\\\\"#cccccc33\\\\\\\",\\\\\\\"tab.lastPinnedBorder\\\\\\\":\\\\\\\"#cccccc33\\\\\\\",\\\\\\\"list.activeSelectionIconForeground\\\\\\\":\\\\\\\"#ffffff\\\\\\\"},\\\\\\\"watch\\\\\\\":false}\\\"},\\\"workbench.panel.repl.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.repl.view\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.panel.pinnedPanels\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.markers\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Problems\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":0,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.output\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Output\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":1,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"terminal\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Terminal\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":3,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"refactorPreview\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Refactor Preview\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.repl\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Debug Console\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true}]\\\"},\\\"ces/skipSurvey\\\":{\\\"version\\\":1,\\\"value\\\":\\\"1.60.2\\\"},\\\"extensionsAssistant/languagePackSuggestionIgnore\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"en\\\\\\\"]\\\"},\\\"memento/gettingStartedService\\\":{\\\"version\\\":1,\\\"value\\\":\\\"{\\\\\\\"pickColorTheme\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"findLanguageExtensions\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"commandPaletteTask\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"pickAFolderTask-Other\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"settingsSyncWeb\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"settingsSync\\\\\\\":{\\\\\\\"done\\\\\\\":true}}\\\"},\\\"workbench.welcomePage.hiddenCategories\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"Setup\\\\\\\"]\\\"},\\\"commandPalette.mru.cache\\\":{\\\"version\\\":1,\\\"value\\\":\\\"{\\\\\\\"usesLRU\\\\\\\":true,\\\\\\\"entries\\\\\\\":[{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.extensions.action.installExtensions\\\\\\\",\\\\\\\"value\\\\\\\":1},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.updateSettings\\\\\\\",\\\\\\\"value\\\\\\\":3},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.action.configureLocale\\\\\\\",\\\\\\\"value\\\\\\\":4},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.HowSettings\\\\\\\",\\\\\\\"value\\\\\\\":6},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.userDataSync.actions.help\\\\\\\",\\\\\\\"value\\\\\\\":7},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.downloadSettings\\\\\\\",\\\\\\\"value\\\\\\\":8}]}\\\"},\\\"commandPalette.mru.counter\\\":{\\\"version\\\":1,\\\"value\\\":\\\"9\\\"},\\\"workbench.view.extensions.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.installed.empty\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.workspaceRecommendations\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.popular\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.otherRecommendations\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.recommendedList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.enabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.disabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.marketplace\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchInstalled\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchEnabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchDisabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchOutdated\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchBuiltin\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchWorkspaceUnsupported\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.builtinFeatureExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.builtinThemeExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.builtinProgrammingLanguageExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.untrustedUnsupportedExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.untrustedPartiallySupportedExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.virtualUnsupportedExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.virtualPartiallySupportedExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"}}}\"}"}
{"ref":"77dc7ea4-f2b5-456a-9d1f-75729497cfdc","content":"{\"version\":2,\"machineId\":\"a5182fef-4a38-453c-9d44-4b99e71e35dc\",\"content\":\"{\\\"windows\\\":\\\"// Empty\\\"}\"}","platformSpecific":true}
{"ref":"867e332f-04b0-4a55-bce9-1e57357eb80d","content":"{\"version\":2,\"machineId\":\"a5182fef-4a38-453c-9d44-4b99e71e35dc\",\"content\":\"{\\\"settings\\\":\\\"{\\\\n \\\\\\\"html.format.wrapLineLength\\\\\\\": 80,\\\\n \\\\\\\"editor.suggestOnTriggerCharacters\\\\\\\": true,\\\\n \\\\\\\"editor.quickSuggestions\\\\\\\": {\\\\n \\\\\\\"other\\\\\\\": true,\\\\n \\\\\\\"comments\\\\\\\": true,\\\\n \\\\\\\"strings\\\\\\\": true\\\\n },\\\\n \\\\\\\"editor.parameterHints.enabled\\\\\\\": true,\\\\n \\\\\\\"editor.fontSize\\\\\\\": 28,\\\\n \\\\\\\"editor.multiCursorModifier\\\\\\\": \\\\\\\"ctrlCmd\\\\\\\",\\\\n \\\\\\\"editor.formatOnPaste\\\\\\\": false,\\\\n \\\\\\\"editor.insertSpaces\\\\\\\": true,\\\\n \\\\\\\"explorer.confirmDelete\\\\\\\": false,\\\\n \\\\\\\"workbench.startupEditor\\\\\\\": \\\\\\\"newUntitledFile\\\\\\\",\\\\n \\\\\\\"terminal.integrated.fontSize\\\\\\\": 24,\\\\n \\\\\\\"emmet.triggerExpansionOnTab\\\\\\\": true,\\\\n \\\\\\\"terminal.integrated.copyOnSelection\\\\\\\": true,\\\\n \\\\\\\"terminal.integrated.cursorBlinking\\\\\\\": true,\\\\n \\\\\\\"terminal.external.windowsExec\\\\\\\": \\\\\\\"C:\\\\\\\\\\\\\\\\WINDOWS\\\\\\\\\\\\\\\\System32\\\\\\\\\\\\\\\\cmd.exe\\\\\\\",\\\\n \\\\\\\"emmet.showSuggestionsAsSnippets\\\\\\\": true,\\\\n \\\\\\\"emmet.showExpandedAbbreviation\\\\\\\": \\\\\\\"never\\\\\\\",\\\\n \\\\\\\"files.associations\\\\\\\": {\\\\n \\\\\\\"*.js\\\\\\\": \\\\\\\"javascript\\\\\\\"\\\\n },\\\\n \\\\\\\"editor.tabSize\\\\\\\": 2,\\\\n \\\\\\\"emmet.excludeLanguages\\\\\\\": [],\\\\n \\\\\\\"javascript.updateImportsOnFileMove.enabled\\\\\\\": \\\\\\\"always\\\\\\\",\\\\n \\\\\\\"diffEditor.renderSideBySide\\\\\\\": false,\\\\n \\\\\\\"window.menuBarVisibility\\\\\\\": \\\\\\\"toggle\\\\\\\",\\\\n \\\\\\\"editor.renderWhitespace\\\\\\\": \\\\\\\"none\\\\\\\",\\\\n \\\\\\\"editor.renderControlCharacters\\\\\\\": false,\\\\n \\\\\\\"editor.tokenColorCustomizations\\\\\\\": {\\\\n \\\\\\\"textMateRules\\\\\\\": [\\\\n {\\\\n \\\\\\\"scope\\\\\\\": \\\\\\\"comment\\\\\\\",\\\\n \\\\\\\"settings\\\\\\\": {\\\\n \\\\\\\"fontStyle\\\\\\\": \\\\\\\"\\\\\\\"\\\\n }\\\\n }\\\\n ]\\\\n },\\\\n \\\\\\\"workbench.iconTheme\\\\\\\": \\\\\\\"vscode-great-icons\\\\\\\",\\\\n \\\\\\\"editor.foldingStrategy\\\\\\\": \\\\\\\"auto\\\\\\\",\\\\n \\\\\\\"explorer.confirmDragAndDrop\\\\\\\": false,\\\\n \\\\\\\"editor.rulers\\\\\\\": [\\\\n 80\\\\n ],\\\\n \\\\\\\"liveServer.settings.donotShowInfoMsg\\\\\\\": true,\\\\n \\\\\\\"liveServer.settings.donotVerifyTags\\\\\\\": true,\\\\n \\\\\\\"breadcrumbs.enabled\\\\\\\": false,\\\\n \\\\\\\"breadcrumbs.filePath\\\\\\\": \\\\\\\"off\\\\\\\",\\\\n \\\\\\\"editor.detectIndentation\\\\\\\": false,\\\\n \\\\\\\"extensions.ignoreRecommendations\\\\\\\": true,\\\\n \\\\\\\"[markdown]\\\\\\\": {\\\\n \\\\\\\"editor.wordWrapColumn\\\\\\\": 80,\\\\n \\\\\\\"editor.wordWrap\\\\\\\": \\\\\\\"on\\\\\\\",\\\\n \\\\\\\"editor.quickSuggestions\\\\\\\": false\\\\n },\\\\n \\\\\\\"[HTML]\\\\\\\": {\\\\n \\\\\\\"editor.wordWrapColumn\\\\\\\": 80,\\\\n \\\\\\\"editor.wordWrap\\\\\\\": \\\\\\\"on\\\\\\\",\\\\n \\\\\\\"editor.quickSuggestions\\\\\\\": false\\\\n },\\\\n \\\\\\\"sync.gist\\\\\\\": \\\\\\\"e8e275e8f0baaad78c2aff726cc59a33\\\\\\\",\\\\n \\\\\\\"workbench.activityBar.visible\\\\\\\": false,\\\\n \\\\\\\"terminal.integrated.tabs.hideCondition\\\\\\\": \\\\\\\"never\\\\\\\",\\\\n \\\\\\\"editor.inlineSuggest.enabled\\\\\\\": true,\\\\n \\\\\\\"terminal.integrated.shell.windows\\\\\\\": \\\\\\\"C:\\\\\\\\\\\\\\\\WINDOWS\\\\\\\\\\\\\\\\System32\\\\\\\\\\\\\\\\cmd.exe\\\\\\\",\\\\n \\\\\\\"terminal.integrated.shellArgs.windows\\\\\\\": [\\\\n \\\\\\\"/K\\\\\\\",\\\\n \\\\\\\"C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\roger\\\\\\\\\\\\\\\\cmder\\\\\\\\\\\\\\\\vscode.bat\\\\\\\"\\\\n ],\\\\n \\\\\\\"terminal.integrated.defaultProfile.windows\\\\\\\": \\\\\\\"Ubuntu (WSL)\\\\\\\",\\\\n // \\\\\\\"editor.wordWrap\\\\\\\": \\\\\\\"wordWrapColumn\\\\\\\",\\\\n}\\\"}\"}"}
{"ref":"766f9605-efad-4d01-978a-637047778a34","content":"{\"version\":1,\"machineId\":\"a5182fef-4a38-453c-9d44-4b99e71e35dc\",\"content\":\"{\\\"css.json\\\":\\\"{\\\\n\\\\t// Place your snippets for css here. Each snippet is defined under a snippet name and has a prefix, body and \\\\n\\\\t// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:\\\\n\\\\t// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the \\\\n\\\\t// same ids are connected.\\\\n\\\\t// Example:\\\\n\\\\t// \\\\\\\"Print to console\\\\\\\": {\\\\n\\\\t// \\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"log\\\\\\\",\\\\n\\\\t// \\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t// \\\\t\\\\t\\\\\\\"console.log('$1');\\\\\\\",\\\\n\\\\t// \\\\t\\\\t\\\\\\\"$2\\\\\\\"\\\\n\\\\t// \\\\t],\\\\n\\\\t// \\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Log output to console\\\\\\\"\\\\n // }\\\\n}\\\\n\\\",\\\"html.json\\\":\\\"{\\\\n\\\\t// Place your snippets for html here. Each snippet is defined under a snippet name and has a prefix, body and \\\\n\\\\t// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:\\\\n\\\\t// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the \\\\n\\\\t// same ids are connected.\\\\n\\\\t// Example:\\\\n\\\\t// \\\\\\\"Print to console\\\\\\\": {\\\\n\\\\t// \\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"log\\\\\\\",\\\\n\\\\t// \\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t// \\\\t\\\\t\\\\\\\"console.log('$1');\\\\\\\",\\\\n\\\\t// \\\\t\\\\t\\\\\\\"$2\\\\\\\"\\\\n\\\\t// \\\\t],\\\\n\\\\t// \\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Log output to console\\\\\\\"\\\\n // }\\\\n \\\\n \\\\\\\"create a div with container class\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"dcc\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"<div class=\\\\\\\\\\\\\\\"container\\\\\\\\\\\\\\\"></div>\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"create a div with container class\\\\\\\"\\\\n },\\\\n\\\\n \\\\\\\"create a EJS tag\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"ejs\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"<%= ${1:tagName} %>\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"create a EJS tag\\\\\\\"\\\\n }\\\\n}\\\\n\\\",\\\"javascript.json\\\":\\\"{\\\\n\\\\t// Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and \\\\n\\\\t// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:\\\\n\\\\t// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the \\\\n\\\\t// same ids are connected.\\\\n\\\\t// Example:\\\\n\\\\t// \\\\\\\"Print to console\\\\\\\": {\\\\n\\\\t// \\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"log\\\\\\\",\\\\n\\\\t// \\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t// \\\\t\\\\t\\\\\\\"console.log('$1');\\\\\\\",\\\\n\\\\t// \\\\t\\\\t\\\\\\\"$2\\\\\\\"\\\\n\\\\t// \\\\t],\\\\n\\\\t// \\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Log output to console\\\\\\\"\\\\n\\\\t// }\\\\n\\\\n // Pure JS --------------------------------------------------------\\\\n\\\\n\\\\t\\\\\\\"Creates an html tag inside template string\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"tst\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"`<${1:tagname}>$2</${1:tagname}>`\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"Creates an html tag inside template string\\\\\\\"\\\\n },\\\\n \\\\n \\\\\\\"const\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"c\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"const ${constName} = ${constValue}\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Create a const declaration\\\\\\\"\\\\n\\\\t},\\\\n\\\\n\\\\t\\\\\\\"let\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"l\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"let ${letName} = ${letValue}\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Create a let declaration\\\\\\\"\\\\n\\\\t},\\\\n\\\\n\\\\t\\\\\\\"Print to console\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"log\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"console.log(${value})\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Log output to console\\\\\\\"\\\\n\\\\t},\\\\n\\\\n\\\\t\\\\\\\"ES5 Function\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"f\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"function ${functionName} (${params}) {\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\t\\\\\\\"\\\\\\\\t${functionBody}\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"}\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Create an ES5 function declaration\\\\\\\"\\\\n\\\\t},\\\\n\\\\n\\\\t\\\\\\\"Anonimous Arrow Function\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"af\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"${params} => {\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\t\\\\\\\"\\\\\\\\t${functionBody}\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"}\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Create an Anonimous Arrow Function declaration\\\\\\\"\\\\n\\\\t},\\\\n\\\\t\\\\n\\\\t\\\\\\\"Named Arrow Function (assigned to a const)\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"naf\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"const ${constName} = ${param} => {\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\t\\\\\\\"\\\\\\\\t${functionBody}\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"}\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Create an Named Arrow Function\\\\\\\"\\\\n\\\\t},\\\\n\\\\t\\\\n\\\\t\\\\\\\"Template String\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"ts\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"`${templateStringText}`\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Create a Template String\\\\\\\"\\\\n\\\\t},\\\\n\\\\t\\\\n\\\\t\\\\\\\"JS block comment\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"bc\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"/* ${comment} */\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Create a JavaScript block comment\\\\\\\"\\\\n\\\\t},\\\\n\\\\t\\\\n\\\\t\\\\\\\"Show a template string in console\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"logts\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"console.log(`${string}`)\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Create a template string within a console.log() method\\\\\\\"\\\\n\\\\t},\\\\n\\\\t\\\\n\\\\t\\\\\\\"Const + template string\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"cts\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"const ${constName} = `${string}`\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Assign a template string to a const\\\\\\\"\\\\n\\\\t},\\\\n\\\\t\\\\n\\\\t\\\\\\\"Return a template string\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"rts\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"return `${string}`\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Create a return statement wich returns a template string\\\\\\\"\\\\n\\\\t},\\\\n\\\\n\\\\t\\\\\\\"HTML Inline Code\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"hic\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"<${code}>$1</${code}>\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Declares a HTML Inline Code\\\\\\\"\\\\n\\\\t},\\\\n\\\\t\\\\n\\\\t\\\\\\\"Return Statement\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"r\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"return ${value}\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Create a return statement\\\\\\\"\\\\n },\\\\n\\\\n \\\\\\\"Create a JS Module to be exported\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"jsm\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"'use strict'\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"const ${1:moduleName} = () => {\\\\\\\",\\\\n \\\\\\\" ${2:moduleBody}\\\\\\\",\\\\n \\\\\\\"}\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"export default ${1:moduleName}\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"Create a JS Module to be exported\\\\\\\"\\\\n },\\\\n\\\\n \\\\\\\"create an export default declaration\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"ed\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"export default ${1:moduleName}\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"create an export default declaration\\\\\\\"\\\\n },\\\\n\\\\n \\\\\\\"Assigns & invoke a document.querySelector() method\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"dqs\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"const ${1:elementName} = document.querySelector('${2:element selector}')\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"invoke a document.querySelector() method\\\\\\\"\\\\n },\\\\n\\\\n \\\\\\\"create an es6 module import \\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"im\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"import ${1:method} from '${2:module}'\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"create an es6 module import \\\\\\\"\\\\n },\\\\n \\\\n // Jest --------------------------------------------------------\\\\n\\\\n \\\\\\\"new it statement\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"it\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"it('${1:description}', () => {\\\\\\\",\\\\n \\\\\\\" const before = ${2:value}\\\\\\\",\\\\n \\\\\\\" const after = ${3:value}\\\\\\\",\\\\n \\\\\\\" expect(before).toBe$4\\\\\\\",\\\\n \\\\\\\"})\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"new it statement\\\\\\\"\\\\n },\\\\n\\\\n \\\\\\\"describe: create scope for tests\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"des\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"describe('\\\\\\\\\\\\\\\\n${1:description}', () => {\\\\\\\",\\\\n \\\\\\\" ${2:tests here}\\\\\\\",\\\\n \\\\\\\"})\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"describe: create scope for tests\\\\\\\"\\\\n },\\\\n\\\\n \\\\\\\"import expect from chai\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"ie\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"import { expect } from 'chai'\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"import expect from chai\\\\\\\"\\\\n },\\\\n\\\\n \\\\\\\"create test template\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"test\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"'use strict'\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"import ${1:method} from '${2:module}'\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"it('${3:description}', () => {\\\\\\\",\\\\n \\\\\\\" ${4:descriptionOrIt}\\\\\\\",\\\\n \\\\\\\"})\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"create test template\\\\\\\"\\\\n },\\\\n\\\\n // React --------------------------------------------------------\\\\n\\\\n \\\\\\\"Create a React Component to be exported\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"rc\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"'use strict'\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"import React from 'react'\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"const ${1:ComponentName} = () => (\\\\\\\",\\\\n \\\\\\\" ${2:component body}\\\\\\\",\\\\n \\\\\\\")\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"export default ${1:ComponentName}\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"Create a React Component to be exported\\\\\\\"\\\\n },\\\\n\\\\n \\\\\\\"className\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"cn\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"className={style['${1:class-name}']}\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"className\\\\\\\"\\\\n },\\\\n\\\\n \\\\\\\"className='className'\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"cns\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"className='${1:className}'\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"className with string\\\\\\\"\\\\n },\\\\n\\\\n // jQuery --------------------------------------------------------\\\\n\\\\n \\\\\\\"jQuery: Creates a const & assign a querySelectorAll\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"qsa\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"const ${1:constName} = $(' ${2:selector} ')\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"jQuery: Creates a const & assign a querySelectorAll\\\\\\\"\\\\n }\\\\n}\\\\n\\\",\\\"less.json\\\":\\\"{\\\\n\\\\t// Place your snippets for less here. Each snippet is defined under a snippet name and has a prefix, body and \\\\n\\\\t// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:\\\\n\\\\t// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the \\\\n\\\\t// same ids are connected.\\\\n\\\\t// Example:\\\\n\\\\t// \\\\\\\"Print to console\\\\\\\": {\\\\n\\\\t// \\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"log\\\\\\\",\\\\n\\\\t// \\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t// \\\\t\\\\t\\\\\\\"console.log('$1');\\\\\\\",\\\\n\\\\t// \\\\t\\\\t\\\\\\\"$2\\\\\\\"\\\\n\\\\t// \\\\t],\\\\n\\\\t// \\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Log output to console\\\\\\\"\\\\n // }\\\\n\\\\n \\\\\\\"Create a Less Variable\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"lv\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"@${1:var-name}: ${2:value};\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"Create a Less Variable\\\\\\\"\\\\n },\\\\n\\\\n \\\\\\\"Create a Less Mixin\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"lm\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\".my-mixin(${1:parameter?}) {\\\\\\\",\\\\n \\\\\\\" ${2:properties}\\\\\\\",\\\\n \\\\\\\"}\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"Create a Less Mixin\\\\\\\"\\\\n },\\\\n\\\\n \\\\\\\"less import\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"li\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"@import \\\\\\\\\\\\\\\"${1:path}\\\\\\\\\\\\\\\";\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"less import\\\\\\\"\\\\n }\\\\n}\\\\n\\\",\\\"markdown.json\\\":\\\"{\\\\n\\\\t// Place your snippets for markdown here. Each snippet is defined under a snippet name and has a prefix, body and \\\\n\\\\t// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:\\\\n\\\\t// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the \\\\n\\\\t// same ids are connected.\\\\n\\\\t// Example:\\\\n\\\\t// \\\\\\\"Print to console\\\\\\\": {\\\\n\\\\t// \\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"log\\\\\\\",\\\\n\\\\t// \\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t// \\\\t\\\\t\\\\\\\"console.log('$1');\\\\\\\",\\\\n\\\\t// \\\\t\\\\t\\\\\\\"$2\\\\\\\"\\\\n\\\\t// \\\\t],\\\\n\\\\t// \\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Log output to console\\\\\\\"\\\\n // }\\\\n \\\\n // Análises CJRM ---------------------------------------------\\\\n\\\\n \\\\\\\"aplications criterions\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"ac\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"## Boas decisões\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"## Usabilidade\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"## Organização de código\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"### Local de declaração de variáveis\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"### Nomes de variáveis e funções\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"### Linhas em branco\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"### Refatoração\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"## Lógica\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"aplications criterions\\\\\\\"\\\\n },\\\\n\\\\n // Content Review ---------------------------------------------\\\\n\\\\n \\\\\\\"Não pode faltar na aula\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"npf\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"<!-- \\\\\\\",\\\\n \\\\\\\"Vídeo nutella que mais gerou resultado semana passada: \\\\\\\",\\\\n \\\\\\\"- Essa sacada vai te poupar de muita dor de cabeça com arrow functions em aplicações web com JS puro \\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"Levar à Roma\\\\\\\",\\\\n \\\\\\\"Falar com audiência sobre aulas complementares\\\\\\\",\\\\n \\\\\\\"Revisar\\\\\\\",\\\\n \\\\\\\"-->\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"Não pode faltar na aula\\\\\\\"\\\\n },\\\\n \\\\n \\\\\\\"Details of YouTube Videos\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"yt\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"## Tópicos / tags\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"## Título\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"## Cover\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"## Descrição\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"## Comentário fixado\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"## Sugestão nutella de hj - descrição\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"https://youtu.be/LINK_AQUI\\\\\\\",\\\\n \\\\\\\"C:\\\\\\\\\\\\\\\\Users\\\\\\\\\\\\\\\\roger\\\\\\\\\\\\\\\\Downloads\\\\\\\\\\\\\\\\my-videos\\\\\\\\\\\\\\\\nutella\\\\\\\\\\\\\\\\LINK-AQUI\\\\\\\",\\\\n \\\\\\\"(publicado há 3 meses)\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"=> alguma observação aqui\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"##\\\\\\\",\\\\n \\\\\\\"\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"Details of content Videos\\\\\\\"\\\\n },\\\\n\\\\n\\\\t\\\\\\\"Slide Image\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"si\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"<!-- slide-0${1:number} -->\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Slide Image\\\\\\\"\\\\n\\\\t},\\\\n\\\\n\\\\t\\\\\\\"Parte só para...\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"psp\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"## Falar: parte só pra ${1:publico}\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"## Falar: fim da parte só pra ${1:publico}\\\\\\\",\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Partes específicas para públicos diferentes\\\\\\\"\\\\n\\\\t},\\\\n\\\\n\\\\t\\\\\\\"Script Code\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"sc\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"<!-- code-0${1:number} -->\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Script Code\\\\\\\"\\\\n\\\\t},\\\\n\\\\n // Code Formatting ---------------------------------------------\\\\n\\\\n \\\\\\\"create a `fetch()` code text\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"fc\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"`fetch()`\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Declares a `fetch()` code text\\\\\\\"\\\\n\\\\t},\\\\n\\\\n \\\\\\\"Inline Code\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"ic\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"`${code}`\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Declares a Inline Code\\\\\\\"\\\\n\\\\t},\\\\n\\\\n // JS --------------------------------------------------------\\\\n\\\\n\\\\t\\\\\\\"Declares a JavaScript Block Code\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"jsc\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"```javascript\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"$1\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"```\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Declares a JavaScript Block Code\\\\\\\"\\\\n },\\\\n\\\\n\\\\t\\\\\\\"Declares a json Block Code\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"jsonc\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"```json\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"$1\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"```\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Declares a json Block Code\\\\\\\"\\\\n },\\\\n\\\\n \\\\\\\"alias h2\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"al\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"## Alias: `${1:alias}`\\\\\\\"\\\\n ],\\\\n \\\\\\\"description\\\\\\\": \\\\\\\"alias h2\\\\\\\"\\\\n\\\\t},\\\\n\\\\t\\\\n // JS Tests text formatting ------------------------------------\\\\n\\\\n\\\\t\\\\\\\"TDD Formatting Text\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"tdd\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"### Testando se `${1:code}` ${2:blablabla}\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"```javascript\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"${3:TDD code}\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"```\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"- **Assistir o teste falhar**\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"#### Com a menor implementação possível, fazendo o teste passar\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"```javascript\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"${4:Implementation code}\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"```\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"$5\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"TDD Formatting Text\\\\\\\"\\\\n\\\\t},\\\\n \\\\n // HTML --------------------------------------------------------\\\\n\\\\t\\\\n\\\\t\\\\\\\"HTML Code\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"hc\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"```html\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"$1\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"```\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Declares a HTML Block Code\\\\\\\"\\\\n },\\\\n\\\\n \\\\\\\"HTML Inline Code\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"hic\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"`<${code}>`\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Declares a HTML Inline Code\\\\\\\"\\\\n },\\\\n \\\\n \\\\\\\"h1 + Code\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"h1c\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"# `${code}` - ${heading}\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Declares a h1 with Code at beginning\\\\\\\"\\\\n\\\\t},\\\\n\\\\t\\\\n\\\\t\\\\\\\"h2 + Code\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"h2c\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"## `${code}` - ${heading}\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Declares a h2 with Code at beginning\\\\\\\"\\\\n\\\\t},\\\\n\\\\t\\\\n\\\\t\\\\\\\"li + Code\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"lic\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"- `${code}`\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Declares a li with Code\\\\\\\"\\\\n\\\\t},\\\\n \\\\n // CSS --------------------------------------------------------\\\\n\\\\n\\\\t\\\\\\\"CSS Code\\\\\\\": {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"cc\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"```css\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"$1\\\\\\\",\\\\n\\\\t\\\\t\\\\t\\\\\\\"```\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Declares a CSS Block Code\\\\\\\"\\\\n\\\\t},\\\\n}\\\\n\\\"}\"}"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment