【发布时间】:2013-01-07 05:38:19
【问题描述】:
默认情况下,cmets 的缩进级别对我来说似乎很陌生。
(defun example ()
just
some
; a comment
words)
如何调整它以使第一个分号与常规 Lisp 表单垂直对齐?
(defun example ()
just
some
; a comment
words)
我可以发现默认机制通过将 cmets 与固定列对齐(可通过 M-x comment-set-column 查询)来工作,并且可以修改 comment-indent-function 变量(将其设置为 nil 部分解决了我的问题) .
【问题讨论】:
标签: emacs elisp indentation