Skip to content

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

@MosesMendoza

Description

@MosesMendoza

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions