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.
\LaTeX と python プログラミングにのみ Emacs を使用しています。flyspell-mode.tex ファイルで作業しているときに自動的にオンになりflyspell-prog-mode、.py ファイルで作業しているときにオンにする方法はありますか? .emacs ファイルでこれを行うにはどうすればよいですか?
flyspell-mode
flyspell-prog-mode
このようなものがうまくいくはずです。
(setq auto-mode-alist (cons '("\\.tex\\'" . flyspell-mode) auto-mode-alist)) (setq auto-mode-alist (cons '("\\.py\\'" . flyspell-prog-mode) auto-mode-alist))