From 6e9858080dd1c98c934d33ff4313a1e4036be478 Mon Sep 17 00:00:00 2001 From: Fijxu Date: Tue, 20 May 2025 16:41:52 -0400 Subject: [PATCH] update launch.json --- .vscode/launch.json | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index f5261afe..34ab00fd 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,7 +2,7 @@ "version": "0.2.0", "configurations": [ { - "type": "lldb-dap", + "type": "lldb", "request": "launch", "name": "crystal: debug current file (lldb)", // "preLaunchTask": "crystal: build current file (debug)", @@ -12,18 +12,6 @@ "initCommands": [ "command script import ${workspaceFolder}/crystal_formatters.py" ] - }, - { - "type": "gcc", - "request": "launch", - "name": "crystal: debug current file (gdb)", - // "preLaunchTask": "crystal: build current file (debug)", - "program": "${workspaceFolder}/invidious", - "args": [], - "cwd": "${workspaceFolder}", - "initCommands": [ - "command script import ${workspaceFolder}/crystal_formatters_gdb.py" - ] } ] }