From b632a5ab537069e22b976b097b34b9879be18168 Mon Sep 17 00:00:00 2001 From: Nate Sesti <33237525+sestinj@users.noreply.github.com> Date: Mon, 4 Sep 2023 10:38:22 -0700 Subject: Integrate LSP for debugging (#450) * headless IDE subclass * finish headless_ide methods * feat: :sparkles: headless mode running with config flag * work on debugging * python lsp support * more lsp+debugging work * refactor: :safety_vest: safely load LSP * test: :white_check_mark: testing steps in headless mode * refactor: :clown_face: cleanup subprocesses * fix: :bug: handle data: [DONE] from Together --- .vscode/launch.json | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to '.vscode') diff --git a/.vscode/launch.json b/.vscode/launch.json index 08061d13..9ccf4ce7 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -36,6 +36,17 @@ // Does it need a build task? // What about a watch task? - type errors? }, + { + "name": "Headless", + "type": "python", + "request": "launch", + "module": "continuedev.headless", + "args": ["--config", "continuedev/config.py"], + "justMyCode": false, + "subProcess": false + // Does it need a build task? + // What about a watch task? - type errors? + }, { "name": "Extension (VSCode)", "type": "extensionHost", -- cgit v1.2.3-70-g09d2