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は、そのインデント機能をjs-mode次のように使用できます。
js2-mode
js-mode
(add-hook 'js-mode-hook (lambda () (require 'js2-mode) (setq indent-line-function 'js2-indent-line)))