vscode-clojure-debug
vscode-clojure-debug copied to clipboard
Starting REPL without debugger can't refresh code
trafficstars
Environment
- VSCode Version: 1.14.2
- OS Version: macOS 10.12.6
- Clojure Extension Version: 1.2.0
Description
Launching REPL with the following launch.json file
{ "version": "0.2.0", "configurations": [ { "commandLine": [ "$lein_path", "with-profile", "+debug-repl", "repl", ":start", ":port", "5555" ], "name": "Clojure-Debug", "type": "clojure", "request": "launch", "debug": false, "console":"integratedTerminal", "env": {} } ] }
Starts the REPL in the terminal fine although the status bar is stuck at "Starting REPL", and getting this every time I try to use Refresh Code: "Please launch or attach to a REPL before refreshing code."
If I start with debugging enabled everything works as expected.