vscode-clojure-debug icon indicating copy to clipboard operation
vscode-clojure-debug copied to clipboard

Ability to evaluate multiple highlighted expressions in debug repl?

Open MosesMendoza opened this issue 8 years ago • 0 comments

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

  1. Start a debug repl in a clojure project
  2. In a file highlight this text:
(println "foo")
(println "bar")
  1. Run the "Clojure: Evaluate selected text" command
  2. 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?

MosesMendoza avatar Jun 22 '17 21:06 MosesMendoza