mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00

They are needed very often but it's hard to remember. I thought it'd be useful to just copy that to /.vscode and edit that. Usage: cp -r misc/.vscode .vscode Don't symlink it because you'd edit it but not want to commit it.
13 lines
307 B
JSON
13 lines
307 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "lldb",
|
|
"name": "Run ruby",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/ruby",
|
|
"args": ["-e", "p 1"],
|
|
"preLaunchTask": "${defaultBuildTask}"
|
|
}
|
|
]
|
|
}
|