(defn- func
; my comment gets indented way over here
...)
is that something any of you have experienced?
@olle142 Yes, that's a Common Lisp convention, inherited by clojure-mode
(see, e.g., https://stackoverflow.com/a/6365579). The comment-column
variable sets the comment column used by single semicolon comments. clojure-mode
redefines it to be 40 locally to the buffer.
That convention expects you to use two semicolons for that comment.
Oh! Thanks a lot