how do i make sp-copy-sexp not copy comments? Or how do you copy a list/expression/map in a comment and not have it copy the comment part as well. e.g
Rather than use line comments, I assume using the Clojure reader comment #_ or comment function would work correctly when copying the expression
;; (set! spec/*explain-out* (expound/custom-printer {:show-valid-values? true
;; :theme :figwheel-theme}))
copy the set! expression and paste and i get this:
(set! spec/*explain-out* (expound/custom-printer {:show-valid-values? true
;; :theme :figwheel-theme}))i assume it's just reading chars and picks up the comment ones? like it doesn't understand clojure comment symbols should be ignored maybe.