cider

A channel dedicated to the Clojure Interactive Development Environment that Rocks (aka CIDER). :cider:
Risetto 2020-09-22T08:44:31.018700Z

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

Risetto 2020-09-22T08:44:41.019Z

is that something any of you have experienced?

iarenaza 2020-09-22T11:30:46.021300Z

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

iarenaza 2020-09-22T11:31:52.022Z

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

Risetto 2020-09-22T11:41:39.022200Z

Oh! Thanks a lot

2020-09-22T14:24:27.022900Z

Thanks!