Mercurial > emacs
changeset 70103:4f0bc9ecc2a6
(python-mode): Add support for
hs-minor-mode.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Tue, 18 Apr 2006 22:34:54 +0000 |
parents | 2ae2af972533 |
children | 58fdcef69c03 |
files | lisp/ChangeLog lisp/progmodes/python.el |
diffstat | 2 files changed, 13 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Tue Apr 18 22:04:27 2006 +0000 +++ b/lisp/ChangeLog Tue Apr 18 22:34:54 2006 +0000 @@ -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
--- a/lisp/progmodes/python.el Tue Apr 18 22:04:27 2006 +0000 +++ b/lisp/progmodes/python.el Tue Apr 18 22:34:54 2006 +0000 @@ -1744,6 +1744,14 @@ #'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)))