(python-mode): Add support for

hs-minor-mode.
This commit is contained in:
Dan Nicolaescu 2006-04-18 22:34:54 +00:00
parent ec7793c3a6
commit 3398a4aee7
2 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2006-04-18 Dan Nicolaescu <dann@ics.uci.edu>
* progmodes/python.el (python-mode): Add support for
hs-minor-mode.
2006-04-19 Reiner Steib <Reiner.Steib@gmx.de>
* abbrev.el (read-abbrev-file): Use abbrev-file-name if optional

View file

@ -1744,6 +1744,14 @@ lines count as headers.
#'python-eldoc-function)
(add-hook 'eldoc-mode-hook
'(lambda () (run-python nil t)) nil t) ; need it running
(unless (assoc 'pyhon-mode hs-special-modes-alist)
(setq
hs-special-modes-alist
(cons (list
'python-mode "^\\s-*def\\>" nil "#"
(lambda (arg)(python-end-of-defun)(skip-chars-backward " \t\n"))
nil)
hs-special-modes-alist)))
(if (featurep 'hippie-exp)
(set (make-local-variable 'hippie-expand-try-functions-list)
(cons 'python-try-complete hippie-expand-try-functions-list)))