]> gitweb.michael.orlitzky.com - emacs.d.git/blob - mode-hooks/python-mode-hooks.el
mode-hooks: disable eldoc within python-mode.
[emacs.d.git] / mode-hooks / python-mode-hooks.el
1 (defun pym-hook()
2 ;; Turn off the live documentation that tries to process the whole
3 ;; file in a temporary location and usually fails, crapping all over
4 ;; my minibuffer in the process.
5 (eldoc-mode 0)
6 )
7
8
9 (add-hook 'python-mode-hook (function pym-hook))