diff lisp/progmodes/python.el @ 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 dc49655f57ae
children 15278e681be3
line wrap: on
line diff
--- 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)))