diff options
author | Kyle Meyer <kyle@kyleam.com> | 2018-08-04 09:50:47 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2018-08-04 09:50:47 -0400 |
commit | 27510060cac0010353a7e2968c06cf4d533a54f0 (patch) | |
tree | b443031251948604ff3b4f2715068094561f7a8a | |
parent | d45a462e6f2f54acd4f8ab5ceb9aded47965c2be (diff) | |
download | emacs.d-27510060cac0010353a7e2968c06cf4d533a54f0.tar.gz |
Activate flyspell-prog-mode in Python mode
-rw-r--r-- | init.el | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1962,6 +1962,7 @@ (setq imenu-create-index-function #'python-imenu-create-index) (set (make-local-variable 'compile-command) "pytest-3")) (add-hook 'python-mode-hook #'km/python-set-local-vars) + (add-hook 'python-mode-hook 'flyspell-prog-mode) (bind-keys :map python-mode-map ("C-c C-b" . python-shell-send-buffer) |