VS Codeの拡張機能「Code Runner」にコマンドを追加する方法
解決したいこと
https://seiseiengineering.com/atcoder%E3%81%AEc%E7%92%B0%E5%A2%83%E6%A7%8B%E7%AF%89-vscodewsl2%E3%81%A7%E5%BF%AB%E9%81%A9%E3%81%AB%EF%BC%81/
こちらのサイトを参考にCode Runnerにコマンドを追加を追加しようとしましたが、エラーが出てしまいます。jsonに詳しい方、code runner経験者の方、よろしくお願いします、
発生している問題・エラー
End of file expected.
該当するソースコード
{
"python.defaultInterpreterPath": "C:\\Users\\MyUserName{Fake}\\AppData\\Local\\Programs\\Python\\Python311\\python.exe",
"code-runner.runInTerminal": true,
"cmake.configureOnOpen": true,
"debug.onTaskErrors": "debugAnyway"
}
{
"command-runner.commands": {
"oj test": "oj test -c ${fileDirname}/a.out -d ${fileDirname}/tests",
"acc submit": "cd ${fileDirname} && acc submit ${file} || cd ../../",
}
}
0