VSCはWindows, macOS, Linuxで動くマルチプラットフォームのエディタです。
sftp.jsonにはパスワードなどの機密情報が含まれるため、.gitignoreに追加してGitにプッシュしないようにすること
{
"version": "2.0.0",
"tasks": [
{
"label": "WZ editor",
"type": "shell",
"command": "D:/App/App/Editor/WZEditor64/WZEditor.exe",
"args": [
"${file}",
"/j${line}"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "VSCode",
"type": "shell",
"command": "code",
"args": [
"-n",
"${file}",
"--goto",
"${file}:${line}:${column}"
],
"problemMatcher": []
}
]
}