Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
也许这是一个简单的问题:我可以停止 js2-mode 的语法检查吗?如何 ?
似乎它减慢了 emacs 进程。
谢谢。
简短的回答是,不,你不能。您可以关闭解析器,但它会破坏大部分其他内容。
如果你只是想要js2-mode-like 缩进,你可以使用它的缩进功能js-mode:
js2-mode
js-mode
(add-hook 'js-mode-hook (lambda () (require 'js2-mode) (setq indent-line-function 'js2-indent-line)))