VSCodeでデバッガを起動したい時に、毎回.vscode/launch.json
の追加をしていた。これ面倒だなと思っていたのだが、普通にsettings.jsonのlaunchというキー名で全ワークスペースで使うdebug launch configurationの設定ができた。
例えばRubyのデバッグのためにvscode-rdbgを使っていた場合、.vscode/settings.json
に次のように設定しておくと全ての場所でVSCode上でRubyのデバッグができる。便利ですね。
"launch": { "version": "0.2.0", "configurations": [ { "type": "rdbg", "name": "Debug current file with rdbg", "request": "launch", "script": "${file}", "args": [], "askParameters": true }, { "type": "rdbg", "name": "Debug current test with rdbg", "request": "launch", "command": "rspec", "script": "${file}", "args": [], "askParameters": false } ] }
参考