默认情况下,
评论获得与我相似的缩进级别.
(defun example ()
just
some
; a comment
words)
如何调整它,使第一个分号与正常的Lisp形式垂直对齐?
(defun example ()
just
some
; a comment
words)
我可以找到的是,默认机制可以通过将注释对齐到一个固定的列(通过Mx comment-set-column可查询),并且可以修改comment-indent-function变量(将其设置为零,部分修复了我的问题).
根据使用的分号
数量,Emacs会缩小elisp中的注释.如果你使用两个,你应该得到你以后的缩进:
(defun test-single ()
; A single semicolon
nil)
(defun test-double ()
;; Do two semicolons make a colon ;)
nil)
另外,三个分号根本没有重新缩进.通常,它们用于在源文件中标记新的主要部分.