Block Comments in Clojure

后端 未结 9 1432
渐次进展
渐次进展 2021-01-31 01:13

How do I comment multiple lines in Clojure?

9条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-31 01:32

    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.

提交回复
热议问题