Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ability to evaluate multiple highlighted expressions in debug repl? #137

Open
MosesMendoza opened this issue Jun 22, 2017 · 0 comments
Open

Comments

@MosesMendoza
Copy link

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant