Fork me on GitHub
#cider
<
2020-09-22
>
Risetto08:09:31

(defn- func
                                        ; my comment gets indented way over here
...)

Risetto08:09:41

is that something any of you have experienced?

iarenaza11:09:46

@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.

iarenaza11:09:52

That convention expects you to use two semicolons for that comment.

Risetto11:09:39

Oh! Thanks a lot