avli / clojureVSCode

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

BUG - eval'ing source? does not display response correctly #103

Closed sloxy closed 6 years ago

sloxy commented 6 years ago

Going through the steps at the updated clj starter docs: https://clojure.org/guides/repl/basic_usage#_looking_up_documentation

Using source? doesn't parse the returned response correctly: after requiring (require '[clojure.repl :refer :all]) and then eval'ing (source some?)

image

displayed text should be:

(defn some? "Returns true if x is not nil, false otherwise." {:tag Boolean :added "1.6" :static true} [x] (not (nil? x)))

marcomorain commented 6 years ago

I can't reproduce this (it works for me).

What platform are you on? (Windows?) Do you have any plugins loaded that would add colour to the output of source?

sloxy commented 6 years ago

yes sorry , i had :plugins [[venantius/ultra "0.5.2"]] in my leiningen profile which was causing it