vscode-clojure-debug
vscode-clojure-debug copied to clipboard
(Warning: profile :debug-repl not found.)
MY launch.json { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "commandLine": [ "/usr/local/bin/lein", "with-profile", "+debug-repl", "repl", ":start", ":port", "5555" ], "name": "Clojure-Debug", "type": "clojure", "request": "launch", "env": {} } ] }
profiles.clj :debug-repl {:resource-paths ["/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/lib/tools.jar"] :repl-options {:nrepl-middleware [debug-middleware.core/debug-middleware]} :dependencies [[debug-middleware "0.5.1"]] :source-paths ["src" "dev" "test"]}
running......
Launch request (Warning: profile :debug-repl not found.) (Warning: profile :debug-repl not found.) (Warning: profile :debug-repl not found.) nREPL server started on port 5555 on host 127.0.0.1 - nrepl://127.0.0.1:5555 REPL-y 0.3.7, nREPL 0.2.12 Clojure 1.8.0 Java HotSpot(TM) 64-Bit Server VM 1.8.0_131-b11 Docs: (doc function-name-here) (find-doc "part-of-name-here") Source: (source function-name-here) Javadoc: (javadoc java-object-or-class-here) Exit: Control+D or (exit) or (quit) Results: Stored in vars *1, *2, *3, an exception in *e user=>