spacemacs

Drew Verlee 2023-03-24T03:57:29.133499Z

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

practicalli-johnny 2023-03-24T09:21:03.796409Z

Rather than use line comments, I assume using the Clojure reader comment #_ or comment function would work correctly when copying the expression

👀 1
Drew Verlee 2023-03-24T03:58:06.672829Z

;; (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}))

Drew Verlee 2023-03-24T03:59:17.645709Z

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.