How do I comment multiple lines in Clojure?
In Emacs you can use the command M-;
(the shortcut for M-x comment-dwim
). It will comment or uncomment any marked region of text/code, so, as long as your entire function or set of functions is included in the region, you can comment or uncomment that region quite easily. The Emacs reference manual for the function M-;
can be found here.