Environment
- VSCode Version: 1.13.1
- OS Version: 10.11.6
- Clojure Extension Version: 1.2.0
Description
If I start a debug repl in a clojure project, should I be able to highlight multiple expressions and use the Evaluate selected text to run all of them?
Steps to Reproduce
- Start a debug repl in a clojure project
- In a file highlight this text:
(println "foo")
(println "bar")
- Run the "Clojure: Evaluate selected text" command
- Observe the following in the debug window:
hello-vscode.core=>
(println "foo")
(println "bar")
nil
foo
I would have expected
hello-vscode.core=>
(println "foo")
(println "bar")
nil
foo
bar
Is that right?