1つのタブに相当するスペースの数
"editor.tabSize": 2,
エディターで制御文字を表示する必要があるかどうかを制御します
"editor.renderControlCharacters": true,
エディターで空白文字を表示する方法を制御します
"editor.renderWhitespace": "all",
自動整形(タイプ時, 貼り付け時, 保存時)
"editor.formatOnType": false,
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
既定の文字セットエンコーディング
"files.encoding": "utf8bom",
ファイルを開くときに文字セットエンコーディングを推測する
"files.autoGuessEncoding": true,
匿名関数の関数キーワードの後のスペース処理を定義します
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
pandoc .html output option template that you would like to use
"pandoc.htmlOptString": "-s -t html5 -c <CSSファイル名> --toc",
PlantUML エクスポート先フォルダ
"plantuml.exportOutDirName": ".",
PlantUML エクスポートフォーマット
"plantuml.exportFormat": "svg",
Markdown-lint
"markdownlint.config": {
"no-trailing-spaces": {
"br_spaces": 2
},
"line-length": false,
"no-inline-html": {
"allowed_elements": [
"div",
"span",
"section",
]
},
},
[
{ /* タスクの実行 */
"key": "shift+alt+t",
"command": "workbench.action.tasks.runTask"
},
{ /* 再帰的に折りたたむ */
"key": "ctrl+shift+alt+[",
"command": "editor.foldRecursively",
"when": "editorTextFocus"
},
{ /* 再帰的に展開する */
"key": "ctrl+shift+alt+]",
"command": "editor.unfoldRecursively",
"when": "editorTextFocus"
},
{ /* 対応する括弧へジャンプ (ctrl+shift+]) */
"key": "ctrl+shift+oem_6",
"command": "editor.action.jumpToBracket",
"when": "editorTextFocus"
},
]
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared"
},
"tasks": [
{
"label": "compile",
"type": "shell",
"group": "test",
"command": "perl -c ${file}",
"problemMatcher": []
},
{
"label": "build",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"command": "perl build/build.pl",
"problemMatcher": []
}
]
}
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"suppressTaskName": true,
"showOutput": "silent",
"tasks": [
{
"taskName": "compile",
"command": "perl",
"args": [
"-c",
"${file}"
]
},
{
"taskName": "perltidy",
"command": "perltidy",
"args": [
"${file}"
],
"isShellCommand": true
},
{
"taskName": "delete-bak",
"command": "del",
"args": [
"*.bak"
],
"isShellCommand": true
}
]
}
{
"recommendations": [
"donjayamanne.githistory",
"DotJoshJohnson.xml",
"DougFinke.vscode-pandoc",
"GrapeCity.gc-excelviewer",
"ionutvmi.reg",
"jebbs.plantuml",
"joelday.docthis",
"michelemelluso.code-beautifier",
"mortenhenriksen.perl-debug",
"ms-vscode.PowerShell",
"sfodje.perltidy",
]
}
%UserProfile%/.vscode/extensions
%UserProfile%/Documents/WindowsPowerShell/Microsoft.VSCode_profile.ps1
cd %UserProfile%/Documents/WindowsPowerShell
mklink Microsoft.VSCode_profile.ps1 Microsoft.PowerShell_profile.ps1
https://marketplace.visualstudio.com/_apis/public/gallery/publishers/
${publisher}/vsextensions/${extension}/${version}/vspackage
https://marketplace.visualstudio.com/items/${publisher}.${extension}/changelog
Right click on Windows folder and open with Visual Studio Code - thisDaveJ
Build an Amazing Markdown Editor Using Visual Studio Code and Pandoc - thisDaveJ
Visual Studio Code always asking for git credentials - Stack Overflow
This version of the page was edited by TakeAsh at 2018-09-06 22:38:10. View the most recent version.