summaryrefslogtreecommitdiff
path: root/misc/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to 'misc/.vscode/launch.json')
-rw-r--r--misc/.vscode/launch.json13
1 files changed, 13 insertions, 0 deletions
diff --git a/misc/.vscode/launch.json b/misc/.vscode/launch.json
new file mode 100644
index 0000000000..51bfef09d7
--- /dev/null
+++ b/misc/.vscode/launch.json
@@ -0,0 +1,13 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "type": "lldb",
+ "name": "Run ruby",
+ "request": "launch",
+ "program": "${workspaceFolder}/ruby",
+ "args": ["test.rb"],
+ "preLaunchTask": "${defaultBuildTask}"
+ }
+ ]
+}