avli / clojureVSCode

Clojure support for Visual Studio Code
https://avli.github.io/clojureVSCode/
MIT License
204 stars 34 forks source link

Incorrect eval namespace for the file beginning with ";" #128

Closed maxp closed 5 years ago

maxp commented 5 years ago

The file

(ns my)
(def a 1)

Select last line and press Alt-E: #'my/a

Insert first line starting with ;

;
(ns my)
(def a 1)

Select last line and press Alt-E: #'user/a

avli commented 5 years ago

Thank you for the report! Fixed in the latest version.