从purcell emacs.d cloned的emacs.d
的基础配置.
计划从init.el
中关闭下面三个minor-mode函数
(flycheck-mode -1)
(flymake-mode -1)
(prettify-symbols-mode -1)
按照文档说明, 传入negative参数
;;flycheck
When called interactively, toggle ‘flycheck-mode’. With prefix ARG, enable ‘flycheck-mode’ if ARG is positive, otherwise disable it.
When called from Lisp, enable ‘flycheck-mode’ if ARG is omitted, nil or positive. If ARG is ‘toggle’, toggle ‘flycheck-mode’. Otherwise behave as if called interactively.
其他两个minor-mode函数文档与flycheck-mode相同.
但是, 启动后, 以上三个minor-mode仍然没有默认关闭.
请问是怎么回事?