annotate lisp/progmodes/python.el @ 111960:b856b44c139b

ChangeLog fix.
author Glenn Morris <rgm@gnu.org>
date Mon, 13 Dec 2010 20:46:07 -0800
parents b47e85affa59
children 417b1e4d63cd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
1 ;;; python.el --- silly walks for Python -*- coding: iso-8859-1 -*-
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2
106743
2db50e698b85 * progmodes/python.el (python-font-lock-keywords): Handle qualified decorators
Chong Yidong <cyd@stupidchicken.com>
parents: 106574
diff changeset
3 ;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
101769
fcd47e055a66 Comment (python-mode is now separate from Python).
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
4 ;; Free Software Foundation, Inc.
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
5
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
6 ;; Author: Dave Love <fx@gnu.org>
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
7 ;; Maintainer: FSF
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
8 ;; Created: Nov 2003
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
9 ;; Keywords: languages
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
10
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
11 ;; This file is part of GNU Emacs.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
12
94673
52b7a8c22af5 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94628
diff changeset
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
14 ;; it under the terms of the GNU General Public License as published by
94673
52b7a8c22af5 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94628
diff changeset
15 ;; the Free Software Foundation, either version 3 of the License, or
52b7a8c22af5 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94628
diff changeset
16 ;; (at your option) any later version.
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
17
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
18 ;; GNU Emacs is distributed in the hope that it will be useful,
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
21 ;; GNU General Public License for more details.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
22
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
23 ;; You should have received a copy of the GNU General Public License
94673
52b7a8c22af5 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94628
diff changeset
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
25
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
26 ;;; Commentary:
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
27
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
28 ;; Major mode for editing Python, with support for inferior processes.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
29
101769
fcd47e055a66 Comment (python-mode is now separate from Python).
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
30 ;; There is another Python mode, python-mode.el:
fcd47e055a66 Comment (python-mode is now separate from Python).
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
31 ;; http://launchpad.net/python-mode
fcd47e055a66 Comment (python-mode is now separate from Python).
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
32 ;; used by XEmacs, and originally maintained with Python.
fcd47e055a66 Comment (python-mode is now separate from Python).
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
33 ;; That isn't covered by an FSF copyright assignment (?), unlike this
fcd47e055a66 Comment (python-mode is now separate from Python).
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
34 ;; code, and seems not to be well-maintained for Emacs (though I've
fcd47e055a66 Comment (python-mode is now separate from Python).
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
35 ;; submitted fixes). This mode is rather simpler and is better in
fcd47e055a66 Comment (python-mode is now separate from Python).
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
36 ;; other ways. In particular, using the syntax functions with text
fcd47e055a66 Comment (python-mode is now separate from Python).
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
37 ;; properties maintained by font-lock makes it more correct with
fcd47e055a66 Comment (python-mode is now separate from Python).
Glenn Morris <rgm@gnu.org>
parents: 100908
diff changeset
38 ;; arbitrary string and comment contents.
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
39
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
40 ;; This doesn't implement all the facilities of python-mode.el. Some
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
41 ;; just need doing, e.g. catching exceptions in the inferior Python
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
42 ;; buffer (but see M-x pdb for debugging). [Actually, the use of
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
43 ;; `compilation-shell-minor-mode' now is probably enough for that.]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
44 ;; Others don't seem appropriate. For instance,
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
45 ;; `forward-into-nomenclature' should be done separately, since it's
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
46 ;; not specific to Python, and I've installed a minor mode to do the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
47 ;; job properly in Emacs 23. [CC mode 5.31 contains an incompatible
106980
66e0d01014c6 replace references to obsolete c-subword-mode
Mark A. Hershberger <mhershberger@intrahealth.org>
parents: 106743
diff changeset
48 ;; feature, `subword-mode' which is intended to have a similar
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
49 ;; effect, but actually only affects word-oriented keybindings.]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
50
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
51 ;; Other things seem more natural or canonical here, e.g. the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
52 ;; {beginning,end}-of-defun implementation dealing with nested
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
53 ;; definitions, and the inferior mode following `cmuscheme'. (The
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
54 ;; inferior mode can find the source of errors from
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
55 ;; `python-send-region' & al via `compilation-shell-minor-mode'.)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
56 ;; There is (limited) symbol completion using lookup in Python and
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
57 ;; Eldoc support also using the inferior process. Successive TABs
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
58 ;; cycle between possible indentations for the line.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
59
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
60 ;; Even where it has similar facilities, this mode is incompatible
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
61 ;; with python-mode.el in some respects. For instance, various key
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
62 ;; bindings are changed to obey Emacs conventions.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
63
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
64 ;; TODO: See various Fixmes below.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
65
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
66 ;; Fixme: This doesn't support (the nascent) Python 3 .
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
67
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
68 ;;; Code:
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
69
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
70 (require 'comint)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
71
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
72 (eval-when-compile
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
73 (require 'compile)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
74 (require 'hippie-exp))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
75
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
76 (autoload 'comint-mode "comint")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
77
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
78 (defgroup python nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
79 "Silly walks in the Python language."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
80 :group 'languages
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
81 :version "22.1"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
82 :link '(emacs-commentary-link "python"))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
83
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
84 ;;;###autoload
105870
26baacb565b0 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105813
diff changeset
85 (add-to-list 'interpreter-mode-alist (cons (purecopy "jython") 'jython-mode))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
86 ;;;###autoload
105870
26baacb565b0 * textmodes/tex-mode.el (tex-alt-dvi-print-command)
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105813
diff changeset
87 (add-to-list 'interpreter-mode-alist (cons (purecopy "python") 'python-mode))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
88 ;;;###autoload
105798
0ad1fc06bfc8 * puresize.h (BASE_PURESIZE): Increase to 1470000.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105372
diff changeset
89 (add-to-list 'auto-mode-alist (cons (purecopy "\\.py\\'") 'python-mode))
0ad1fc06bfc8 * puresize.h (BASE_PURESIZE): Increase to 1470000.
Dan Nicolaescu <dann@ics.uci.edu>
parents: 105372
diff changeset
90 (add-to-list 'same-window-buffer-names (purecopy "*Python*"))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
91
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
92 ;;;; Font lock
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
93
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
94 (defvar python-font-lock-keywords
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
95 `(,(rx symbol-start
109300
454cfd5e9cc0 Add some font-locking for Python 2.7.
Glenn Morris <rgm@gnu.org>
parents: 107240
diff changeset
96 ;; From v 2.7 reference, § keywords.
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
97 ;; def and class dealt with separately below
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
98 (or "and" "as" "assert" "break" "continue" "del" "elif" "else"
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
99 "except" "exec" "finally" "for" "from" "global" "if"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
100 "import" "in" "is" "lambda" "not" "or" "pass" "print"
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
101 "raise" "return" "try" "while" "with" "yield"
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
102 ;; Not real keywords, but close enough to be fontified as such
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
103 "self" "True" "False")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
104 symbol-end)
109300
454cfd5e9cc0 Add some font-locking for Python 2.7.
Glenn Morris <rgm@gnu.org>
parents: 107240
diff changeset
105 (,(rx symbol-start "None" symbol-end) ; see § Keywords in 2.7 manual
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
106 . font-lock-constant-face)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
107 ;; Definitions
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
108 (,(rx symbol-start (group "class") (1+ space) (group (1+ (or word ?_))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
109 (1 font-lock-keyword-face) (2 font-lock-type-face))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
110 (,(rx symbol-start (group "def") (1+ space) (group (1+ (or word ?_))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
111 (1 font-lock-keyword-face) (2 font-lock-function-name-face))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
112 ;; Top-level assignments are worth highlighting.
111665
946fe738ec2b Highlight top-level augmented assignments in Python (Bug#6445).
Chong Yidong <cyd@stupidchicken.com>
parents: 111626
diff changeset
113 (,(rx line-start (group (1+ (or word ?_))) (0+ space)
946fe738ec2b Highlight top-level augmented assignments in Python (Bug#6445).
Chong Yidong <cyd@stupidchicken.com>
parents: 111626
diff changeset
114 (opt (or "+" "-" "*" "**" "/" "//" "&" "%" "|" "^" "<<" ">>")) "=")
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
115 (1 font-lock-variable-name-face))
106743
2db50e698b85 * progmodes/python.el (python-font-lock-keywords): Handle qualified decorators
Chong Yidong <cyd@stupidchicken.com>
parents: 106574
diff changeset
116 ;; Decorators.
2db50e698b85 * progmodes/python.el (python-font-lock-keywords): Handle qualified decorators
Chong Yidong <cyd@stupidchicken.com>
parents: 106574
diff changeset
117 (,(rx line-start (* (any " \t")) (group "@" (1+ (or word ?_))
2db50e698b85 * progmodes/python.el (python-font-lock-keywords): Handle qualified decorators
Chong Yidong <cyd@stupidchicken.com>
parents: 106574
diff changeset
118 (0+ "." (1+ (or word ?_)))))
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
119 (1 font-lock-type-face))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
120 ;; Built-ins. (The next three blocks are from
109300
454cfd5e9cc0 Add some font-locking for Python 2.7.
Glenn Morris <rgm@gnu.org>
parents: 107240
diff changeset
121 ;; `__builtin__.__dict__.keys()' in Python 2.7) These patterns
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
122 ;; are debateable, but they at least help to spot possible
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
123 ;; shadowing of builtins.
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
124 (,(rx symbol-start (or
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
125 ;; exceptions
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
126 "ArithmeticError" "AssertionError" "AttributeError"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
127 "BaseException" "DeprecationWarning" "EOFError"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
128 "EnvironmentError" "Exception" "FloatingPointError"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
129 "FutureWarning" "GeneratorExit" "IOError" "ImportError"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
130 "ImportWarning" "IndentationError" "IndexError" "KeyError"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
131 "KeyboardInterrupt" "LookupError" "MemoryError" "NameError"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
132 "NotImplemented" "NotImplementedError" "OSError"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
133 "OverflowError" "PendingDeprecationWarning" "ReferenceError"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
134 "RuntimeError" "RuntimeWarning" "StandardError"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
135 "StopIteration" "SyntaxError" "SyntaxWarning" "SystemError"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
136 "SystemExit" "TabError" "TypeError" "UnboundLocalError"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
137 "UnicodeDecodeError" "UnicodeEncodeError" "UnicodeError"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
138 "UnicodeTranslateError" "UnicodeWarning" "UserWarning"
109300
454cfd5e9cc0 Add some font-locking for Python 2.7.
Glenn Morris <rgm@gnu.org>
parents: 107240
diff changeset
139 "ValueError" "Warning" "ZeroDivisionError"
454cfd5e9cc0 Add some font-locking for Python 2.7.
Glenn Morris <rgm@gnu.org>
parents: 107240
diff changeset
140 ;; Python 2.7
454cfd5e9cc0 Add some font-locking for Python 2.7.
Glenn Morris <rgm@gnu.org>
parents: 107240
diff changeset
141 "BufferError" "BytesWarning" "WindowsError") symbol-end)
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
142 . font-lock-type-face)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
143 (,(rx (or line-start (not (any ". \t"))) (* (any " \t")) symbol-start
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
144 (group (or
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
145 ;; callable built-ins, fontified when not appearing as
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
146 ;; object attributes
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
147 "abs" "all" "any" "apply" "basestring" "bool" "buffer" "callable"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
148 "chr" "classmethod" "cmp" "coerce" "compile" "complex"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
149 "copyright" "credits" "delattr" "dict" "dir" "divmod"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
150 "enumerate" "eval" "execfile" "exit" "file" "filter" "float"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
151 "frozenset" "getattr" "globals" "hasattr" "hash" "help"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
152 "hex" "id" "input" "int" "intern" "isinstance" "issubclass"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
153 "iter" "len" "license" "list" "locals" "long" "map" "max"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
154 "min" "object" "oct" "open" "ord" "pow" "property" "quit"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
155 "range" "raw_input" "reduce" "reload" "repr" "reversed"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
156 "round" "set" "setattr" "slice" "sorted" "staticmethod"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
157 "str" "sum" "super" "tuple" "type" "unichr" "unicode" "vars"
109300
454cfd5e9cc0 Add some font-locking for Python 2.7.
Glenn Morris <rgm@gnu.org>
parents: 107240
diff changeset
158 "xrange" "zip"
454cfd5e9cc0 Add some font-locking for Python 2.7.
Glenn Morris <rgm@gnu.org>
parents: 107240
diff changeset
159 ;; Python 2.7.
454cfd5e9cc0 Add some font-locking for Python 2.7.
Glenn Morris <rgm@gnu.org>
parents: 107240
diff changeset
160 "bin" "bytearray" "bytes" "format" "memoryview" "next" "print"
454cfd5e9cc0 Add some font-locking for Python 2.7.
Glenn Morris <rgm@gnu.org>
parents: 107240
diff changeset
161 )) symbol-end)
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
162 (1 font-lock-builtin-face))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
163 (,(rx symbol-start (or
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
164 ;; other built-ins
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
165 "True" "False" "None" "Ellipsis"
109300
454cfd5e9cc0 Add some font-locking for Python 2.7.
Glenn Morris <rgm@gnu.org>
parents: 107240
diff changeset
166 "_" "__debug__" "__doc__" "__import__" "__name__" "__package__")
454cfd5e9cc0 Add some font-locking for Python 2.7.
Glenn Morris <rgm@gnu.org>
parents: 107240
diff changeset
167 symbol-end)
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
168 . font-lock-builtin-face)))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
169
110305
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
170 (defconst python-syntax-propertize-function
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
171 ;; Make outer chars of matching triple-quote sequences into generic
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
172 ;; string delimiters. Fixme: Is there a better way?
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
173 ;; First avoid a sequence preceded by an odd number of backslashes.
110305
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
174 (syntax-propertize-rules
111449
132f2dfd549f Merge from emacs-23
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 111429 111385
diff changeset
175 (;; ¡Backrefs don't work in syntax-propertize-rules!
132f2dfd549f Merge from emacs-23
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 111429 111385
diff changeset
176 (concat "\\(?:\\([RUru]\\)[Rr]?\\|^\\|[^\\]\\(?:\\\\.\\)*\\)" ;Prefix.
111385
85a2b871f225 * lisp/progmodes/python.el (python-font-lock-syntactic-keywords):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110115
diff changeset
177 "\\(?:\\('\\)'\\('\\)\\|\\(?2:\"\\)\"\\(?3:\"\\)\\)")
110305
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
178 (3 (ignore (python-quote-syntax))))
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
179 ;; This doesn't really help.
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
180 ;;((rx (and ?\\ (group ?\n))) (1 " "))
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
181 ))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
182
110305
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
183 (defun python-quote-syntax ()
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
184 "Put `syntax-table' property correctly on triple quote.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
185 Used for syntactic keywords. N is the match number (1, 2 or 3)."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
186 ;; Given a triple quote, we have to check the context to know
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
187 ;; whether this is an opening or closing triple or whether it's
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
188 ;; quoted anyhow, and should be ignored. (For that we need to do
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
189 ;; the same job as `syntax-ppss' to be correct and it seems to be OK
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
190 ;; to use it here despite initial worries.) We also have to sort
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
191 ;; out a possible prefix -- well, we don't _have_ to, but I think it
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
192 ;; should be treated as part of the string.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
193
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
194 ;; Test cases:
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
195 ;; ur"""ar""" x='"' # """
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
196 ;; x = ''' """ ' a
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
197 ;; '''
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
198 ;; x '"""' x """ \"""" x
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
199 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
200 (goto-char (match-beginning 0))
110305
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
201 (let ((syntax (save-match-data (syntax-ppss))))
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
202 (cond
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
203 ((eq t (nth 3 syntax)) ; after unclosed fence
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
204 ;; Consider property for the last char if in a fenced string.
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
205 (goto-char (nth 8 syntax)) ; fence position
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
206 (skip-chars-forward "uUrR") ; skip any prefix
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
207 ;; Is it a matching sequence?
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
208 (if (eq (char-after) (char-after (match-beginning 2)))
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
209 (put-text-property (match-beginning 3) (match-end 3)
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
210 'syntax-table (string-to-syntax "|"))))
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
211 ((match-end 1)
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
212 ;; Consider property for initial char, accounting for prefixes.
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
213 (put-text-property (match-beginning 1) (match-end 1)
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
214 'syntax-table (string-to-syntax "|")))
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
215 (t
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
216 ;; Consider property for initial char, accounting for prefixes.
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
217 (put-text-property (match-beginning 2) (match-end 2)
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
218 'syntax-table (string-to-syntax "|"))))
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
219 )))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
220
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
221 ;; This isn't currently in `font-lock-defaults' as probably not worth
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
222 ;; it -- we basically only mess with a few normally-symbol characters.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
223
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
224 ;; (defun python-font-lock-syntactic-face-function (state)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
225 ;; "`font-lock-syntactic-face-function' for Python mode.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
226 ;; Returns the string or comment face as usual, with side effect of putting
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
227 ;; a `syntax-table' property on the inside of the string or comment which is
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
228 ;; the standard syntax table."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
229 ;; (if (nth 3 state)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
230 ;; (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
231 ;; (goto-char (nth 8 state))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
232 ;; (condition-case nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
233 ;; (forward-sexp)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
234 ;; (error nil))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
235 ;; (put-text-property (1+ (nth 8 state)) (1- (point))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
236 ;; 'syntax-table (standard-syntax-table))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
237 ;; 'font-lock-string-face)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
238 ;; (put-text-property (1+ (nth 8 state)) (line-end-position)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
239 ;; 'syntax-table (standard-syntax-table))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
240 ;; 'font-lock-comment-face))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
241
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
242 ;;;; Keymap and syntax
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
243
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
244 (defvar python-mode-map
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
245 (let ((map (make-sparse-keymap)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
246 ;; Mostly taken from python-mode.el.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
247 (define-key map ":" 'python-electric-colon)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
248 (define-key map "\177" 'python-backspace)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
249 (define-key map "\C-c<" 'python-shift-left)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
250 (define-key map "\C-c>" 'python-shift-right)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
251 (define-key map "\C-c\C-k" 'python-mark-block)
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
252 (define-key map "\C-c\C-d" 'python-pdbtrack-toggle-stack-tracking)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
253 (define-key map "\C-c\C-n" 'python-next-statement)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
254 (define-key map "\C-c\C-p" 'python-previous-statement)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
255 (define-key map "\C-c\C-u" 'python-beginning-of-block)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
256 (define-key map "\C-c\C-f" 'python-describe-symbol)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
257 (define-key map "\C-c\C-w" 'python-check)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
258 (define-key map "\C-c\C-v" 'python-check) ; a la sgml-mode
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
259 (define-key map "\C-c\C-s" 'python-send-string)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
260 (define-key map [?\C-\M-x] 'python-send-defun)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
261 (define-key map "\C-c\C-r" 'python-send-region)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
262 (define-key map "\C-c\M-r" 'python-send-region-and-go)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
263 (define-key map "\C-c\C-c" 'python-send-buffer)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
264 (define-key map "\C-c\C-z" 'python-switch-to-python)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
265 (define-key map "\C-c\C-m" 'python-load-file)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
266 (define-key map "\C-c\C-l" 'python-load-file) ; a la cmuscheme
106482
806e9f7990d8 * minibuffer.el (completion-at-point-functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105870
diff changeset
267 (substitute-key-definition 'complete-symbol 'completion-at-point
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
268 map global-map)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
269 (define-key map "\C-c\C-i" 'python-find-imports)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
270 (define-key map "\C-c\C-t" 'python-expand-template)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
271 (easy-menu-define python-menu map "Python Mode menu"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
272 `("Python"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
273 :help "Python-specific Features"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
274 ["Shift region left" python-shift-left :active mark-active
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
275 :help "Shift by a single indentation step"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
276 ["Shift region right" python-shift-right :active mark-active
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
277 :help "Shift by a single indentation step"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
278 "-"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
279 ["Mark block" python-mark-block
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
280 :help "Mark innermost block around point"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
281 ["Mark def/class" mark-defun
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
282 :help "Mark innermost definition around point"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
283 "-"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
284 ["Start of block" python-beginning-of-block
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
285 :help "Go to start of innermost definition around point"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
286 ["End of block" python-end-of-block
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
287 :help "Go to end of innermost definition around point"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
288 ["Start of def/class" beginning-of-defun
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
289 :help "Go to start of innermost definition around point"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
290 ["End of def/class" end-of-defun
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
291 :help "Go to end of innermost definition around point"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
292 "-"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
293 ("Templates..."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
294 :help "Expand templates for compound statements"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
295 :filter (lambda (&rest junk)
94139
1e40bf35d15e (python-mode-map): Use abbrev-table-menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92111
diff changeset
296 (abbrev-table-menu python-mode-abbrev-table)))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
297 "-"
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
298 ["Start interpreter" python-shell
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
299 :help "Run `inferior' Python in separate buffer"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
300 ["Import/reload file" python-load-file
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
301 :help "Load into inferior Python session"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
302 ["Eval buffer" python-send-buffer
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
303 :help "Evaluate buffer en bloc in inferior Python session"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
304 ["Eval region" python-send-region :active mark-active
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
305 :help "Evaluate region en bloc in inferior Python session"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
306 ["Eval def/class" python-send-defun
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
307 :help "Evaluate current definition in inferior Python session"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
308 ["Switch to interpreter" python-switch-to-python
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
309 :help "Switch to inferior Python buffer"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
310 ["Set default process" python-set-proc
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
311 :help "Make buffer's inferior process the default"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
312 :active (buffer-live-p python-buffer)]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
313 ["Check file" python-check :help "Run pychecker"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
314 ["Debugger" pdb :help "Run pdb under GUD"]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
315 "-"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
316 ["Help on symbol" python-describe-symbol
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
317 :help "Use pydoc on symbol at point"]
106482
806e9f7990d8 * minibuffer.el (completion-at-point-functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105870
diff changeset
318 ["Complete symbol" completion-at-point
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
319 :help "Complete (qualified) symbol before point"]
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
320 ["Find function" python-find-function
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
321 :help "Try to find source definition of function at point"]
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
322 ["Update imports" python-find-imports
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
323 :help "Update list of top-level imports for completion"]))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
324 map))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
325 ;; Fixme: add toolbar stuff for useful things like symbol help, send
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
326 ;; region, at least. (Shouldn't be specific to Python, obviously.)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
327 ;; eric has items including: (un)indent, (un)comment, restart script,
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
328 ;; run script, debug script; also things for profiling, unit testing.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
329
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
330 (defvar python-shell-map
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
331 (let ((map (copy-keymap comint-mode-map)))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
332 (define-key map [tab] 'tab-to-tab-stop)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
333 (define-key map "\C-c-" 'py-up-exception)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
334 (define-key map "\C-c=" 'py-down-exception)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
335 map)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
336 "Keymap used in *Python* shell buffers.")
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
337
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
338 (defvar python-mode-syntax-table
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
339 (let ((table (make-syntax-table)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
340 ;; Give punctuation syntax to ASCII that normally has symbol
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
341 ;; syntax or has word syntax and isn't a letter.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
342 (let ((symbol (string-to-syntax "_"))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
343 (sst (standard-syntax-table)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
344 (dotimes (i 128)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
345 (unless (= i ?_)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
346 (if (equal symbol (aref sst i))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
347 (modify-syntax-entry i "." table)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
348 (modify-syntax-entry ?$ "." table)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
349 (modify-syntax-entry ?% "." table)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
350 ;; exceptions
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
351 (modify-syntax-entry ?# "<" table)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
352 (modify-syntax-entry ?\n ">" table)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
353 (modify-syntax-entry ?' "\"" table)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
354 (modify-syntax-entry ?` "$" table)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
355 table))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
356
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
357 ;;;; Utility stuff
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
358
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
359 (defsubst python-in-string/comment ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
360 "Return non-nil if point is in a Python literal (a comment or string)."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
361 ;; We don't need to save the match data.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
362 (nth 8 (syntax-ppss)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
363
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
364 (defconst python-space-backslash-table
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
365 (let ((table (copy-syntax-table python-mode-syntax-table)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
366 (modify-syntax-entry ?\\ " " table)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
367 table)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
368 "`python-mode-syntax-table' with backslash given whitespace syntax.")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
369
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
370 (defun python-skip-comments/blanks (&optional backward)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
371 "Skip comments and blank lines.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
372 BACKWARD non-nil means go backwards, otherwise go forwards.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
373 Backslash is treated as whitespace so that continued blank lines
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
374 are skipped. Doesn't move out of comments -- should be outside
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
375 or at end of line."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
376 (let ((arg (if backward
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
377 ;; If we're in a comment (including on the trailing
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
378 ;; newline), forward-comment doesn't move backwards out
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
379 ;; of it. Don't set the syntax table round this bit!
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
380 (let ((syntax (syntax-ppss)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
381 (if (nth 4 syntax)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
382 (goto-char (nth 8 syntax)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
383 (- (point-max)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
384 (point-max))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
385 (with-syntax-table python-space-backslash-table
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
386 (forward-comment arg))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
387
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
388 (defun python-backslash-continuation-line-p ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
389 "Non-nil if preceding line ends with backslash that is not in a comment."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
390 (and (eq ?\\ (char-before (line-end-position 0)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
391 (not (syntax-ppss-context (syntax-ppss)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
392
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
393 (defun python-continuation-line-p ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
394 "Return non-nil if current line continues a previous one.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
395 The criteria are that the previous line ends in a backslash outside
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
396 comments and strings, or that point is within brackets/parens."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
397 (or (python-backslash-continuation-line-p)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
398 (let ((depth (syntax-ppss-depth
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
399 (save-excursion ; syntax-ppss with arg changes point
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
400 (syntax-ppss (line-beginning-position))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
401 (or (> depth 0)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
402 (if (< depth 0) ; Unbalanced brackets -- act locally
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
403 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
404 (condition-case ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
405 (progn (backward-up-list) t) ; actually within brackets
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
406 (error nil))))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
407
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
408 (defun python-comment-line-p ()
94740
464e6f78f756 (python-comment-line-p, python-blank-line-p, python-skip-out,
Juanma Barranquero <lekktu@gmail.com>
parents: 94673
diff changeset
409 "Return non-nil if and only if current line has only a comment."
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
410 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
411 (end-of-line)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
412 (when (eq 'comment (syntax-ppss-context (syntax-ppss)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
413 (back-to-indentation)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
414 (looking-at (rx (or (syntax comment-start) line-end))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
415
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
416 (defun python-blank-line-p ()
94740
464e6f78f756 (python-comment-line-p, python-blank-line-p, python-skip-out,
Juanma Barranquero <lekktu@gmail.com>
parents: 94673
diff changeset
417 "Return non-nil if and only if current line is blank."
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
418 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
419 (beginning-of-line)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
420 (looking-at "\\s-*$")))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
421
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
422 (defun python-beginning-of-string ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
423 "Go to beginning of string around point.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
424 Do nothing if not in string."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
425 (let ((state (syntax-ppss)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
426 (when (eq 'string (syntax-ppss-context state))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
427 (goto-char (nth 8 state)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
428
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
429 (defun python-open-block-statement-p (&optional bos)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
430 "Return non-nil if statement at point opens a block.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
431 BOS non-nil means point is known to be at beginning of statement."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
432 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
433 (unless bos (python-beginning-of-statement))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
434 (looking-at (rx (and (or "if" "else" "elif" "while" "for" "def"
77678
0b0c0f93563c (python-font-lock-keywords, python-open-block-statement-p, python-mode):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 77663
diff changeset
435 "class" "try" "except" "finally" "with")
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
436 symbol-end)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
437
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
438 (defun python-close-block-statement-p (&optional bos)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
439 "Return non-nil if current line is a statement closing a block.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
440 BOS non-nil means point is at beginning of statement.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
441 The criteria are that the line isn't a comment or in string and
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
442 starts with keyword `raise', `break', `continue' or `pass'."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
443 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
444 (unless bos (python-beginning-of-statement))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
445 (back-to-indentation)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
446 (looking-at (rx (or "return" "raise" "break" "continue" "pass")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
447 symbol-end))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
448
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
449 (defun python-outdent-p ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
450 "Return non-nil if current line should outdent a level."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
451 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
452 (back-to-indentation)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
453 (and (looking-at (rx (and (or "else" "finally" "except" "elif")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
454 symbol-end)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
455 (not (python-in-string/comment))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
456 ;; Ensure there's a previous statement and move to it.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
457 (zerop (python-previous-statement))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
458 (not (python-close-block-statement-p t))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
459 ;; Fixme: check this
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
460 (not (python-open-block-statement-p)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
461
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
462 ;;;; Indentation.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
463
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
464 (defcustom python-indent 4
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
465 "Number of columns for a unit of indentation in Python mode.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
466 See also `\\[python-guess-indent]'"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
467 :group 'python
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
468 :type 'integer)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
469 (put 'python-indent 'safe-local-variable 'integerp)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
470
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
471 (defcustom python-guess-indent t
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
472 "Non-nil means Python mode guesses `python-indent' for the buffer."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
473 :type 'boolean
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
474 :group 'python)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
475
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
476 (defcustom python-indent-string-contents t
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
477 "Non-nil means indent contents of multi-line strings together.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
478 This means indent them the same as the preceding non-blank line.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
479 Otherwise preserve their indentation.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
480
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
481 This only applies to `doc' strings, i.e. those that form statements;
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
482 the indentation is preserved in others."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
483 :type '(choice (const :tag "Align with preceding" t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
484 (const :tag "Preserve indentation" nil))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
485 :group 'python)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
486
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
487 (defcustom python-honour-comment-indentation nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
488 "Non-nil means indent relative to preceding comment line.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
489 Only do this for comments where the leading comment character is
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
490 followed by space. This doesn't apply to comment lines, which
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
491 are always indented in lines with preceding comments."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
492 :type 'boolean
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
493 :group 'python)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
494
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
495 (defcustom python-continuation-offset 4
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
496 "Number of columns of additional indentation for continuation lines.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
497 Continuation lines follow a backslash-terminated line starting a
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
498 statement."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
499 :group 'python
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
500 :type 'integer)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
501
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
502
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
503 (defcustom python-default-interpreter 'cpython
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
504 "*Which Python interpreter is used by default.
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
505 The value for this variable can be either `cpython' or `jpython'.
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
506
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
507 When the value is `cpython', the variables `python-python-command' and
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
508 `python-python-command-args' are consulted to determine the interpreter
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
509 and arguments to use.
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
510
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
511 When the value is `jpython', the variables `python-jpython-command' and
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
512 `python-jpython-command-args' are consulted to determine the interpreter
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
513 and arguments to use.
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
514
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
515 Note that this variable is consulted only the first time that a Python
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
516 mode buffer is visited during an Emacs session. After that, use
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
517 \\[python-toggle-shells] to change the interpreter shell."
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
518 :type '(choice (const :tag "Python (a.k.a. CPython)" cpython)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
519 (const :tag "JPython" jpython))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
520 :group 'python)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
521
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
522 (defcustom python-python-command-args '("-i")
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
523 "*List of string arguments to be used when starting a Python shell."
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
524 :type '(repeat string)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
525 :group 'python)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
526
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
527 (defcustom python-jython-command-args '("-i")
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
528 "*List of string arguments to be used when starting a Jython shell."
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
529 :type '(repeat string)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
530 :group 'python
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
531 :tag "JPython Command Args")
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
532
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
533 ;; for toggling between CPython and JPython
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
534 (defvar python-which-shell nil)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
535 (defvar python-which-args python-python-command-args)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
536 (defvar python-which-bufname "Python")
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
537 (make-variable-buffer-local 'python-which-shell)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
538 (make-variable-buffer-local 'python-which-args)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
539 (make-variable-buffer-local 'python-which-bufname)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
540
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
541 (defcustom python-pdbtrack-do-tracking-p t
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
542 "*Controls whether the pdbtrack feature is enabled or not.
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
543
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
544 When non-nil, pdbtrack is enabled in all comint-based buffers,
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
545 e.g. shell interaction buffers and the *Python* buffer.
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
546
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
547 When using pdb to debug a Python program, pdbtrack notices the
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
548 pdb prompt and presents the line in the source file where the
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
549 program is stopped in a pop-up buffer. It's similar to what
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
550 gud-mode does for debugging C programs with gdb, but without
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
551 having to restart the program."
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
552 :type 'boolean
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
553 :group 'python)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
554 (make-variable-buffer-local 'python-pdbtrack-do-tracking-p)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
555
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
556 (defcustom python-pdbtrack-minor-mode-string " PDB"
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
557 "*Minor-mode sign to be displayed when pdbtrack is active."
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
558 :type 'string
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
559 :group 'python)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
560
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
561 ;; Add a designator to the minor mode strings
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
562 (or (assq 'python-pdbtrack-is-tracking-p minor-mode-alist)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
563 (push '(python-pdbtrack-is-tracking-p python-pdbtrack-minor-mode-string)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
564 minor-mode-alist))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
565
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
566 ;; Bind python-file-queue before installing the kill-emacs-hook.
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
567 (defvar python-file-queue nil
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
568 "Queue of Python temp files awaiting execution.
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
569 Currently-active file is at the head of the list.")
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
570
111753
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
571 (defcustom python-shell-prompt-alist
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
572 '(("ipython" . "^In \\[[0-9]+\\]: *")
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
573 (t . "^>>> "))
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
574 "Alist of Python input prompts.
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
575 Each element has the form (PROGRAM . REGEXP), where PROGRAM is
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
576 the value of `python-python-command' for the python process and
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
577 REGEXP is a regular expression matching the Python prompt.
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
578 PROGRAM can also be t, which specifies the default when no other
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
579 element matches `python-python-command'."
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
580 :type 'string
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
581 :group 'python
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
582 :version "24.1")
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
583
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
584 (defcustom python-shell-continuation-prompt-alist
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
585 '(("ipython" . "^ [.][.][.]+: *")
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
586 (t . "^[.][.][.] "))
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
587 "Alist of Python continued-line prompts.
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
588 Each element has the form (PROGRAM . REGEXP), where PROGRAM is
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
589 the value of `python-python-command' for the python process and
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
590 REGEXP is a regular expression matching the Python prompt for
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
591 continued lines.
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
592 PROGRAM can also be t, which specifies the default when no other
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
593 element matches `python-python-command'."
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
594 :type 'string
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
595 :group 'python
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
596 :version "24.1")
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
597
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
598 (defvar python-pdbtrack-is-tracking-p nil)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
599
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
600 (defconst python-pdbtrack-stack-entry-regexp
107240
8953c1cd8568 Minor Python mode fix (Bug#5653).
Chong Yidong <cyd@stupidchicken.com>
parents: 106980
diff changeset
601 "^> \\(.*\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_<>]+\\)()"
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
602 "Regular expression pdbtrack uses to find a stack trace entry.")
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
603
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
604 (defconst python-pdbtrack-input-prompt "\n[(<]*[Pp]db[>)]+ "
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
605 "Regular expression pdbtrack uses to recognize a pdb prompt.")
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
606
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
607 (defconst python-pdbtrack-track-range 10000
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
608 "Max number of characters from end of buffer to search for stack entry.")
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
609
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
610 (defun python-guess-indent ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
611 "Guess step for indentation of current buffer.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
612 Set `python-indent' locally to the value guessed."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
613 (interactive)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
614 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
615 (save-restriction
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
616 (widen)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
617 (goto-char (point-min))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
618 (let (done indent)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
619 (while (and (not done) (not (eobp)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
620 (when (and (re-search-forward (rx ?: (0+ space)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
621 (or (syntax comment-start)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
622 line-end))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
623 nil 'move)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
624 (python-open-block-statement-p))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
625 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
626 (python-beginning-of-statement)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
627 (let ((initial (current-indentation)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
628 (if (zerop (python-next-statement))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
629 (setq indent (- (current-indentation) initial)))
77663
32334cd7302e (python-guess-indent): Check non-nullness before comparing indent against
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 77568
diff changeset
630 (if (and indent (>= indent 2) (<= indent 8)) ; sanity check
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
631 (setq done t))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
632 (when done
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
633 (when (/= indent (default-value 'python-indent))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
634 (set (make-local-variable 'python-indent) indent)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
635 (unless (= tab-width python-indent)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
636 (setq indent-tabs-mode nil)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
637 indent)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
638
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
639 ;; Alist of possible indentations and start of statement they would
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
640 ;; close. Used in indentation cycling (below).
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
641 (defvar python-indent-list nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
642 "Internal use.")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
643 ;; Length of the above
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
644 (defvar python-indent-list-length nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
645 "Internal use.")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
646 ;; Current index into the alist.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
647 (defvar python-indent-index nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
648 "Internal use.")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
649
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
650 (defun python-calculate-indentation ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
651 "Calculate Python indentation for line at point."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
652 (setq python-indent-list nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
653 python-indent-list-length 1)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
654 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
655 (beginning-of-line)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
656 (let ((syntax (syntax-ppss))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
657 start)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
658 (cond
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
659 ((eq 'string (syntax-ppss-context syntax)) ; multi-line string
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
660 (if (not python-indent-string-contents)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
661 (current-indentation)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
662 ;; Only respect `python-indent-string-contents' in doc
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
663 ;; strings (defined as those which form statements).
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
664 (if (not (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
665 (python-beginning-of-statement)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
666 (looking-at (rx (or (syntax string-delimiter)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
667 (syntax string-quote))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
668 (current-indentation)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
669 ;; Find indentation of preceding non-blank line within string.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
670 (setq start (nth 8 syntax))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
671 (forward-line -1)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
672 (while (and (< start (point)) (looking-at "\\s-*$"))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
673 (forward-line -1))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
674 (current-indentation))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
675 ((python-continuation-line-p) ; after backslash, or bracketed
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
676 (let ((point (point))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
677 (open-start (cadr syntax))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
678 (backslash (python-backslash-continuation-line-p))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
679 (colon (eq ?: (char-before (1- (line-beginning-position))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
680 (if open-start
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
681 ;; Inside bracketed expression.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
682 (progn
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
683 (goto-char (1+ open-start))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
684 ;; Look for first item in list (preceding point) and
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
685 ;; align with it, if found.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
686 (if (with-syntax-table python-space-backslash-table
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
687 (let ((parse-sexp-ignore-comments t))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
688 (condition-case ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
689 (progn (forward-sexp)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
690 (backward-sexp)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
691 (< (point) point))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
692 (error nil))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
693 ;; Extra level if we're backslash-continued or
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
694 ;; following a key.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
695 (if (or backslash colon)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
696 (+ python-indent (current-column))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
697 (current-column))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
698 ;; Otherwise indent relative to statement start, one
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
699 ;; level per bracketing level.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
700 (goto-char (1+ open-start))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
701 (python-beginning-of-statement)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
702 (+ (current-indentation) (* (car syntax) python-indent))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
703 ;; Otherwise backslash-continued.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
704 (forward-line -1)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
705 (if (python-continuation-line-p)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
706 ;; We're past first continuation line. Align with
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
707 ;; previous line.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
708 (current-indentation)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
709 ;; First continuation line. Indent one step, with an
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
710 ;; extra one if statement opens a block.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
711 (python-beginning-of-statement)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
712 (+ (current-indentation) python-continuation-offset
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
713 (if (python-open-block-statement-p t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
714 python-indent
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
715 0))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
716 ((bobp) 0)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
717 ;; Fixme: Like python-mode.el; not convinced by this.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
718 ((looking-at (rx (0+ space) (syntax comment-start)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
719 (not (any " \t\n")))) ; non-indentable comment
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
720 (current-indentation))
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
721 ((and python-honour-comment-indentation
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
722 ;; Back over whitespace, newlines, non-indentable comments.
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
723 (catch 'done
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
724 (while (cond ((bobp) nil)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
725 ((not (forward-comment -1))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
726 nil) ; not at comment start
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
727 ;; Now at start of comment -- trailing one?
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
728 ((/= (current-column) (current-indentation))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
729 nil)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
730 ;; Indentable comment, like python-mode.el?
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
731 ((and (looking-at (rx (syntax comment-start)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
732 (or space line-end)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
733 (/= 0 (current-column)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
734 (throw 'done (current-column)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
735 ;; Else skip it (loop).
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
736 (t))))))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
737 (t
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
738 (python-indentation-levels)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
739 ;; Prefer to indent comments with an immediately-following
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
740 ;; statement, e.g.
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
741 ;; ...
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
742 ;; # ...
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
743 ;; def ...
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
744 (when (and (> python-indent-list-length 1)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
745 (python-comment-line-p))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
746 (forward-line)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
747 (unless (python-comment-line-p)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
748 (let ((elt (assq (current-indentation) python-indent-list)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
749 (setq python-indent-list
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
750 (nconc (delete elt python-indent-list)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
751 (list elt))))))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
752 (caar (last python-indent-list)))))))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
753
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
754 ;;;; Cycling through the possible indentations with successive TABs.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
755
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
756 ;; These don't need to be buffer-local since they're only relevant
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
757 ;; during a cycle.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
758
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
759 (defun python-initial-text ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
760 "Text of line following indentation and ignoring any trailing comment."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
761 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
762 (buffer-substring (progn
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
763 (back-to-indentation)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
764 (point))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
765 (progn
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
766 (end-of-line)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
767 (forward-comment -1)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
768 (point)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
769
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
770 (defconst python-block-pairs
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
771 '(("else" "if" "elif" "while" "for" "try" "except")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
772 ("elif" "if" "elif")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
773 ("except" "try" "except")
110115
fae81355c62c * progmodes/python.el (python-block-pairs): Allow use of "finally" with "else" (Bug#3991).
Chong Yidong <cyd@stupidchicken.com>
parents: 109300
diff changeset
774 ("finally" "else" "try" "except"))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
775 "Alist of keyword matches.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
776 The car of an element is a keyword introducing a statement which
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
777 can close a block opened by a keyword in the cdr.")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
778
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
779 (defun python-first-word ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
780 "Return first word (actually symbol) on the line."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
781 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
782 (back-to-indentation)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
783 (current-word t)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
784
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
785 (defun python-indentation-levels ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
786 "Return a list of possible indentations for this line.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
787 It is assumed not to be a continuation line or in a multi-line string.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
788 Includes the default indentation and those which would close all
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
789 enclosing blocks. Elements of the list are actually pairs:
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
790 \(INDENTATION . TEXT), where TEXT is the initial text of the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
791 corresponding block opening (or nil)."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
792 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
793 (let ((initial "")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
794 levels indent)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
795 ;; Only one possibility immediately following a block open
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
796 ;; statement, assuming it doesn't have a `suite' on the same line.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
797 (cond
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
798 ((save-excursion (and (python-previous-statement)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
799 (python-open-block-statement-p t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
800 (setq indent (current-indentation))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
801 ;; Check we don't have something like:
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
802 ;; if ...: ...
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
803 (if (progn (python-end-of-statement)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
804 (python-skip-comments/blanks t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
805 (eq ?: (char-before)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
806 (setq indent (+ python-indent indent)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
807 (push (cons indent initial) levels))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
808 ;; Only one possibility for comment line immediately following
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
809 ;; another.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
810 ((save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
811 (when (python-comment-line-p)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
812 (forward-line -1)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
813 (if (python-comment-line-p)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
814 (push (cons (current-indentation) initial) levels)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
815 ;; Fixme: Maybe have a case here which indents (only) first
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
816 ;; line after a lambda.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
817 (t
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
818 (let ((start (car (assoc (python-first-word) python-block-pairs))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
819 (python-previous-statement)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
820 ;; Is this a valid indentation for the line of interest?
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
821 (unless (or (if start ; potentially only outdentable
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
822 ;; Check for things like:
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
823 ;; if ...: ...
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
824 ;; else ...:
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
825 ;; where the second line need not be outdented.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
826 (not (member (python-first-word)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
827 (cdr (assoc start
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
828 python-block-pairs)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
829 ;; Not sensible to indent to the same level as
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
830 ;; previous `return' &c.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
831 (python-close-block-statement-p))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
832 (push (cons (current-indentation) (python-initial-text))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
833 levels))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
834 (while (python-beginning-of-block)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
835 (when (or (not start)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
836 (member (python-first-word)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
837 (cdr (assoc start python-block-pairs))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
838 (push (cons (current-indentation) (python-initial-text))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
839 levels))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
840 (prog1 (or levels (setq levels '((0 . ""))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
841 (setq python-indent-list levels
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
842 python-indent-list-length (length python-indent-list))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
843
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
844 ;; This is basically what `python-indent-line' would be if we didn't
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
845 ;; do the cycling.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
846 (defun python-indent-line-1 (&optional leave)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
847 "Subroutine of `python-indent-line'.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
848 Does non-repeated indentation. LEAVE non-nil means leave
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
849 indentation if it is valid, i.e. one of the positions returned by
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
850 `python-calculate-indentation'."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
851 (let ((target (python-calculate-indentation))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
852 (pos (- (point-max) (point))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
853 (if (or (= target (current-indentation))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
854 ;; Maybe keep a valid indentation.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
855 (and leave python-indent-list
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
856 (assq (current-indentation) python-indent-list)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
857 (if (< (current-column) (current-indentation))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
858 (back-to-indentation))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
859 (beginning-of-line)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
860 (delete-horizontal-space)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
861 (indent-to target)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
862 (if (> (- (point-max) pos) (point))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
863 (goto-char (- (point-max) pos))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
864
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
865 (defun python-indent-line ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
866 "Indent current line as Python code.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
867 When invoked via `indent-for-tab-command', cycle through possible
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
868 indentations for current line. The cycle is broken by a command
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
869 different from `indent-for-tab-command', i.e. successive TABs do
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
870 the cycling."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
871 (interactive)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
872 (if (and (eq this-command 'indent-for-tab-command)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
873 (eq last-command this-command))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
874 (if (= 1 python-indent-list-length)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
875 (message "Sole indentation")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
876 (progn (setq python-indent-index
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
877 (% (1+ python-indent-index) python-indent-list-length))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
878 (beginning-of-line)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
879 (delete-horizontal-space)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
880 (indent-to (car (nth python-indent-index python-indent-list)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
881 (if (python-block-end-p)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
882 (let ((text (cdr (nth python-indent-index
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
883 python-indent-list))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
884 (if text
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
885 (message "Closes: %s" text))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
886 (python-indent-line-1)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
887 (setq python-indent-index (1- python-indent-list-length))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
888
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
889 (defun python-indent-region (start end)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
890 "`indent-region-function' for Python.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
891 Leaves validly-indented lines alone, i.e. doesn't indent to
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
892 another valid position."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
893 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
894 (goto-char end)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
895 (setq end (point-marker))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
896 (goto-char start)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
897 (or (bolp) (forward-line 1))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
898 (while (< (point) end)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
899 (or (and (bolp) (eolp))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
900 (python-indent-line-1 t))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
901 (forward-line 1))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
902 (move-marker end nil)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
903
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
904 (defun python-block-end-p ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
905 "Non-nil if this is a line in a statement closing a block,
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
906 or a blank line indented to where it would close a block."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
907 (and (not (python-comment-line-p))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
908 (or (python-close-block-statement-p t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
909 (< (current-indentation)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
910 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
911 (python-previous-statement)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
912 (current-indentation))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
913
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
914 ;;;; Movement.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
915
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
916 ;; Fixme: Define {for,back}ward-sexp-function? Maybe skip units like
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
917 ;; block, statement, depending on context.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
918
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
919 (defun python-beginning-of-defun ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
920 "`beginning-of-defun-function' for Python.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
921 Finds beginning of innermost nested class or method definition.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
922 Returns the name of the definition found at the end, or nil if
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
923 reached start of buffer."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
924 (let ((ci (current-indentation))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
925 (def-re (rx line-start (0+ space) (or "def" "class") (1+ space)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
926 (group (1+ (or word (syntax symbol))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
927 found lep) ;; def-line
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
928 (if (python-comment-line-p)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
929 (setq ci most-positive-fixnum))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
930 (while (and (not (bobp)) (not found))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
931 ;; Treat bol at beginning of function as outside function so
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
932 ;; that successive C-M-a makes progress backwards.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
933 ;;(setq def-line (looking-at def-re))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
934 (unless (bolp) (end-of-line))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
935 (setq lep (line-end-position))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
936 (if (and (re-search-backward def-re nil 'move)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
937 ;; Must be less indented or matching top level, or
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
938 ;; equally indented if we started on a definition line.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
939 (let ((in (current-indentation)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
940 (or (and (zerop ci) (zerop in))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
941 (= lep (line-end-position)) ; on initial line
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
942 ;; Not sure why it was like this -- fails in case of
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
943 ;; last internal function followed by first
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
944 ;; non-def statement of the main body.
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
945 ;; (and def-line (= in ci))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
946 (= in ci)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
947 (< in ci)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
948 (not (python-in-string/comment)))
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
949 (setq found t)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
950 found))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
951
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
952 (defun python-end-of-defun ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
953 "`end-of-defun-function' for Python.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
954 Finds end of innermost nested class or method definition."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
955 (let ((orig (point))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
956 (pattern (rx line-start (0+ space) (or "def" "class") space)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
957 ;; Go to start of current block and check whether it's at top
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
958 ;; level. If it is, and not a block start, look forward for
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
959 ;; definition statement.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
960 (when (python-comment-line-p)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
961 (end-of-line)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
962 (forward-comment most-positive-fixnum))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
963 (if (not (python-open-block-statement-p))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
964 (python-beginning-of-block))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
965 (if (zerop (current-indentation))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
966 (unless (python-open-block-statement-p)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
967 (while (and (re-search-forward pattern nil 'move)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
968 (python-in-string/comment))) ; just loop
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
969 (unless (eobp)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
970 (beginning-of-line)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
971 ;; Don't move before top-level statement that would end defun.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
972 (end-of-line)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
973 (python-beginning-of-defun))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
974 ;; If we got to the start of buffer, look forward for
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
975 ;; definition statement.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
976 (if (and (bobp) (not (looking-at "def\\|class")))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
977 (while (and (not (eobp))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
978 (re-search-forward pattern nil 'move)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
979 (python-in-string/comment)))) ; just loop
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
980 ;; We're at a definition statement (or end-of-buffer).
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
981 (unless (eobp)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
982 (python-end-of-block)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
983 ;; Count trailing space in defun (but not trailing comments).
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
984 (skip-syntax-forward " >")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
985 (unless (eobp) ; e.g. missing final newline
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
986 (beginning-of-line)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
987 ;; Catch pathological cases like this, where the beginning-of-defun
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
988 ;; skips to a definition we're not in:
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
989 ;; if ...:
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
990 ;; ...
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
991 ;; else:
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
992 ;; ... # point here
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
993 ;; ...
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
994 ;; def ...
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
995 (if (< (point) orig)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
996 (goto-char (point-max)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
997
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
998 (defun python-beginning-of-statement ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
999 "Go to start of current statement.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1000 Accounts for continuation lines, multi-line strings, and
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1001 multi-line bracketed expressions."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1002 (beginning-of-line)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1003 (python-beginning-of-string)
94590
b4b1e6b43d64 Dave Love <fx at gnu.org>
Glenn Morris <rgm@gnu.org>
parents: 94139
diff changeset
1004 (let (point)
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1005 (while (and (python-continuation-line-p)
94590
b4b1e6b43d64 Dave Love <fx at gnu.org>
Glenn Morris <rgm@gnu.org>
parents: 94139
diff changeset
1006 (if point
b4b1e6b43d64 Dave Love <fx at gnu.org>
Glenn Morris <rgm@gnu.org>
parents: 94139
diff changeset
1007 (< (point) point)
b4b1e6b43d64 Dave Love <fx at gnu.org>
Glenn Morris <rgm@gnu.org>
parents: 94139
diff changeset
1008 t))
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1009 (beginning-of-line)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1010 (if (python-backslash-continuation-line-p)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1011 (progn
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1012 (forward-line -1)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1013 (while (python-backslash-continuation-line-p)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1014 (forward-line -1)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1015 (python-beginning-of-string)
94590
b4b1e6b43d64 Dave Love <fx at gnu.org>
Glenn Morris <rgm@gnu.org>
parents: 94139
diff changeset
1016 (python-skip-out))
b4b1e6b43d64 Dave Love <fx at gnu.org>
Glenn Morris <rgm@gnu.org>
parents: 94139
diff changeset
1017 (setq point (point))))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1018 (back-to-indentation))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1019
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1020 (defun python-skip-out (&optional forward syntax)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1021 "Skip out of any nested brackets.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1022 Skip forward if FORWARD is non-nil, else backward.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1023 If SYNTAX is non-nil it is the state returned by `syntax-ppss' at point.
94740
464e6f78f756 (python-comment-line-p, python-blank-line-p, python-skip-out,
Juanma Barranquero <lekktu@gmail.com>
parents: 94673
diff changeset
1024 Return non-nil if and only if skipping was done."
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1025 (let ((depth (syntax-ppss-depth (or syntax (syntax-ppss))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1026 (forward (if forward -1 1)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1027 (unless (zerop depth)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1028 (if (> depth 0)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1029 ;; Skip forward out of nested brackets.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1030 (condition-case () ; beware invalid syntax
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1031 (progn (backward-up-list (* forward depth)) t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1032 (error nil))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1033 ;; Invalid syntax (too many closed brackets).
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1034 ;; Skip out of as many as possible.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1035 (let (done)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1036 (while (condition-case ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1037 (progn (backward-up-list forward)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1038 (setq done t))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1039 (error nil)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1040 done)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1041
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1042 (defun python-end-of-statement ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1043 "Go to the end of the current statement and return point.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1044 Usually this is the start of the next line, but if this is a
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1045 multi-line statement we need to skip over the continuation lines.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1046 On a comment line, go to end of line."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1047 (end-of-line)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1048 (while (let (comment)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1049 ;; Move past any enclosing strings and sexps, or stop if
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1050 ;; we're in a comment.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1051 (while (let ((s (syntax-ppss)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1052 (cond ((eq 'comment (syntax-ppss-context s))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1053 (setq comment t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1054 nil)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1055 ((eq 'string (syntax-ppss-context s))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1056 ;; Go to start of string and skip it.
80881
4882ec1204fb (python-end-of-block): Revert last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 80874
diff changeset
1057 (let ((pos (point)))
4882ec1204fb (python-end-of-block): Revert last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 80874
diff changeset
1058 (goto-char (nth 8 s))
4882ec1204fb (python-end-of-block): Revert last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 80874
diff changeset
1059 (condition-case () ; beware invalid syntax
4882ec1204fb (python-end-of-block): Revert last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 80874
diff changeset
1060 (progn (forward-sexp) t)
4882ec1204fb (python-end-of-block): Revert last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 80874
diff changeset
1061 ;; If there's a mismatched string, make sure
4882ec1204fb (python-end-of-block): Revert last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 80874
diff changeset
1062 ;; we still overall move *forward*.
4882ec1204fb (python-end-of-block): Revert last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 80874
diff changeset
1063 (error (goto-char pos) (end-of-line)))))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1064 ((python-skip-out t s))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1065 (end-of-line))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1066 (unless comment
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1067 (eq ?\\ (char-before)))) ; Line continued?
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1068 (end-of-line 2)) ; Try next line.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1069 (point))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1070
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1071 (defun python-previous-statement (&optional count)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1072 "Go to start of previous statement.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1073 With argument COUNT, do it COUNT times. Stop at beginning of buffer.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1074 Return count of statements left to move."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1075 (interactive "p")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1076 (unless count (setq count 1))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1077 (if (< count 0)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1078 (python-next-statement (- count))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1079 (python-beginning-of-statement)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1080 (while (and (> count 0) (not (bobp)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1081 (python-skip-comments/blanks t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1082 (python-beginning-of-statement)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1083 (unless (bobp) (setq count (1- count))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1084 count))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1085
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1086 (defun python-next-statement (&optional count)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1087 "Go to start of next statement.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1088 With argument COUNT, do it COUNT times. Stop at end of buffer.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1089 Return count of statements left to move."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1090 (interactive "p")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1091 (unless count (setq count 1))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1092 (if (< count 0)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1093 (python-previous-statement (- count))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1094 (beginning-of-line)
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1095 (let (bogus)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1096 (while (and (> count 0) (not (eobp)) (not bogus))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1097 (python-end-of-statement)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1098 (python-skip-comments/blanks)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1099 (if (eq 'string (syntax-ppss-context (syntax-ppss)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1100 (setq bogus t)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1101 (unless (eobp)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1102 (setq count (1- count))))))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1103 count))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1104
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1105 (defun python-beginning-of-block (&optional arg)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1106 "Go to start of current block.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1107 With numeric arg, do it that many times. If ARG is negative, call
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1108 `python-end-of-block' instead.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1109 If point is on the first line of a block, use its outer block.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1110 If current statement is in column zero, don't move and return nil.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1111 Otherwise return non-nil."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1112 (interactive "p")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1113 (unless arg (setq arg 1))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1114 (cond
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1115 ((zerop arg))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1116 ((< arg 0) (python-end-of-block (- arg)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1117 (t
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1118 (let ((point (point)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1119 (if (or (python-comment-line-p)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1120 (python-blank-line-p))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1121 (python-skip-comments/blanks t))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1122 (python-beginning-of-statement)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1123 (let ((ci (current-indentation)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1124 (if (zerop ci)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1125 (not (goto-char point)) ; return nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1126 ;; Look upwards for less indented statement.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1127 (if (catch 'done
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1128 ;;; This is slower than the below.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1129 ;;; (while (zerop (python-previous-statement))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1130 ;;; (when (and (< (current-indentation) ci)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1131 ;;; (python-open-block-statement-p t))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1132 ;;; (beginning-of-line)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1133 ;;; (throw 'done t)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1134 (while (and (zerop (forward-line -1)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1135 (when (and (< (current-indentation) ci)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1136 (not (python-comment-line-p))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1137 ;; Move to beginning to save effort in case
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1138 ;; this is in string.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1139 (progn (python-beginning-of-statement) t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1140 (python-open-block-statement-p t))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1141 (beginning-of-line)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1142 (throw 'done t)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1143 (not (goto-char point))) ; Failed -- return nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1144 (python-beginning-of-block (1- arg)))))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1145
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1146 (defun python-end-of-block (&optional arg)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1147 "Go to end of current block.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1148 With numeric arg, do it that many times. If ARG is negative,
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1149 call `python-beginning-of-block' instead.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1150 If current statement is in column zero and doesn't open a block,
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1151 don't move and return nil. Otherwise return t."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1152 (interactive "p")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1153 (unless arg (setq arg 1))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1154 (if (< arg 0)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1155 (python-beginning-of-block (- arg))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1156 (while (and (> arg 0)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1157 (let* ((point (point))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1158 (_ (if (python-comment-line-p)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1159 (python-skip-comments/blanks t)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1160 (ci (current-indentation))
80881
4882ec1204fb (python-end-of-block): Revert last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 80874
diff changeset
1161 (open (python-open-block-statement-p)))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1162 (if (and (zerop ci) (not open))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1163 (not (goto-char point))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1164 (catch 'done
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1165 (while (zerop (python-next-statement))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1166 (when (or (and open (<= (current-indentation) ci))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1167 (< (current-indentation) ci))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1168 (python-skip-comments/blanks t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1169 (beginning-of-line 2)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1170 (throw 'done t)))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1171 (setq arg (1- arg)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1172 (zerop arg)))
81824
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
1173
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
1174 (defvar python-which-func-length-limit 40
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
1175 "Non-strict length limit for `python-which-func' output.")
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
1176
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
1177 (defun python-which-func ()
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
1178 (let ((function-name (python-current-defun python-which-func-length-limit)))
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
1179 (set-text-properties 0 (length function-name) nil function-name)
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
1180 function-name))
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
1181
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1182
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1183 ;;;; Imenu.
82224
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
1184
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1185 ;; For possibily speeding this up, here's the top of the ELP profile
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1186 ;; for rescanning pydoc.py (2.2k lines, 90kb):
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1187 ;; Function Name Call Count Elapsed Time Average Time
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1188 ;; ==================================== ========== ============= ============
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1189 ;; python-imenu-create-index 156 2.430906 0.0155827307
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1190 ;; python-end-of-defun 155 1.2718260000 0.0082053290
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1191 ;; python-end-of-block 155 1.1898689999 0.0076765741
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1192 ;; python-next-statement 2970 1.024717 0.0003450225
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1193 ;; python-end-of-statement 2970 0.4332190000 0.0001458649
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1194 ;; python-beginning-of-defun 265 0.0918479999 0.0003465962
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1195 ;; python-skip-comments/blanks 3125 0.0753319999 2.410...e-05
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1196
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1197 (defvar python-recursing)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1198 (defun python-imenu-create-index ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1199 "`imenu-create-index-function' for Python.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1200
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1201 Makes nested Imenu menus from nested `class' and `def' statements.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1202 The nested menus are headed by an item referencing the outer
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1203 definition; it has a space prepended to the name so that it sorts
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1204 first with `imenu--sort-by-name' (though, unfortunately, sub-menus
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1205 precede it)."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1206 (unless (boundp 'python-recursing) ; dynamically bound below
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1207 ;; Normal call from Imenu.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1208 (goto-char (point-min))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1209 ;; Without this, we can get an infloop if the buffer isn't all
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1210 ;; fontified. I guess this is really a bug in syntax.el. OTOH,
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1211 ;; _with_ this, imenu doesn't immediately work; I can't figure out
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1212 ;; what's going on, but it must be something to do with timers in
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1213 ;; font-lock.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1214 ;; This can't be right, especially not when jit-lock is not used. --Stef
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1215 ;; (unless (get-text-property (1- (point-max)) 'fontified)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1216 ;; (font-lock-fontify-region (point-min) (point-max)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1217 )
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1218 (let (index-alist) ; accumulated value to return
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1219 (while (re-search-forward
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1220 (rx line-start (0+ space) ; leading space
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1221 (or (group "def") (group "class")) ; type
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1222 (1+ space) (group (1+ (or word ?_)))) ; name
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1223 nil t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1224 (unless (python-in-string/comment)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1225 (let ((pos (match-beginning 0))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1226 (name (match-string-no-properties 3)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1227 (if (match-beginning 2) ; def or class?
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1228 (setq name (concat "class " name)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1229 (save-restriction
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1230 (narrow-to-defun)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1231 (let* ((python-recursing t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1232 (sublist (python-imenu-create-index)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1233 (if sublist
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1234 (progn (push (cons (concat " " name) pos) sublist)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1235 (push (cons name sublist) index-alist))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1236 (push (cons name pos) index-alist)))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1237 (unless (boundp 'python-recursing)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1238 ;; Look for module variables.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1239 (let (vars)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1240 (goto-char (point-min))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1241 (while (re-search-forward
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1242 (rx line-start (group (1+ (or word ?_))) (0+ space) "=")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1243 nil t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1244 (unless (python-in-string/comment)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1245 (push (cons (match-string 1) (match-beginning 1))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1246 vars)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1247 (setq index-alist (nreverse index-alist))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1248 (if vars
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1249 (push (cons "Module variables"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1250 (nreverse vars))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1251 index-alist))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1252 index-alist))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1253
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1254 ;;;; `Electric' commands.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1255
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1256 (defun python-electric-colon (arg)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1257 "Insert a colon and maybe outdent the line if it is a statement like `else'.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1258 With numeric ARG, just insert that many colons. With \\[universal-argument],
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1259 just insert a single colon."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1260 (interactive "*P")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1261 (self-insert-command (if (not (integerp arg)) 1 arg))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1262 (and (not arg)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1263 (eolp)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1264 (python-outdent-p)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1265 (not (python-in-string/comment))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1266 (> (current-indentation) (python-calculate-indentation))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1267 (python-indent-line))) ; OK, do it
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1268 (put 'python-electric-colon 'delete-selection t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1269
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1270 (defun python-backspace (arg)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1271 "Maybe delete a level of indentation on the current line.
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
1272 Do so if point is at the end of the line's indentation outside
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
1273 strings and comments.
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1274 Otherwise just call `backward-delete-char-untabify'.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1275 Repeat ARG times."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1276 (interactive "*p")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1277 (if (or (/= (current-indentation) (current-column))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1278 (bolp)
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
1279 (python-continuation-line-p)
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
1280 (python-in-string/comment))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1281 (backward-delete-char-untabify arg)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1282 ;; Look for the largest valid indentation which is smaller than
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1283 ;; the current indentation.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1284 (let ((indent 0)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1285 (ci (current-indentation))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1286 (indents (python-indentation-levels))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1287 initial)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1288 (dolist (x indents)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1289 (if (< (car x) ci)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1290 (setq indent (max indent (car x)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1291 (setq initial (cdr (assq indent indents)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1292 (if (> (length initial) 0)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1293 (message "Closes %s" initial))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1294 (delete-horizontal-space)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1295 (indent-to indent))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1296 (put 'python-backspace 'delete-selection 'supersede)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1297
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1298 ;;;; pychecker
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1299
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1300 (defcustom python-check-command "pychecker --stdlib"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1301 "Command used to check a Python file."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1302 :type 'string
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1303 :group 'python)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1304
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1305 (defvar python-saved-check-command nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1306 "Internal use.")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1307
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1308 ;; After `sgml-validate-command'.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1309 (defun python-check (command)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1310 "Check a Python file (default current buffer's file).
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1311 Runs COMMAND, a shell command, as if by `compile'.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1312 See `python-check-command' for the default."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1313 (interactive
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1314 (list (read-string "Checker command: "
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1315 (or python-saved-check-command
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1316 (concat python-check-command " "
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1317 (let ((name (buffer-file-name)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1318 (if name
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1319 (file-name-nondirectory name))))))))
111870
b47e85affa59 Derive from prog-mode, use derived-mode-p, and fix up various
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 111779
diff changeset
1320 (set (make-local-variable 'python-saved-check-command) command)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1321 (require 'compile) ;To define compilation-* variables.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1322 (save-some-buffers (not compilation-ask-about-save) nil)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1323 (let ((compilation-error-regexp-alist
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1324 (cons '("(\\([^,]+\\), line \\([0-9]+\\))" 1 2)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1325 compilation-error-regexp-alist)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1326 (compilation-start command)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1327
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1328 ;;;; Inferior mode stuff (following cmuscheme).
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1329
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1330 (defcustom python-python-command "python"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1331 "Shell command to run Python interpreter.
111753
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1332 Any arguments can't contain whitespace."
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1333 :group 'python
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1334 :type 'string)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1335
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1336 (defcustom python-jython-command "jython"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1337 "Shell command to run Jython interpreter.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1338 Any arguments can't contain whitespace."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1339 :group 'python
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1340 :type 'string)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1341
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1342 (defvar python-command python-python-command
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1343 "Actual command used to run Python.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1344 May be `python-python-command' or `python-jython-command', possibly
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1345 modified by the user. Additional arguments are added when the command
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1346 is used by `run-python' et al.")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1347
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1348 (defvar python-buffer nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1349 "*The current Python process buffer.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1350
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1351 Commands that send text from source buffers to Python processes have
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1352 to choose a process to send to. This is determined by buffer-local
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1353 value of `python-buffer'. If its value in the current buffer,
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1354 i.e. both any local value and the default one, is nil, `run-python'
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1355 and commands that send to the Python process will start a new process.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1356
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1357 Whenever \\[run-python] starts a new process, it resets the default
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1358 value of `python-buffer' to be the new process's buffer and sets the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1359 buffer-local value similarly if the current buffer is in Python mode
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1360 or Inferior Python mode, so that source buffer stays associated with a
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1361 specific sub-process.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1362
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1363 Use \\[python-set-proc] to set the default value from a buffer with a
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1364 local value.")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1365 (make-variable-buffer-local 'python-buffer)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1366
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1367 (defconst python-compilation-regexp-alist
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1368 ;; FIXME: maybe these should move to compilation-error-regexp-alist-alist.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1369 ;; The first already is (for CAML), but the second isn't. Anyhow,
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1370 ;; these are specific to the inferior buffer. -- fx
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1371 `((,(rx line-start (1+ (any " \t")) "File \""
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1372 (group (1+ (not (any "\"<")))) ; avoid `<stdin>' &c
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1373 "\", line " (group (1+ digit)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1374 1 2)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1375 (,(rx " in file " (group (1+ not-newline)) " on line "
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1376 (group (1+ digit)))
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
1377 1 2)
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
1378 ;; pdb stack trace
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
1379 (,(rx line-start "> " (group (1+ (not (any "(\"<"))))
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
1380 "(" (group (1+ digit)) ")" (1+ (not (any "("))) "()")
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1381 1 2))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1382 "`compilation-error-regexp-alist' for inferior Python.")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1383
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1384 (defvar inferior-python-mode-map
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1385 (let ((map (make-sparse-keymap)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1386 ;; This will inherit from comint-mode-map.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1387 (define-key map "\C-c\C-l" 'python-load-file)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1388 (define-key map "\C-c\C-v" 'python-check)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1389 ;; Note that we _can_ still use these commands which send to the
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
1390 ;; Python process even at the prompt iff we have a normal prompt,
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1391 ;; i.e. '>>> ' and not '... '. See the comment before
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1392 ;; python-send-region. Fixme: uncomment these if we address that.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1393
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1394 ;; (define-key map [(meta ?\t)] 'python-complete-symbol)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1395 ;; (define-key map "\C-c\C-f" 'python-describe-symbol)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1396 map))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1397
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1398 (defvar inferior-python-mode-syntax-table
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1399 (let ((st (make-syntax-table python-mode-syntax-table)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1400 ;; Don't get confused by apostrophes in the process's output (e.g. if
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1401 ;; you execute "help(os)").
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1402 (modify-syntax-entry ?\' "." st)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1403 ;; Maybe we should do the same for double quotes?
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1404 ;; (modify-syntax-entry ?\" "." st)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1405 st))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1406
87057
309e0523903f (compilation-shell-minor-mode): Declare as a function.
Glenn Morris <rgm@gnu.org>
parents: 86970
diff changeset
1407 ;; Autoloaded.
309e0523903f (compilation-shell-minor-mode): Declare as a function.
Glenn Morris <rgm@gnu.org>
parents: 86970
diff changeset
1408 (declare-function compilation-shell-minor-mode "compile" (&optional arg))
309e0523903f (compilation-shell-minor-mode): Declare as a function.
Glenn Morris <rgm@gnu.org>
parents: 86970
diff changeset
1409
111753
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1410 (defvar python--prompt-regexp nil)
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1411
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1412 (defun python--set-prompt-regexp ()
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1413 (let ((prompt (cdr-safe (or (assoc python-python-command
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1414 python-shell-prompt-alist)
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1415 (assq t python-shell-prompt-alist))))
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1416 (cprompt (cdr-safe (or (assoc python-python-command
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1417 python-shell-continuation-prompt-alist)
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1418 (assq t python-shell-continuation-prompt-alist)))))
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1419 (set (make-local-variable 'comint-prompt-regexp)
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1420 (concat "\\("
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1421 (mapconcat 'identity
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1422 (delq nil (list prompt cprompt "^([Pp]db) "))
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1423 "\\|")
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1424 "\\)"))
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1425 (set (make-local-variable 'python--prompt-regexp) prompt)))
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1426
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1427 ;; Fixme: This should inherit some stuff from `python-mode', but I'm
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1428 ;; not sure how much: at least some keybindings, like C-c C-f;
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1429 ;; syntax?; font-locking, e.g. for triple-quoted strings?
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1430 (define-derived-mode inferior-python-mode comint-mode "Inferior Python"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1431 "Major mode for interacting with an inferior Python process.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1432 A Python process can be started with \\[run-python].
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1433
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1434 Hooks `comint-mode-hook' and `inferior-python-mode-hook' are run in
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1435 that order.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1436
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1437 You can send text to the inferior Python process from other buffers
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1438 containing Python source.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1439 * \\[python-switch-to-python] switches the current buffer to the Python
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1440 process buffer.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1441 * \\[python-send-region] sends the current region to the Python process.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1442 * \\[python-send-region-and-go] switches to the Python process buffer
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1443 after sending the text.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1444 For running multiple processes in multiple buffers, see `run-python' and
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1445 `python-buffer'.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1446
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1447 \\{inferior-python-mode-map}"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1448 :group 'python
111753
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1449 (require 'ansi-color) ; for ipython
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1450 (setq mode-line-process '(":%s"))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1451 (set (make-local-variable 'comint-input-filter) 'python-input-filter)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1452 (add-hook 'comint-preoutput-filter-functions #'python-preoutput-filter
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1453 nil t)
111753
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1454 (python--set-prompt-regexp)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1455 (set (make-local-variable 'compilation-error-regexp-alist)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1456 python-compilation-regexp-alist)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1457 (compilation-shell-minor-mode 1))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1458
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1459 (defcustom inferior-python-filter-regexp "\\`\\s-*\\S-?\\S-?\\s-*\\'"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1460 "Input matching this regexp is not saved on the history list.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1461 Default ignores all inputs of 0, 1, or 2 non-blank characters."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1462 :type 'regexp
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1463 :group 'python)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1464
111752
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1465 (defcustom python-remove-cwd-from-path t
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1466 "Whether to allow loading of Python modules from the current directory.
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1467 If this is non-nil, Emacs removes '' from sys.path when starting
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1468 an inferior Python process. This is the default, for security
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1469 reasons, as it is easy for the Python process to be started
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1470 without the user's realization (e.g. to perform completion)."
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1471 :type 'boolean
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1472 :group 'python
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1473 :version "23.3")
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1474
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1475 (defun python-input-filter (str)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1476 "`comint-input-filter' function for inferior Python.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1477 Don't save anything for STR matching `inferior-python-filter-regexp'."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1478 (not (string-match inferior-python-filter-regexp str)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1479
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1480 ;; Fixme: Loses with quoted whitespace.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1481 (defun python-args-to-list (string)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1482 (let ((where (string-match "[ \t]" string)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1483 (cond ((null where) (list string))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1484 ((not (= where 0))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1485 (cons (substring string 0 where)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1486 (python-args-to-list (substring string (+ 1 where)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1487 (t (let ((pos (string-match "[^ \t]" string)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1488 (if pos (python-args-to-list (substring string pos))))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1489
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1490 (defvar python-preoutput-result nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1491 "Data from last `_emacs_out' line seen by the preoutput filter.")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1492
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1493 (defvar python-preoutput-continuation nil
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1494 "If non-nil, funcall this when `python-preoutput-filter' sees `_emacs_ok'.")
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1495
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1496 (defvar python-preoutput-leftover nil)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1497 (defvar python-preoutput-skip-next-prompt nil)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1498
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1499 ;; Using this stops us getting lines in the buffer like
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1500 ;; >>> ... ... >>>
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1501 ;; Also look for (and delete) an `_emacs_ok' string and call
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1502 ;; `python-preoutput-continuation' if we get it.
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1503 (defun python-preoutput-filter (s)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1504 "`comint-preoutput-filter-functions' function: ignore prompts not at bol."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1505 (when python-preoutput-leftover
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1506 (setq s (concat python-preoutput-leftover s))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1507 (setq python-preoutput-leftover nil))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1508 (let ((start 0)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1509 (res ""))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1510 ;; First process whole lines.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1511 (while (string-match "\n" s start)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1512 (let ((line (substring s start (setq start (match-end 0)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1513 ;; Skip prompt if needed.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1514 (when (and python-preoutput-skip-next-prompt
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1515 (string-match comint-prompt-regexp line))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1516 (setq python-preoutput-skip-next-prompt nil)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1517 (setq line (substring line (match-end 0))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1518 ;; Recognize special _emacs_out lines.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1519 (if (and (string-match "\\`_emacs_out \\(.*\\)\n\\'" line)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1520 (local-variable-p 'python-preoutput-result))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1521 (progn
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1522 (setq python-preoutput-result (match-string 1 line))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1523 (set (make-local-variable 'python-preoutput-skip-next-prompt) t))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1524 (setq res (concat res line)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1525 ;; Then process the remaining partial line.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1526 (unless (zerop start) (setq s (substring s start)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1527 (cond ((and (string-match comint-prompt-regexp s)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1528 ;; Drop this prompt if it follows an _emacs_out...
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1529 (or python-preoutput-skip-next-prompt
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1530 ;; ... or if it's not gonna be inserted at BOL.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1531 ;; Maybe we could be more selective here.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1532 (if (zerop (length res))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1533 (not (bolp))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1534 (string-match ".\\'" res))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1535 ;; The need for this seems to be system-dependent:
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1536 ;; What is this all about, exactly? --Stef
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1537 ;; (if (and (eq ?. (aref s 0)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1538 ;; (accept-process-output (get-buffer-process (current-buffer)) 1))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1539 (setq python-preoutput-skip-next-prompt nil)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1540 res)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1541 ((let ((end (min (length "_emacs_out ") (length s))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1542 (eq t (compare-strings s nil end "_emacs_out " nil end)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1543 ;; The leftover string is a prefix of _emacs_out so we don't know
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1544 ;; yet whether it's an _emacs_out or something else: wait until we
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1545 ;; get more output so we can resolve this ambiguity.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1546 (set (make-local-variable 'python-preoutput-leftover) s)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1547 res)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1548 (t (concat res s)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1549
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1550 (autoload 'comint-check-proc "comint")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1551
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1552 (defvar python-version-checked nil)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1553 (defun python-check-version (cmd)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1554 "Check that CMD runs a suitable version of Python."
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1555 ;; Fixme: Check on Jython.
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1556 (unless (or python-version-checked
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1557 (equal 0 (string-match (regexp-quote python-python-command)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1558 cmd)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1559 (unless (shell-command-to-string cmd)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1560 (error "Can't run Python command `%s'" cmd))
111753
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1561 (let* ((res (shell-command-to-string
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1562 (concat cmd
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1563 " -c \"from sys import version_info;\
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1564 print version_info >= (2, 2) and version_info < (3, 0)\""))))
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1565 (unless (string-match "True" res)
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1566 (error "Only Python versions >= 2.2 and < 3.0 are supported")))
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1567 (setq python-version-checked t)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1568
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1569 ;;;###autoload
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1570 (defun run-python (&optional cmd noshow new)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1571 "Run an inferior Python process, input and output via buffer *Python*.
111752
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1572 CMD is the Python command to run. NOSHOW non-nil means don't
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1573 show the buffer automatically.
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1574
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1575 Interactively, a prefix arg means to prompt for the initial
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1576 Python command line (default is `python-command').
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1577
111752
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1578 A new process is started if one isn't running attached to
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1579 `python-buffer', or if called from Lisp with non-nil arg NEW.
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1580 Otherwise, if a process is already running in `python-buffer',
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1581 switch to that buffer.
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1582
111752
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1583 This command runs the hook `inferior-python-mode-hook' after
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1584 running `comint-mode-hook'. Type \\[describe-mode] in the
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1585 process buffer for a list of commands.
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1586
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1587 By default, Emacs inhibits the loading of Python modules from the
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1588 current working directory, for security reasons. To disable this
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1589 behavior, change `python-remove-cwd-from-path' to nil."
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1590 (interactive (if current-prefix-arg
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1591 (list (read-string "Run Python: " python-command) nil t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1592 (list python-command)))
111753
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1593 (require 'ansi-color) ; for ipython
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1594 (unless cmd (setq cmd python-command))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1595 (python-check-version cmd)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1596 (setq python-command cmd)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1597 ;; Fixme: Consider making `python-buffer' buffer-local as a buffer
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1598 ;; (not a name) in Python buffers from which `run-python' &c is
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1599 ;; invoked. Would support multiple processes better.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1600 (when (or new (not (comint-check-proc python-buffer)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1601 (with-current-buffer
97689
5f56382dc026 (run-python): Remove '' from sys.path.
Romain Francoise <romain@orebokech.com>
parents: 94740
diff changeset
1602 (let* ((cmdlist
111752
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1603 (append (python-args-to-list cmd) '("-i")
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1604 (if python-remove-cwd-from-path
3776ded7f730 Make the sys.path remove in Python mode customizable (Bug#7454).
Chong Yidong <cyd@stupidchicken.com>
parents: 111750
diff changeset
1605 '("-c" "import sys; sys.path.remove('')"))))
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1606 (path (getenv "PYTHONPATH"))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1607 (process-environment ; to import emacs.py
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1608 (cons (concat "PYTHONPATH="
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1609 (if path (concat path path-separator))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1610 data-directory)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1611 process-environment))
111753
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1612 ;; If we use a pipe, unicode characters are not printed
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1613 ;; correctly (Bug#5794) and IPython does not work at
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1614 ;; all (Bug#5390).
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1615 (process-connection-type t))
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1616 (apply 'make-comint-in-buffer "Python"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1617 (generate-new-buffer "*Python*")
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1618 (car cmdlist) nil (cdr cmdlist)))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1619 (setq-default python-buffer (current-buffer))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1620 (setq python-buffer (current-buffer))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1621 (accept-process-output (get-buffer-process python-buffer) 5)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1622 (inferior-python-mode)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1623 ;; Load function definitions we need.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1624 ;; Before the preoutput function was used, this was done via -c in
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1625 ;; cmdlist, but that loses the banner and doesn't run the startup
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1626 ;; file. The code might be inline here, but there's enough that it
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1627 ;; seems worth putting in a separate file, and it's probably cleaner
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1628 ;; to put it in a module.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1629 ;; Ensure we're at a prompt before doing anything else.
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1630 (python-send-string "import emacs")
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1631 ;; The following line was meant to ensure that we're at a prompt
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1632 ;; before doing anything else. However, this can cause Emacs to
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1633 ;; hang waiting for a response, if that Python function fails
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1634 ;; (i.e. raises an exception).
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1635 ;; (python-send-receive "print '_emacs_out ()'")
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1636 ))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1637 (if (derived-mode-p 'python-mode)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1638 (setq python-buffer (default-value 'python-buffer))) ; buffer-local
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1639 ;; Without this, help output goes into the inferior python buffer if
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1640 ;; the process isn't already running.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1641 (sit-for 1 t) ;Should we use accept-process-output instead? --Stef
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1642 (unless noshow (pop-to-buffer python-buffer t)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1643
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1644 (defun python-send-command (command)
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1645 "Like `python-send-string' but resets `compilation-shell-minor-mode'."
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1646 (when (python-check-comint-prompt)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1647 (with-current-buffer (process-buffer (python-proc))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1648 (goto-char (point-max))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1649 (compilation-forget-errors)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1650 (python-send-string command)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1651 (setq compilation-last-buffer (current-buffer)))))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1652
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1653 (defun python-send-region (start end)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1654 "Send the region to the inferior Python process."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1655 ;; The region is evaluated from a temporary file. This avoids
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1656 ;; problems with blank lines, which have different semantics
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1657 ;; interactively and in files. It also saves the inferior process
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1658 ;; buffer filling up with interpreter prompts. We need a Python
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1659 ;; function to remove the temporary file when it has been evaluated
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1660 ;; (though we could probably do it in Lisp with a Comint output
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1661 ;; filter). This function also catches exceptions and truncates
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1662 ;; tracebacks not to mention the frame of the function itself.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1663 ;;
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1664 ;; The `compilation-shell-minor-mode' parsing takes care of relating
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1665 ;; the reference to the temporary file to the source.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1666 ;;
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1667 ;; Fixme: Write a `coding' header to the temp file if the region is
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1668 ;; non-ASCII.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1669 (interactive "r")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1670 (let* ((f (make-temp-file "py"))
111753
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1671 (command
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1672 ;; IPython puts the FakeModule module into __main__ so
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1673 ;; emacs.eexecfile becomes useless.
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1674 (if (string-match "^ipython" python-command)
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1675 (format "execfile %S" f)
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1676 (format "emacs.eexecfile(%S)" f)))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1677 (orig-start (copy-marker start)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1678 (when (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1679 (goto-char start)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1680 (/= 0 (current-indentation))) ; need dummy block
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1681 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1682 (goto-char orig-start)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1683 ;; Wrong if we had indented code at buffer start.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1684 (set-marker orig-start (line-beginning-position 0)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1685 (write-region "if True:\n" nil f nil 'nomsg))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1686 (write-region start end f t 'nomsg)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1687 (python-send-command command)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1688 (with-current-buffer (process-buffer (python-proc))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1689 ;; Tell compile.el to redirect error locations in file `f' to
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1690 ;; positions past marker `orig-start'. It has to be done *after*
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1691 ;; `python-send-command''s call to `compilation-forget-errors'.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1692 (compilation-fake-loc orig-start f))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1693
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1694 (defun python-send-string (string)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1695 "Evaluate STRING in inferior Python process."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1696 (interactive "sPython command: ")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1697 (comint-send-string (python-proc) string)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1698 (unless (string-match "\n\\'" string)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1699 ;; Make sure the text is properly LF-terminated.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1700 (comint-send-string (python-proc) "\n"))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1701 (when (string-match "\n[ \t].*\n?\\'" string)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1702 ;; If the string contains a final indented line, add a second newline so
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1703 ;; as to make sure we terminate the multiline instruction.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1704 (comint-send-string (python-proc) "\n")))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1705
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1706 (defun python-send-buffer ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1707 "Send the current buffer to the inferior Python process."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1708 (interactive)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1709 (python-send-region (point-min) (point-max)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1710
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1711 ;; Fixme: Try to define the function or class within the relevant
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1712 ;; module, not just at top level.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1713 (defun python-send-defun ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1714 "Send the current defun (class or method) to the inferior Python process."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1715 (interactive)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1716 (save-excursion (python-send-region (progn (beginning-of-defun) (point))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1717 (progn (end-of-defun) (point)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1718
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1719 (defun python-switch-to-python (eob-p)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1720 "Switch to the Python process buffer, maybe starting new process.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1721 With prefix arg, position cursor at end of buffer."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1722 (interactive "P")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1723 (pop-to-buffer (process-buffer (python-proc)) t) ;Runs python if needed.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1724 (when eob-p
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1725 (push-mark)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1726 (goto-char (point-max))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1727
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1728 (defun python-send-region-and-go (start end)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1729 "Send the region to the inferior Python process.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1730 Then switch to the process buffer."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1731 (interactive "r")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1732 (python-send-region start end)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1733 (python-switch-to-python t))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1734
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1735 (defcustom python-source-modes '(python-mode jython-mode)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1736 "Used to determine if a buffer contains Python source code.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1737 If a file is loaded into a buffer that is in one of these major modes,
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1738 it is considered Python source by `python-load-file', which uses the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1739 value to determine defaults."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1740 :type '(repeat function)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1741 :group 'python)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1742
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1743 (defvar python-prev-dir/file nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1744 "Caches (directory . file) pair used in the last `python-load-file' command.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1745 Used for determining the default in the next one.")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1746
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1747 (autoload 'comint-get-source "comint")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1748
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1749 (defun python-load-file (file-name)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1750 "Load a Python file FILE-NAME into the inferior Python process.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1751 If the file has extension `.py' import or reload it as a module.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1752 Treating it as a module keeps the global namespace clean, provides
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1753 function location information for debugging, and supports users of
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1754 module-qualified names."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1755 (interactive (comint-get-source "Load Python file: " python-prev-dir/file
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1756 python-source-modes
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1757 t)) ; because execfile needs exact name
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1758 (comint-check-source file-name) ; Check to see if buffer needs saving.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1759 (setq python-prev-dir/file (cons (file-name-directory file-name)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1760 (file-name-nondirectory file-name)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1761 (with-current-buffer (process-buffer (python-proc)) ;Runs python if needed.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1762 ;; Fixme: I'm not convinced by this logic from python-mode.el.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1763 (python-send-command
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1764 (if (string-match "\\.py\\'" file-name)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1765 (let ((module (file-name-sans-extension
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1766 (file-name-nondirectory file-name))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1767 (format "emacs.eimport(%S,%S)"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1768 module (file-name-directory file-name)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1769 (format "execfile(%S)" file-name)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1770 (message "%s loaded" file-name)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1771
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1772 (defun python-proc ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1773 "Return the current Python process.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1774 See variable `python-buffer'. Starts a new process if necessary."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1775 ;; Fixme: Maybe should look for another active process if there
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1776 ;; isn't one for `python-buffer'.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1777 (unless (comint-check-proc python-buffer)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1778 (run-python nil t))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1779 (get-buffer-process (if (derived-mode-p 'inferior-python-mode)
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1780 (current-buffer)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1781 python-buffer)))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1782
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1783 (defun python-set-proc ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1784 "Set the default value of `python-buffer' to correspond to this buffer.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1785 If the current buffer has a local value of `python-buffer', set the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1786 default (global) value to that. The associated Python process is
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1787 the one that gets input from \\[python-send-region] et al when used
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1788 in a buffer that doesn't have a local value of `python-buffer'."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1789 (interactive)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1790 (if (local-variable-p 'python-buffer)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1791 (setq-default python-buffer python-buffer)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1792 (error "No local value of `python-buffer'")))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1793
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1794 ;;;; Context-sensitive help.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1795
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1796 (defconst python-dotty-syntax-table
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1797 (let ((table (make-syntax-table)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1798 (set-char-table-parent table python-mode-syntax-table)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1799 (modify-syntax-entry ?. "_" table)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1800 table)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1801 "Syntax table giving `.' symbol syntax.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1802 Otherwise inherits from `python-mode-syntax-table'.")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1803
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1804 (defvar view-return-to-alist)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1805 (eval-when-compile (autoload 'help-buffer "help-fns"))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1806
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1807 (defvar python-imports) ; forward declaration
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1808
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1809 ;; Fixme: Should this actually be used instead of info-look, i.e. be
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1810 ;; bound to C-h S? [Probably not, since info-look may work in cases
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1811 ;; where this doesn't.]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1812 (defun python-describe-symbol (symbol)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1813 "Get help on SYMBOL using `help'.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1814 Interactively, prompt for symbol.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1815
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1816 Symbol may be anything recognized by the interpreter's `help'
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1817 command -- e.g. `CALLS' -- not just variables in scope in the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1818 interpreter. This only works for Python version 2.2 or newer
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1819 since earlier interpreters don't support `help'.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1820
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1821 In some cases where this doesn't find documentation, \\[info-lookup-symbol]
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1822 will."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1823 ;; Note that we do this in the inferior process, not a separate one, to
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1824 ;; ensure the environment is appropriate.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1825 (interactive
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1826 (let ((symbol (with-syntax-table python-dotty-syntax-table
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1827 (current-word)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1828 (enable-recursive-minibuffers t))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1829 (list (read-string (if symbol
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1830 (format "Describe symbol (default %s): " symbol)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1831 "Describe symbol: ")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1832 nil nil symbol))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1833 (if (equal symbol "") (error "No symbol"))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1834 ;; Ensure we have a suitable help buffer.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1835 ;; Fixme: Maybe process `Related help topics' a la help xrefs and
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1836 ;; allow C-c C-f in help buffer.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1837 (let ((temp-buffer-show-hook ; avoid xref stuff
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1838 (lambda ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1839 (toggle-read-only 1)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1840 (setq view-return-to-alist
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1841 (list (cons (selected-window) help-return-method))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1842 (with-output-to-temp-buffer (help-buffer)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1843 (with-current-buffer standard-output
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1844 ;; Fixme: Is this actually useful?
105372
bd2966850aac Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents: 104774
diff changeset
1845 (help-setup-xref (list 'python-describe-symbol symbol)
bd2966850aac Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents: 104774
diff changeset
1846 (called-interactively-p 'interactive))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1847 (set (make-local-variable 'comint-redirect-subvert-readonly) t)
104386
2e0765155e47 Use help-print-return-message rather than the now obsolete alias.
Glenn Morris <rgm@gnu.org>
parents: 102153
diff changeset
1848 (help-print-return-message))))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1849 (comint-redirect-send-command-to-process (format "emacs.ehelp(%S, %s)"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1850 symbol python-imports)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1851 "*Help*" (python-proc) nil nil))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1852
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1853 (add-to-list 'debug-ignored-errors "^No symbol")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1854
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1855 (defun python-send-receive (string)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1856 "Send STRING to inferior Python (if any) and return result.
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1857 The result is what follows `_emacs_out' in the output.
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1858 This is a no-op if `python-check-comint-prompt' returns nil."
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1859 (python-send-string string)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1860 (let ((proc (python-proc)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1861 (with-current-buffer (process-buffer proc)
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1862 (when (python-check-comint-prompt proc)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1863 (set (make-local-variable 'python-preoutput-result) nil)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1864 (while (progn
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1865 (accept-process-output proc 5)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1866 (null python-preoutput-result)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1867 (prog1 python-preoutput-result
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1868 (kill-local-variable 'python-preoutput-result))))))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1869
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1870 (defun python-check-comint-prompt (&optional proc)
94740
464e6f78f756 (python-comment-line-p, python-blank-line-p, python-skip-out,
Juanma Barranquero <lekktu@gmail.com>
parents: 94673
diff changeset
1871 "Return non-nil if and only if there's a normal prompt in the inferior buffer.
464e6f78f756 (python-comment-line-p, python-blank-line-p, python-skip-out,
Juanma Barranquero <lekktu@gmail.com>
parents: 94673
diff changeset
1872 If there isn't, it's probably not appropriate to send input to return Eldoc
464e6f78f756 (python-comment-line-p, python-blank-line-p, python-skip-out,
Juanma Barranquero <lekktu@gmail.com>
parents: 94673
diff changeset
1873 information etc. If PROC is non-nil, check the buffer for that process."
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1874 (with-current-buffer (process-buffer (or proc (python-proc)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1875 (save-excursion
111753
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1876 (save-match-data
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1877 (re-search-backward (concat python--prompt-regexp " *\\=")
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
1878 nil t)))))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1879
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1880 ;; Fixme: Is there anything reasonable we can do with random methods?
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1881 ;; (Currently only works with functions.)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1882 (defun python-eldoc-function ()
78897
9aa24f503773 (python-eldoc-function): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents: 78755
diff changeset
1883 "`eldoc-documentation-function' for Python.
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1884 Only works when point is in a function name, not its arg list, for
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1885 instance. Assumes an inferior Python is running."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1886 (let ((symbol (with-syntax-table python-dotty-syntax-table
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1887 (current-word))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1888 ;; This is run from timers, so inhibit-quit tends to be set.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1889 (with-local-quit
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1890 ;; First try the symbol we're on.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1891 (or (and symbol
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1892 (python-send-receive (format "emacs.eargs(%S, %s)"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1893 symbol python-imports)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1894 ;; Try moving to symbol before enclosing parens.
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1895 (let ((s (syntax-ppss)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1896 (unless (zerop (car s))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1897 (when (eq ?\( (char-after (nth 1 s)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1898 (save-excursion
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1899 (goto-char (nth 1 s))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1900 (skip-syntax-backward "-")
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1901 (let ((point (point)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1902 (skip-chars-backward "a-zA-Z._")
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1903 (if (< (point) point)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1904 (python-send-receive
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1905 (format "emacs.eargs(%S, %s)"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1906 (buffer-substring-no-properties (point) point)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1907 python-imports))))))))))))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1908
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1909 ;;;; Info-look functionality.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1910
87124
8411562edbb6 Remove directory part from filenames in function declarations.
Glenn Morris <rgm@gnu.org>
parents: 87057
diff changeset
1911 (declare-function info-lookup-maybe-add-help "info-look" (&rest arg))
86247
fc93e9674475 * progmodes/python.el (info-lookup-maybe-add-help):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 85840
diff changeset
1912
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1913 (defun python-after-info-look ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1914 "Set up info-look for Python.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1915 Used with `eval-after-load'."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1916 (let* ((version (let ((s (shell-command-to-string (concat python-command
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1917 " -V"))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1918 (string-match "^Python \\([0-9]+\\.[0-9]+\\>\\)" s)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1919 (match-string 1 s)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1920 ;; Whether info files have a Python version suffix, e.g. in Debian.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1921 (versioned
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1922 (with-temp-buffer
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1923 (with-no-warnings (Info-mode))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1924 (condition-case ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1925 ;; Don't use `info' because it would pop-up a *info* buffer.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1926 (with-no-warnings
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1927 (Info-goto-node (format "(python%s-lib)Miscellaneous Index"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1928 version))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
1929 t)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1930 (error nil)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1931 (info-lookup-maybe-add-help
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1932 :mode 'python-mode
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1933 :regexp "[[:alnum:]_]+"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1934 :doc-spec
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1935 ;; Fixme: Can this reasonably be made specific to indices with
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1936 ;; different rules? Is the order of indices optimal?
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1937 ;; (Miscellaneous in -ref first prefers lookup of keywords, for
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1938 ;; instance.)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1939 (if versioned
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1940 ;; The empty prefix just gets us highlighted terms.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1941 `((,(concat "(python" version "-ref)Miscellaneous Index") nil "")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1942 (,(concat "(python" version "-ref)Module Index" nil ""))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1943 (,(concat "(python" version "-ref)Function-Method-Variable Index"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1944 nil ""))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1945 (,(concat "(python" version "-ref)Class-Exception-Object Index"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1946 nil ""))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1947 (,(concat "(python" version "-lib)Module Index" nil ""))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1948 (,(concat "(python" version "-lib)Class-Exception-Object Index"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1949 nil ""))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1950 (,(concat "(python" version "-lib)Function-Method-Variable Index"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1951 nil ""))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1952 (,(concat "(python" version "-lib)Miscellaneous Index" nil "")))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1953 '(("(python-ref)Miscellaneous Index" nil "")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1954 ("(python-ref)Module Index" nil "")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1955 ("(python-ref)Function-Method-Variable Index" nil "")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1956 ("(python-ref)Class-Exception-Object Index" nil "")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1957 ("(python-lib)Module Index" nil "")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1958 ("(python-lib)Class-Exception-Object Index" nil "")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1959 ("(python-lib)Function-Method-Variable Index" nil "")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1960 ("(python-lib)Miscellaneous Index" nil ""))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1961 (eval-after-load "info-look" '(python-after-info-look))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1962
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1963 ;;;; Miscellany.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1964
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1965 (defcustom python-jython-packages '("java" "javax" "org" "com")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1966 "Packages implying `jython-mode'.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1967 If these are imported near the beginning of the buffer, `python-mode'
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1968 actually punts to `jython-mode'."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1969 :type '(repeat string)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1970 :group 'python)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1971
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1972 ;; Called from `python-mode', this causes a recursive call of the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1973 ;; mode. See logic there to break out of the recursion.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1974 (defun python-maybe-jython ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1975 "Invoke `jython-mode' if the buffer appears to contain Jython code.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1976 The criterion is either a match for `jython-mode' via
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1977 `interpreter-mode-alist' or an import of a module from the list
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1978 `python-jython-packages'."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1979 ;; The logic is taken from python-mode.el.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1980 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1981 (save-restriction
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1982 (widen)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1983 (goto-char (point-min))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1984 (let ((interpreter (if (looking-at auto-mode-interpreter-regexp)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1985 (match-string 2))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1986 (if (and interpreter (eq 'jython-mode
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1987 (cdr (assoc (file-name-nondirectory
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1988 interpreter)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1989 interpreter-mode-alist))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1990 (jython-mode)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1991 (if (catch 'done
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1992 (while (re-search-forward
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1993 (rx line-start (or "import" "from") (1+ space)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1994 (group (1+ (not (any " \t\n.")))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1995 (+ (point-min) 10000) ; Probably not worth customizing.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1996 t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1997 (if (member (match-string 1) python-jython-packages)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1998 (throw 'done t))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1999 (jython-mode)))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2000
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2001 (defun python-fill-paragraph (&optional justify)
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2002 "`fill-paragraph-function' handling multi-line strings and possibly comments.
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2003 If any of the current line is in or at the end of a multi-line string,
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2004 fill the string or the paragraph of it that point is in, preserving
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2005 the string's indentation."
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2006 (interactive "P")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2007 (or (fill-comment-paragraph justify)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2008 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2009 (end-of-line)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2010 (let* ((syntax (syntax-ppss))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2011 (orig (point))
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2012 start end)
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2013 (cond ((nth 4 syntax) ; comment. fixme: loses with trailing one
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2014 (let (fill-paragraph-function)
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2015 (fill-paragraph justify)))
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2016 ;; The `paragraph-start' and `paragraph-separate'
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2017 ;; variables don't allow us to delimit the last
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2018 ;; paragraph in a multi-line string properly, so narrow
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2019 ;; to the string and then fill around (the end of) the
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2020 ;; current line.
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2021 ((eq t (nth 3 syntax)) ; in fenced string
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2022 (goto-char (nth 8 syntax)) ; string start
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2023 (setq start (line-beginning-position))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2024 (setq end (condition-case () ; for unbalanced quotes
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2025 (progn (forward-sexp)
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2026 (- (point) 3))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2027 (error (point-max)))))
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2028 ((re-search-backward "\\s|\\s-*\\=" nil t) ; end of fenced string
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2029 (forward-char)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2030 (setq end (point))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2031 (condition-case ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2032 (progn (backward-sexp)
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2033 (setq start (line-beginning-position)))
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2034 (error nil))))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2035 (when end
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2036 (save-restriction
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2037 (narrow-to-region start end)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2038 (goto-char orig)
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2039 ;; Avoid losing leading and trailing newlines in doc
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2040 ;; strings written like:
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2041 ;; """
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2042 ;; ...
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2043 ;; """
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2044 (let ((paragraph-separate
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2045 ;; Note that the string could be part of an
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2046 ;; expression, so it can have preceding and
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2047 ;; trailing non-whitespace.
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2048 (concat
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2049 (rx (or
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2050 ;; Opening triple quote without following text.
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2051 (and (* nonl)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2052 (group (syntax string-delimiter))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2053 (repeat 2 (backref 1))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2054 ;; Fixme: Not sure about including
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2055 ;; trailing whitespace.
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2056 (* (any " \t"))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2057 eol)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2058 ;; Closing trailing quote without preceding text.
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2059 (and (group (any ?\" ?')) (backref 2)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2060 (syntax string-delimiter))))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2061 "\\(?:" paragraph-separate "\\)"))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2062 fill-paragraph-function)
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2063 (fill-paragraph justify))))))) t)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2064
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2065 (defun python-shift-left (start end &optional count)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2066 "Shift lines in region COUNT (the prefix arg) columns to the left.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2067 COUNT defaults to `python-indent'. If region isn't active, just shift
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2068 current line. The region shifted includes the lines in which START and
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2069 END lie. It is an error if any lines in the region are indented less than
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2070 COUNT columns."
102153
603bb57bb542 (python-shift-left, python-shift-right):
Martin Rudalics <rudalics@gmx.at>
parents: 101984
diff changeset
2071 (interactive
603bb57bb542 (python-shift-left, python-shift-right):
Martin Rudalics <rudalics@gmx.at>
parents: 101984
diff changeset
2072 (if mark-active
603bb57bb542 (python-shift-left, python-shift-right):
Martin Rudalics <rudalics@gmx.at>
parents: 101984
diff changeset
2073 (list (region-beginning) (region-end) current-prefix-arg)
603bb57bb542 (python-shift-left, python-shift-right):
Martin Rudalics <rudalics@gmx.at>
parents: 101984
diff changeset
2074 (list (line-beginning-position) (line-end-position) current-prefix-arg)))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2075 (if count
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2076 (setq count (prefix-numeric-value count))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2077 (setq count python-indent))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2078 (when (> count 0)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2079 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2080 (goto-char start)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2081 (while (< (point) end)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2082 (if (and (< (current-indentation) count)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2083 (not (looking-at "[ \t]*$")))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2084 (error "Can't shift all lines enough"))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2085 (forward-line))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2086 (indent-rigidly start end (- count)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2087
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2088 (add-to-list 'debug-ignored-errors "^Can't shift all lines enough")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2089
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2090 (defun python-shift-right (start end &optional count)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2091 "Shift lines in region COUNT (the prefix arg) columns to the right.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2092 COUNT defaults to `python-indent'. If region isn't active, just shift
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2093 current line. The region shifted includes the lines in which START and
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2094 END lie."
102153
603bb57bb542 (python-shift-left, python-shift-right):
Martin Rudalics <rudalics@gmx.at>
parents: 101984
diff changeset
2095 (interactive
603bb57bb542 (python-shift-left, python-shift-right):
Martin Rudalics <rudalics@gmx.at>
parents: 101984
diff changeset
2096 (if mark-active
603bb57bb542 (python-shift-left, python-shift-right):
Martin Rudalics <rudalics@gmx.at>
parents: 101984
diff changeset
2097 (list (region-beginning) (region-end) current-prefix-arg)
603bb57bb542 (python-shift-left, python-shift-right):
Martin Rudalics <rudalics@gmx.at>
parents: 101984
diff changeset
2098 (list (line-beginning-position) (line-end-position) current-prefix-arg)))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2099 (if count
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2100 (setq count (prefix-numeric-value count))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2101 (setq count python-indent))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2102 (indent-rigidly start end count))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2103
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2104 (defun python-outline-level ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2105 "`outline-level' function for Python mode.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2106 The level is the number of `python-indent' steps of indentation
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2107 of current line."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2108 (1+ (/ (current-indentation) python-indent)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2109
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2110 ;; Fixme: Consider top-level assignments, imports, &c.
81824
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
2111 (defun python-current-defun (&optional length-limit)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2112 "`add-log-current-defun-function' for Python."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2113 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2114 ;; Move up the tree of nested `class' and `def' blocks until we
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2115 ;; get to zero indentation, accumulating the defined names.
82224
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2116 (let ((accum)
81824
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
2117 (length -1))
82224
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2118 (catch 'done
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2119 (while (or (null length-limit)
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2120 (null (cdr accum))
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2121 (< length length-limit))
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2122 (let ((started-from (point)))
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2123 (python-beginning-of-block)
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2124 (end-of-line)
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2125 (beginning-of-defun)
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2126 (when (= (point) started-from)
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2127 (throw 'done nil)))
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2128 (when (looking-at (rx (0+ space) (or "def" "class") (1+ space)
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2129 (group (1+ (or word (syntax symbol))))))
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2130 (push (match-string 1) accum)
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2131 (setq length (+ length 1 (length (car accum)))))
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2132 (when (= (current-indentation) 0)
bda0322e3767 Fix infinite loop in python.el
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 82221
diff changeset
2133 (throw 'done nil))))
81824
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
2134 (when accum
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
2135 (when (and length-limit (> length length-limit))
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
2136 (setcar accum ".."))
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
2137 (mapconcat 'identity accum ".")))))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2138
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2139 (defun python-mark-block ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2140 "Mark the block around point.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2141 Uses `python-beginning-of-block', `python-end-of-block'."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2142 (interactive)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2143 (push-mark)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2144 (python-beginning-of-block)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2145 (push-mark (point) nil t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2146 (python-end-of-block)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2147 (exchange-point-and-mark))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2148
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2149 ;; Fixme: Provide a find-function-like command to find source of a
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2150 ;; definition (separate from BicycleRepairMan). Complicated by
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2151 ;; finding the right qualified name.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2152
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2153 ;;;; Completion.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2154
87856
4f657ba160d6 Martin Svenson <phromo at gmail.com> (tiny change)
Glenn Morris <rgm@gnu.org>
parents: 87649
diff changeset
2155 ;; http://lists.gnu.org/archive/html/bug-gnu-emacs/2008-01/msg00076.html
4f657ba160d6 Martin Svenson <phromo at gmail.com> (tiny change)
Glenn Morris <rgm@gnu.org>
parents: 87649
diff changeset
2156 (defvar python-imports "None"
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2157 "String of top-level import statements updated by `python-find-imports'.")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2158 (make-variable-buffer-local 'python-imports)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2159
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2160 ;; Fixme: Should font-lock try to run this when it deals with an import?
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2161 ;; Maybe not a good idea if it gets run multiple times when the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2162 ;; statement is being edited, and is more likely to end up with
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2163 ;; something syntactically incorrect.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2164 ;; However, what we should do is to trundle up the block tree from point
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2165 ;; to extract imports that appear to be in scope, and add those.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2166 (defun python-find-imports ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2167 "Find top-level imports, updating `python-imports'."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2168 (interactive)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2169 (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2170 (let (lines)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2171 (goto-char (point-min))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2172 (while (re-search-forward "^import\\>\\|^from\\>" nil t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2173 (unless (syntax-ppss-context (syntax-ppss))
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2174 (let ((start (line-beginning-position)))
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2175 ;; Skip over continued lines.
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2176 (while (and (eq ?\\ (char-before (line-end-position)))
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2177 (= 0 (forward-line 1)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2178 t)
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2179 (push (buffer-substring start (line-beginning-position 2))
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2180 lines))))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2181 (setq python-imports
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2182 (if lines
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2183 (apply #'concat
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2184 ;; This is probably best left out since you're unlikely to need the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2185 ;; doc for a function in the buffer and the import will lose if the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2186 ;; Python sub-process' working directory isn't the same as the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2187 ;; buffer's.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2188 ;; (if buffer-file-name
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2189 ;; (concat
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2190 ;; "import "
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2191 ;; (file-name-sans-extension
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2192 ;; (file-name-nondirectory buffer-file-name))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2193 (nreverse lines))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2194 "None"))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2195 (when lines
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2196 (set-text-properties 0 (length python-imports) nil python-imports)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2197 ;; The output ends up in the wrong place if the string we
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2198 ;; send contains newlines (from the imports).
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2199 (setq python-imports
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2200 (replace-regexp-in-string "\n" "\\n"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2201 (format "%S" python-imports) t t))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2202
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2203 ;; Fixme: This fails the first time if the sub-process isn't already
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2204 ;; running. Presumably a timing issue with i/o to the process.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2205 (defun python-symbol-completions (symbol)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2206 "Return a list of completions of the string SYMBOL from Python process.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2207 The list is sorted.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2208 Uses `python-imports' to load modules against which to complete."
106574
427e81917607 * progmodes/python.el (python-symbol-completions): Remove text
Chong Yidong <cyd@stupidchicken.com>
parents: 106482
diff changeset
2209 (when (stringp symbol)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2210 (let ((completions
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2211 (condition-case ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2212 (car (read-from-string
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2213 (python-send-receive
106574
427e81917607 * progmodes/python.el (python-symbol-completions): Remove text
Chong Yidong <cyd@stupidchicken.com>
parents: 106482
diff changeset
2214 (format "emacs.complete(%S,%s)"
427e81917607 * progmodes/python.el (python-symbol-completions): Remove text
Chong Yidong <cyd@stupidchicken.com>
parents: 106482
diff changeset
2215 (substring-no-properties symbol)
427e81917607 * progmodes/python.el (python-symbol-completions): Remove text
Chong Yidong <cyd@stupidchicken.com>
parents: 106482
diff changeset
2216 python-imports))))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2217 (error nil))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2218 (sort
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2219 ;; We can get duplicates from the above -- don't know why.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2220 (delete-dups completions)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2221 #'string<))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2222
106482
806e9f7990d8 * minibuffer.el (completion-at-point-functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105870
diff changeset
2223 (defun python-completion-at-point ()
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2224 (let ((end (point))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2225 (start (save-excursion
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2226 (and (re-search-backward
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2227 (rx (or buffer-start (regexp "[^[:alnum:]._]"))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2228 (group (1+ (regexp "[[:alnum:]._]"))) point)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2229 nil t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2230 (match-beginning 1)))))
106482
806e9f7990d8 * minibuffer.el (completion-at-point-functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105870
diff changeset
2231 (when start
806e9f7990d8 * minibuffer.el (completion-at-point-functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105870
diff changeset
2232 (list start end
806e9f7990d8 * minibuffer.el (completion-at-point-functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105870
diff changeset
2233 (completion-table-dynamic 'python-symbol-completions)))))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2234
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2235 ;;;; FFAP support
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2236
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2237 (defun python-module-path (module)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2238 "Function for `ffap-alist' to return path to MODULE."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2239 (python-send-receive (format "emacs.modpath (%S)" module)))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2240
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2241 (eval-after-load "ffap"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2242 '(push '(python-mode . python-module-path) ffap-alist))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2243
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2244 ;;;; Find-function support
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2245
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2246 ;; Fixme: key binding?
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2247
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2248 (defun python-find-function (name)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2249 "Find source of definition of function NAME.
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2250 Interactively, prompt for name."
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2251 (interactive
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2252 (let ((symbol (with-syntax-table python-dotty-syntax-table
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2253 (current-word)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2254 (enable-recursive-minibuffers t))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2255 (list (read-string (if symbol
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2256 (format "Find location of (default %s): " symbol)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2257 "Find location of: ")
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2258 nil nil symbol))))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2259 (unless python-imports
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2260 (error "Not called from buffer visiting Python file"))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2261 (let* ((loc (python-send-receive (format "emacs.location_of (%S, %s)"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2262 name python-imports)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2263 (loc (car (read-from-string loc)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2264 (file (car loc))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2265 (line (cdr loc)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2266 (unless file (error "Don't know where `%s' is defined" name))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2267 (pop-to-buffer (find-file-noselect file))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2268 (when (integerp line)
104774
468b7fa34d2c Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents: 104386
diff changeset
2269 (goto-char (point-min))
468b7fa34d2c Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents: 104386
diff changeset
2270 (forward-line (1- line)))))
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2271
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2272 ;;;; Skeletons
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2273
101984
84b9607bddb0 (python-use-skeletons): Re-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 101769
diff changeset
2274 (defcustom python-use-skeletons nil
84b9607bddb0 (python-use-skeletons): Re-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 101769
diff changeset
2275 "Non-nil means template skeletons will be automagically inserted.
84b9607bddb0 (python-use-skeletons): Re-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 101769
diff changeset
2276 This happens when pressing \"if<SPACE>\", for example, to prompt for
84b9607bddb0 (python-use-skeletons): Re-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 101769
diff changeset
2277 the if condition."
84b9607bddb0 (python-use-skeletons): Re-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 101769
diff changeset
2278 :type 'boolean
84b9607bddb0 (python-use-skeletons): Re-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 101769
diff changeset
2279 :group 'python)
84b9607bddb0 (python-use-skeletons): Re-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 101769
diff changeset
2280
85840
d227ffcaa3fe (python-mode-abbrev-table): Use :regexp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 85598
diff changeset
2281 (define-abbrev-table 'python-mode-abbrev-table ()
94139
1e40bf35d15e (python-mode-map): Use abbrev-table-menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92111
diff changeset
2282 "Abbrev table for Python mode."
1e40bf35d15e (python-mode-map): Use abbrev-table-menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92111
diff changeset
2283 :case-fixed t
1e40bf35d15e (python-mode-map): Use abbrev-table-menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92111
diff changeset
2284 ;; Allow / inside abbrevs.
1e40bf35d15e (python-mode-map): Use abbrev-table-menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92111
diff changeset
2285 :regexp "\\(?:^\\|[^/]\\)\\<\\([[:word:]/]+\\)\\W*"
1e40bf35d15e (python-mode-map): Use abbrev-table-menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92111
diff changeset
2286 ;; Only expand in code.
1e40bf35d15e (python-mode-map): Use abbrev-table-menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92111
diff changeset
2287 :enable-function (lambda () (not (python-in-string/comment))))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2288
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2289 (eval-when-compile
94139
1e40bf35d15e (python-mode-map): Use abbrev-table-menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92111
diff changeset
2290 ;; Define a user-level skeleton and add it to the abbrev table.
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2291 (defmacro def-python-skeleton (name &rest elements)
110034
c87f89486bb7 Use `declare' in defmacros.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 109966
diff changeset
2292 (declare (indent 2))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2293 (let* ((name (symbol-name name))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2294 (function (intern (concat "python-insert-" name))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2295 `(progn
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2296 ;; Usual technique for inserting a skeleton, but expand
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2297 ;; to the original abbrev instead if in a comment or string.
101984
84b9607bddb0 (python-use-skeletons): Re-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 101769
diff changeset
2298 (when python-use-skeletons
84b9607bddb0 (python-use-skeletons): Re-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 101769
diff changeset
2299 (define-abbrev python-mode-abbrev-table ,name ""
84b9607bddb0 (python-use-skeletons): Re-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 101769
diff changeset
2300 ',function
84b9607bddb0 (python-use-skeletons): Re-add.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 101769
diff changeset
2301 nil t)) ; system abbrev
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2302 (define-skeleton ,function
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2303 ,(format "Insert Python \"%s\" template." name)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2304 ,@elements)))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2305
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2306 ;; From `skeleton-further-elements' set below:
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2307 ;; `<': outdent a level;
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2308 ;; `^': delete indentation on current line and also previous newline.
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2309 ;; Not quite like `delete-indentation'. Assumes point is at
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2310 ;; beginning of indentation.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2311
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2312 (def-python-skeleton if
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2313 "Condition: "
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2314 "if " str ":" \n
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2315 > -1 ; Fixme: I don't understand the spurious space this removes.
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2316 _ \n
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2317 ("other condition, %s: "
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2318 < ; Avoid wrong indentation after block opening.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2319 "elif " str ":" \n
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2320 > _ \n nil)
87857
6f654ccab302 Quote all calls to "auxiliary skeleton"s to prevent infloops.
Glenn Morris <rgm@gnu.org>
parents: 87856
diff changeset
2321 '(python-else) | ^)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2322
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2323 (define-skeleton python-else
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2324 "Auxiliary skeleton."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2325 nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2326 (unless (eq ?y (read-char "Add `else' clause? (y for yes or RET for no) "))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2327 (signal 'quit t))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2328 < "else:" \n
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2329 > _ \n)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2330
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2331 (def-python-skeleton while
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2332 "Condition: "
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2333 "while " str ":" \n
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2334 > -1 _ \n
87857
6f654ccab302 Quote all calls to "auxiliary skeleton"s to prevent infloops.
Glenn Morris <rgm@gnu.org>
parents: 87856
diff changeset
2335 '(python-else) | ^)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2336
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2337 (def-python-skeleton for
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2338 "Target, %s: "
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2339 "for " str " in " (skeleton-read "Expression, %s: ") ":" \n
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2340 > -1 _ \n
87857
6f654ccab302 Quote all calls to "auxiliary skeleton"s to prevent infloops.
Glenn Morris <rgm@gnu.org>
parents: 87856
diff changeset
2341 '(python-else) | ^)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2342
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2343 (def-python-skeleton try/except
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2344 nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2345 "try:" \n
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2346 > -1 _ \n
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2347 ("Exception, %s: "
87857
6f654ccab302 Quote all calls to "auxiliary skeleton"s to prevent infloops.
Glenn Morris <rgm@gnu.org>
parents: 87856
diff changeset
2348 < "except " str '(python-target) ":" \n
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2349 > _ \n nil)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2350 < "except:" \n
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2351 > _ \n
87857
6f654ccab302 Quote all calls to "auxiliary skeleton"s to prevent infloops.
Glenn Morris <rgm@gnu.org>
parents: 87856
diff changeset
2352 '(python-else) | ^)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2353
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2354 (define-skeleton python-target
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2355 "Auxiliary skeleton."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2356 "Target, %s: " ", " str | -2)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2357
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2358 (def-python-skeleton try/finally
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2359 nil
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2360 "try:" \n
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2361 > -1 _ \n
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2362 < "finally:" \n
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2363 > _ \n)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2364
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2365 (def-python-skeleton def
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2366 "Name: "
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2367 "def " str " (" ("Parameter, %s: " (unless (equal ?\( (char-before)) ", ")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2368 str) "):" \n
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2369 "\"\"\"" - "\"\"\"" \n ; Fixme: extra space inserted -- why?).
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2370 > _ \n)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2371
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2372 (def-python-skeleton class
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2373 "Name: "
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2374 "class " str " (" ("Inheritance, %s: "
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2375 (unless (equal ?\( (char-before)) ", ")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2376 str)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2377 & ")" | -2 ; close list or remove opening
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2378 ":" \n
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2379 "\"\"\"" - "\"\"\"" \n
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2380 > _ \n)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2381
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2382 (defvar python-default-template "if"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2383 "Default template to expand by `python-expand-template'.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2384 Updated on each expansion.")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2385
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2386 (defun python-expand-template (name)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2387 "Expand template named NAME.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2388 Interactively, prompt for the name with completion."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2389 (interactive
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2390 (list (completing-read (format "Template to expand (default %s): "
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2391 python-default-template)
94139
1e40bf35d15e (python-mode-map): Use abbrev-table-menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92111
diff changeset
2392 python-mode-abbrev-table nil t nil nil
1e40bf35d15e (python-mode-map): Use abbrev-table-menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92111
diff changeset
2393 python-default-template)))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2394 (if (equal "" name)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2395 (setq name python-default-template)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2396 (setq python-default-template name))
94139
1e40bf35d15e (python-mode-map): Use abbrev-table-menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92111
diff changeset
2397 (let ((sym (abbrev-symbol name python-mode-abbrev-table)))
1e40bf35d15e (python-mode-map): Use abbrev-table-menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92111
diff changeset
2398 (if sym
1e40bf35d15e (python-mode-map): Use abbrev-table-menu.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92111
diff changeset
2399 (abbrev-insert sym)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2400 (error "Undefined template: %s" name))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2401
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2402 ;;;; Bicycle Repair Man support
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2403
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2404 (autoload 'pymacs-load "pymacs" nil t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2405 (autoload 'brm-init "bikemacs")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2406
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2407 ;; I'm not sure how useful BRM really is, and it's certainly dangerous
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2408 ;; the way it modifies files outside Emacs... Also note that the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2409 ;; current BRM loses with tabs used for indentation -- I submitted a
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2410 ;; fix <URL:http://www.loveshack.ukfsn.org/emacs/bikeemacs.py.diff>.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2411 (defun python-setup-brm ()
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2412 "Set up Bicycle Repair Man refactoring tool (if available).
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2413
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2414 Note that the `refactoring' features change files independently of
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2415 Emacs and may modify and save the contents of the current buffer
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2416 without confirmation."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2417 (interactive)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2418 (condition-case data
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2419 (unless (fboundp 'brm-rename)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2420 (pymacs-load "bikeemacs" "brm-") ; first line of normal recipe
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2421 (let ((py-mode-map (make-sparse-keymap)) ; it assumes this
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2422 (features (cons 'python-mode features))) ; and requires this
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2423 (brm-init) ; second line of normal recipe
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2424 (remove-hook 'python-mode-hook ; undo this from `brm-init'
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2425 '(lambda () (easy-menu-add brm-menu)))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2426 (easy-menu-define
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2427 python-brm-menu python-mode-map
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2428 "Bicycle Repair Man"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2429 '("BicycleRepairMan"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2430 :help "Interface to navigation and refactoring tool"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2431 "Queries"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2432 ["Find References" brm-find-references
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2433 :help "Find references to name at point in compilation buffer"]
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2434 ["Find Definition" brm-find-definition
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2435 :help "Find definition of name at point"]
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2436 "-"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2437 "Refactoring"
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2438 ["Rename" brm-rename
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2439 :help "Replace name at point with a new name everywhere"]
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2440 ["Extract Method" brm-extract-method
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2441 :active (and mark-active (not buffer-read-only))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2442 :help "Replace statements in region with a method"]
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2443 ["Extract Local Variable" brm-extract-local-variable
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2444 :active (and mark-active (not buffer-read-only))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2445 :help "Replace expression in region with an assignment"]
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2446 ["Inline Local Variable" brm-inline-local-variable
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2447 :help
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2448 "Substitute uses of variable at point with its definition"]
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2449 ;; Fixme: Should check for anything to revert.
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2450 ["Undo Last Refactoring" brm-undo :help ""]))))
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2451 (error (error "BicycleRepairMan setup failed: %s" data))))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2452
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2453 ;;;; Modes.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2454
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2455 ;; pdb tracking is alert once this file is loaded, but takes no action if
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2456 ;; `python-pdbtrack-do-tracking-p' is nil.
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2457 (add-hook 'comint-output-filter-functions 'python-pdbtrack-track-stack-file)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2458
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2459 (defvar outline-heading-end-regexp)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2460 (defvar eldoc-documentation-function)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2461 (defvar python-mode-running) ;Dynamically scoped var.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2462
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2463 ;;;###autoload
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2464 (define-derived-mode python-mode fundamental-mode "Python"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2465 "Major mode for editing Python files.
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2466 Turns on Font Lock mode unconditionally since it is currently required
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2467 for correct parsing of the source.
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2468 See also `jython-mode', which is actually invoked if the buffer appears to
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2469 contain Jython code. See also `run-python' and associated Python mode
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2470 commands for running Python under Emacs.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2471
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2472 The Emacs commands which work with `defun's, e.g. \\[beginning-of-defun], deal
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2473 with nested `def' and `class' blocks. They take the innermost one as
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2474 current without distinguishing method and class definitions. Used multiple
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2475 times, they move over others at the same indentation level until they reach
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2476 the end of definitions at that level, when they move up a level.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2477 \\<python-mode-map>
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2478 Colon is electric: it outdents the line if appropriate, e.g. for
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2479 an else statement. \\[python-backspace] at the beginning of an indented statement
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2480 deletes a level of indentation to close the current block; otherwise it
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2481 deletes a character backward. TAB indents the current line relative to
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2482 the preceding code. Successive TABs, with no intervening command, cycle
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2483 through the possibilities for indentation on the basis of enclosing blocks.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2484
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2485 \\[fill-paragraph] fills comments and multi-line strings appropriately, but has no
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2486 effect outside them.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2487
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2488 Supports Eldoc mode (only for functions, using a Python process),
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2489 Info-Look and Imenu. In Outline minor mode, `class' and `def'
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2490 lines count as headers. Symbol completion is available in the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2491 same way as in the Python shell using the `rlcompleter' module
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2492 and this is added to the Hippie Expand functions locally if
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2493 Hippie Expand mode is turned on. Completion of symbols of the
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2494 form x.y only works if the components are literal
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2495 module/attribute names, not variables. An abbrev table is set up
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2496 with skeleton expansions for compound statement templates.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2497
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2498 \\{python-mode-map}"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2499 :group 'python
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2500 (set (make-local-variable 'font-lock-defaults)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2501 '(python-font-lock-keywords nil nil nil nil
110305
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
2502 ;; This probably isn't worth it.
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
2503 ;; (font-lock-syntactic-face-function
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
2504 ;; . python-font-lock-syntactic-face-function)
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
2505 ))
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
2506 (set (make-local-variable 'syntax-propertize-function)
b10051866f51 New syntax-propertize functionality.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 110133
diff changeset
2507 python-syntax-propertize-function)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2508 (set (make-local-variable 'parse-sexp-lookup-properties) t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2509 (set (make-local-variable 'parse-sexp-ignore-comments) t)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2510 (set (make-local-variable 'comment-start) "# ")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2511 (set (make-local-variable 'indent-line-function) #'python-indent-line)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2512 (set (make-local-variable 'indent-region-function) #'python-indent-region)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2513 (set (make-local-variable 'paragraph-start) "\\s-*$")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2514 (set (make-local-variable 'fill-paragraph-function) 'python-fill-paragraph)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2515 (set (make-local-variable 'require-final-newline) mode-require-final-newline)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2516 (set (make-local-variable 'add-log-current-defun-function)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2517 #'python-current-defun)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2518 (set (make-local-variable 'outline-regexp)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2519 (rx (* space) (or "class" "def" "elif" "else" "except" "finally"
77678
0b0c0f93563c (python-font-lock-keywords, python-open-block-statement-p, python-mode):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 77663
diff changeset
2520 "for" "if" "try" "while" "with")
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2521 symbol-end))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2522 (set (make-local-variable 'outline-heading-end-regexp) ":\\s-*\n")
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2523 (set (make-local-variable 'outline-level) #'python-outline-level)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2524 (set (make-local-variable 'open-paren-in-column-0-is-defun-start) nil)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2525 (set (make-local-variable 'beginning-of-defun-function)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2526 'python-beginning-of-defun)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2527 (set (make-local-variable 'end-of-defun-function) 'python-end-of-defun)
81824
0a0e79e50844 (python-which-func-length-limit): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81392
diff changeset
2528 (add-hook 'which-func-functions 'python-which-func nil t)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2529 (setq imenu-create-index-function #'python-imenu-create-index)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2530 (set (make-local-variable 'eldoc-documentation-function)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2531 #'python-eldoc-function)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2532 (add-hook 'eldoc-mode-hook
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2533 (lambda () (run-python nil t)) ; need it running
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2534 nil t)
106482
806e9f7990d8 * minibuffer.el (completion-at-point-functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105870
diff changeset
2535 (add-hook 'completion-at-point-functions
806e9f7990d8 * minibuffer.el (completion-at-point-functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105870
diff changeset
2536 'python-completion-at-point nil 'local)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2537 ;; Fixme: should be in hideshow. This seems to be of limited use
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2538 ;; since it isn't (can't be) indentation-based. Also hide-level
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2539 ;; doesn't seem to work properly.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2540 (add-to-list 'hs-special-modes-alist
78755
38a441bc4532 Merge changes from Dave Love's v2007-Sep-10.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 78487
diff changeset
2541 `(python-mode "^\\s-*\\(?:def\\|class\\)\\>" nil "#"
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2542 ,(lambda (arg)
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2543 (python-end-of-defun)
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2544 (skip-chars-backward " \t\n"))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2545 nil))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2546 (set (make-local-variable 'skeleton-further-elements)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2547 '((< '(backward-delete-char-untabify (min python-indent
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2548 (current-column))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2549 (^ '(- (1+ (current-indentation))))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2550 ;; Python defines TABs as being 8-char wide.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2551 (set (make-local-variable 'tab-width) 8)
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2552 (unless font-lock-mode (font-lock-mode 1))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2553 (when python-guess-indent (python-guess-indent))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2554 ;; Let's make it harder for the user to shoot himself in the foot.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2555 (unless (= tab-width python-indent)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2556 (setq indent-tabs-mode nil))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2557 (set (make-local-variable 'python-command) python-python-command)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2558 (python-find-imports)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2559 (unless (boundp 'python-mode-running) ; kill the recursion from jython-mode
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2560 (let ((python-mode-running t))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2561 (python-maybe-jython))))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2562
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2563 ;; Not done automatically in Emacs 21 or 22.
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2564 (defcustom python-mode-hook nil
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2565 "Hook run when entering Python mode."
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2566 :group 'python
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2567 :type 'hook)
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2568 (custom-add-option 'python-mode-hook 'imenu-add-menubar-index)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2569 (custom-add-option 'python-mode-hook
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2570 (lambda ()
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2571 "Turn off Indent Tabs mode."
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2572 (setq indent-tabs-mode nil)))
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2573 (custom-add-option 'python-mode-hook 'turn-on-eldoc-mode)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2574 (custom-add-option 'python-mode-hook 'abbrev-mode)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2575 (custom-add-option 'python-mode-hook 'python-setup-brm)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2576
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2577 ;;;###autoload
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2578 (define-derived-mode jython-mode python-mode "Jython"
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2579 "Major mode for editing Jython files.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2580 Like `python-mode', but sets up parameters for Jython subprocesses.
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2581 Runs `jython-mode-hook' after `python-mode-hook'."
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2582 :group 'python
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2583 (set (make-local-variable 'python-command) python-jython-command))
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2584
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2585
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2586
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2587 ;; pdbtrack features
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2588
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2589 (defun python-comint-output-filter-function (string)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2590 "Watch output for Python prompt and exec next file waiting in queue.
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2591 This function is appropriate for `comint-output-filter-functions'."
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2592 ;; TBD: this should probably use split-string
111753
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
2593 (when (and (string-match python--prompt-regexp string)
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2594 python-file-queue)
92111
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2595 (condition-case nil
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2596 (delete-file (car python-file-queue))
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2597 (error nil))
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2598 (setq python-file-queue (cdr python-file-queue))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2599 (if python-file-queue
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2600 (let ((pyproc (get-buffer-process (current-buffer))))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2601 (python-execute-file pyproc (car python-file-queue))))))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2602
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2603 (defun python-pdbtrack-overlay-arrow (activation)
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2604 "Activate or deactivate arrow at beginning-of-line in current buffer."
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2605 (if activation
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2606 (progn
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2607 (setq overlay-arrow-position (make-marker)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2608 overlay-arrow-string "=>"
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2609 python-pdbtrack-is-tracking-p t)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2610 (set-marker overlay-arrow-position
111429
249a1455856a Use line-end-position rather than end-of-line, etc.
Glenn Morris <rgm@gnu.org>
parents: 110305
diff changeset
2611 (line-beginning-position)
92111
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2612 (current-buffer)))
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2613 (setq overlay-arrow-position nil
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2614 python-pdbtrack-is-tracking-p nil)))
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2615
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2616 (defun python-pdbtrack-track-stack-file (text)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2617 "Show the file indicated by the pdb stack entry line, in a separate window.
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2618
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2619 Activity is disabled if the buffer-local variable
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2620 `python-pdbtrack-do-tracking-p' is nil.
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2621
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2622 We depend on the pdb input prompt being a match for
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2623 `python-pdbtrack-input-prompt'.
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2624
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2625 If the traceback target file path is invalid, we look for the
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2626 most recently visited python-mode buffer which either has the
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2627 name of the current function or class, or which defines the
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2628 function or class. This is to provide for scripts not in the
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2629 local filesytem (e.g., Zope's 'Script \(Python)', but it's not
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2630 Zope specific). If you put a copy of the script in a buffer
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2631 named for the script and activate python-mode, then pdbtrack will
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2632 find it."
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2633 ;; Instead of trying to piece things together from partial text
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2634 ;; (which can be almost useless depending on Emacs version), we
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2635 ;; monitor to the point where we have the next pdb prompt, and then
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2636 ;; check all text from comint-last-input-end to process-mark.
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2637 ;;
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2638 ;; Also, we're very conservative about clearing the overlay arrow,
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2639 ;; to minimize residue. This means, for instance, that executing
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2640 ;; other pdb commands wipe out the highlight. You can always do a
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2641 ;; 'where' (aka 'w') PDB command to reveal the overlay arrow.
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2642
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2643 (let* ((origbuf (current-buffer))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2644 (currproc (get-buffer-process origbuf)))
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2645
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2646 (if (not (and currproc python-pdbtrack-do-tracking-p))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2647 (python-pdbtrack-overlay-arrow nil)
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2648
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2649 (let* ((procmark (process-mark currproc))
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2650 (block (buffer-substring (max comint-last-input-end
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2651 (- procmark
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2652 python-pdbtrack-track-range))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2653 procmark))
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2654 target target_fname target_lineno target_buffer)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2655
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2656 (if (not (string-match (concat python-pdbtrack-input-prompt "$") block))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2657 (python-pdbtrack-overlay-arrow nil)
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2658
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2659 (setq target (python-pdbtrack-get-source-buffer block))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2660
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2661 (if (stringp target)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2662 (progn
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2663 (python-pdbtrack-overlay-arrow nil)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2664 (message "pdbtrack: %s" target))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2665
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2666 (setq target_lineno (car target)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2667 target_buffer (cadr target)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2668 target_fname (buffer-file-name target_buffer))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2669 (switch-to-buffer-other-window target_buffer)
104774
468b7fa34d2c Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents: 104386
diff changeset
2670 (goto-char (point-min))
468b7fa34d2c Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents: 104386
diff changeset
2671 (forward-line (1- target_lineno))
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2672 (message "pdbtrack: line %s, file %s" target_lineno target_fname)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2673 (python-pdbtrack-overlay-arrow t)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2674 (pop-to-buffer origbuf t)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2675 ;; in large shell buffers, above stuff may cause point to lag output
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2676 (goto-char procmark)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2677 )))))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2678 )
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2679
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2680 (defun python-pdbtrack-get-source-buffer (block)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2681 "Return line number and buffer of code indicated by block's traceback text.
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2682
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2683 We look first to visit the file indicated in the trace.
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2684
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2685 Failing that, we look for the most recently visited python-mode buffer
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2686 with the same name or having the named function.
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2687
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2688 If we're unable find the source code we return a string describing the
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2689 problem."
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2690
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2691 (if (not (string-match python-pdbtrack-stack-entry-regexp block))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2692
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2693 "Traceback cue not found"
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2694
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2695 (let* ((filename (match-string 1 block))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2696 (lineno (string-to-number (match-string 2 block)))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2697 (funcname (match-string 3 block))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2698 funcbuffer)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2699
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2700 (cond ((file-exists-p filename)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2701 (list lineno (find-file-noselect filename)))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2702
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2703 ((setq funcbuffer (python-pdbtrack-grub-for-buffer funcname lineno))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2704 (if (string-match "/Script (Python)$" filename)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2705 ;; Add in number of lines for leading '##' comments:
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2706 (setq lineno
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2707 (+ lineno
105813
df4934f25eef * textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105798
diff changeset
2708 (with-current-buffer funcbuffer
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2709 (if (equal (point-min)(point-max))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2710 0
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2711 (count-lines
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2712 (point-min)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2713 (max (point-min)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2714 (string-match "^\\([^#]\\|#[^#]\\|#$\\)"
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2715 (buffer-substring
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2716 (point-min) (point-max)))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2717 )))))))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2718 (list lineno funcbuffer))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2719
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2720 ((= (elt filename 0) ?\<)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2721 (format "(Non-file source: '%s')" filename))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2722
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2723 (t (format "Not found: %s(), %s" funcname filename)))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2724 )
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2725 )
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2726 )
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2727
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2728 (defun python-pdbtrack-grub-for-buffer (funcname lineno)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2729 "Find recent python-mode buffer named, or having function named funcname."
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2730 (let ((buffers (buffer-list))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2731 buf
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2732 got)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2733 (while (and buffers (not got))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2734 (setq buf (car buffers)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2735 buffers (cdr buffers))
105813
df4934f25eef * textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105798
diff changeset
2736 (if (and (with-current-buffer buf
df4934f25eef * textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105798
diff changeset
2737 (string= major-mode "python-mode"))
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2738 (or (string-match funcname (buffer-name buf))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2739 (string-match (concat "^\\s-*\\(def\\|class\\)\\s-+"
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2740 funcname "\\s-*(")
105813
df4934f25eef * textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105798
diff changeset
2741 (with-current-buffer buf
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2742 (buffer-substring (point-min)
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2743 (point-max))))))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2744 (setq got buf)))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2745 got))
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2746
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2747 (defun python-toggle-shells (arg)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2748 "Toggles between the CPython and JPython shells.
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2749
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2750 With positive argument ARG (interactively \\[universal-argument]),
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2751 uses the CPython shell, with negative ARG uses the JPython shell, and
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2752 with a zero argument, toggles the shell.
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2753
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2754 Programmatically, ARG can also be one of the symbols `cpython' or
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2755 `jpython', equivalent to positive arg and negative arg respectively."
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2756 (interactive "P")
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2757 ;; default is to toggle
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2758 (if (null arg)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2759 (setq arg 0))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2760 ;; preprocess arg
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2761 (cond
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2762 ((equal arg 0)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2763 ;; toggle
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2764 (if (string-equal python-which-bufname "Python")
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2765 (setq arg -1)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2766 (setq arg 1)))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2767 ((equal arg 'cpython) (setq arg 1))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2768 ((equal arg 'jpython) (setq arg -1)))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2769 (let (msg)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2770 (cond
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2771 ((< 0 arg)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2772 ;; set to CPython
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2773 (setq python-which-shell python-python-command
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2774 python-which-args python-python-command-args
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2775 python-which-bufname "Python"
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2776 msg "CPython"
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2777 mode-name "Python"))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2778 ((> 0 arg)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2779 (setq python-which-shell python-jython-command
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2780 python-which-args python-jython-command-args
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2781 python-which-bufname "JPython"
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2782 msg "JPython"
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2783 mode-name "JPython")))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2784 (message "Using the %s shell" msg)))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2785
92111
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2786 ;; Python subprocess utilities and filters
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2787 (defun python-execute-file (proc filename)
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2788 "Send to Python interpreter process PROC \"execfile('FILENAME')\".
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2789 Make that process's buffer visible and force display. Also make
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2790 comint believe the user typed this string so that
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2791 `kill-output-from-shell' does The Right Thing."
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2792 (let ((curbuf (current-buffer))
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2793 (procbuf (process-buffer proc))
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2794 ; (comint-scroll-to-bottom-on-output t)
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2795 (msg (format "## working on region in file %s...\n" filename))
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2796 ;; add some comment, so that we can filter it out of history
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2797 (cmd (format "execfile(r'%s') # PYTHON-MODE\n" filename)))
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2798 (unwind-protect
105813
df4934f25eef * textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 105798
diff changeset
2799 (with-current-buffer procbuf
92111
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2800 (goto-char (point-max))
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2801 (move-marker (process-mark proc) (point))
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2802 (funcall (process-filter proc) proc msg))
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2803 (set-buffer curbuf))
105ec1146aa7 Finish pdbtrack integration cleanup, settling missing-functions
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92060
diff changeset
2804 (process-send-string proc cmd)))
111753
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
2805
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2806 ;;;###autoload
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2807 (defun python-shell (&optional argprompt)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2808 "Start an interactive Python interpreter in another window.
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2809 This is like Shell mode, except that Python is running in the window
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2810 instead of a shell. See the `Interactive Shell' and `Shell Mode'
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2811 sections of the Emacs manual for details, especially for the key
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2812 bindings active in the `*Python*' buffer.
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2813
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2814 With optional \\[universal-argument], the user is prompted for the
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2815 flags to pass to the Python interpreter. This has no effect when this
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2816 command is used to switch to an existing process, only when a new
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2817 process is started. If you use this, you will probably want to ensure
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2818 that the current arguments are retained (they will be included in the
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2819 prompt). This argument is ignored when this function is called
111593
d4d6fcc60f7b * lisp/progmodes/python.el (python-shell): Doc fix.
Glenn Morris <rgm@gnu.org>
parents: 111385
diff changeset
2820 programmatically.
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2821
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2822 Note: You can toggle between using the CPython interpreter and the
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2823 JPython interpreter by hitting \\[python-toggle-shells]. This toggles
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2824 buffer local variables which control whether all your subshell
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2825 interactions happen to the `*JPython*' or `*Python*' buffers (the
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2826 latter is the name used for the CPython buffer).
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2827
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2828 Warning: Don't use an interactive Python if you change sys.ps1 or
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2829 sys.ps2 from their default values, or if you're running code that
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2830 prints `>>> ' or `... ' at the start of a line. `python-mode' can't
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2831 distinguish your output from Python's output, and assumes that `>>> '
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2832 at the start of a line is a prompt from Python. Similarly, the Emacs
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2833 Shell mode code assumes that both `>>> ' and `... ' at the start of a
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2834 line are Python prompts. Bad things can happen if you fool either
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2835 mode.
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2836
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2837 Warning: If you do any editing *in* the process buffer *while* the
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2838 buffer is accepting output from Python, do NOT attempt to `undo' the
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2839 changes. Some of the output (nowhere near the parts you changed!) may
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2840 be lost if you do. This appears to be an Emacs bug, an unfortunate
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2841 interaction between undo and process filters; the same problem exists in
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2842 non-Python process buffers using the default (Emacs-supplied) process
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2843 filter."
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2844 (interactive "P")
111753
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
2845 (require 'ansi-color) ; For ipython
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2846 ;; Set the default shell if not already set
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2847 (when (null python-which-shell)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2848 (python-toggle-shells python-default-interpreter))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2849 (let ((args python-which-args))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2850 (when (and argprompt
105372
bd2966850aac Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents: 104774
diff changeset
2851 (called-interactively-p 'interactive)
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2852 (fboundp 'split-string))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2853 ;; TBD: Perhaps force "-i" in the final list?
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2854 (setq args (split-string
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2855 (read-string (concat python-which-bufname
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2856 " arguments: ")
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2857 (concat
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2858 (mapconcat 'identity python-which-args " ") " ")
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2859 ))))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2860 (switch-to-buffer-other-window
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2861 (apply 'make-comint python-which-bufname python-which-shell nil args))
92060
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2862 (set-process-sentinel (get-buffer-process (current-buffer))
fd85a7810d53 Revise pdbtrack functionality to incorporate advances in python-mode.el.
Ken Manheimer <ken.manheimer@gmail.com>
parents: 92055
diff changeset
2863 'python-sentinel)
111753
f84b2c2c0b1b Backport fixes for Bug#5390 and Bug#5694 from trunk.
Chong Yidong <cyd@stupidchicken.com>
parents: 111752
diff changeset
2864 (python--set-prompt-regexp)
91964
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2865 (add-hook 'comint-output-filter-functions
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2866 'python-comint-output-filter-function nil t)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2867 ;; pdbtrack
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2868 (set-syntax-table python-mode-syntax-table)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2869 (use-local-map python-shell-map)))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2870
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2871 (defun python-pdbtrack-toggle-stack-tracking (arg)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2872 (interactive "P")
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2873 (if (not (get-buffer-process (current-buffer)))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2874 (error "No process associated with buffer '%s'" (current-buffer)))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2875 ;; missing or 0 is toggle, >0 turn on, <0 turn off
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2876 (if (or (not arg)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2877 (zerop (setq arg (prefix-numeric-value arg))))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2878 (setq python-pdbtrack-do-tracking-p (not python-pdbtrack-do-tracking-p))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2879 (setq python-pdbtrack-do-tracking-p (> arg 0)))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2880 (message "%sabled Python's pdbtrack"
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2881 (if python-pdbtrack-do-tracking-p "En" "Dis")))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2882
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2883 (defun turn-on-pdbtrack ()
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2884 (interactive)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2885 (python-pdbtrack-toggle-stack-tracking 1))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2886
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2887 (defun turn-off-pdbtrack ()
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2888 (interactive)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2889 (python-pdbtrack-toggle-stack-tracking 0))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2890
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2891 (defun python-sentinel (proc msg)
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2892 (setq overlay-arrow-position nil))
70017176d475 Also require comint when loading.
Nick Roberts <nickrob@snap.net.nz>
parents: 87857
diff changeset
2893
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2894 (provide 'python)
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2895 (provide 'python-21)
92055
373b00a4775c Merge from Dave Love's 2008-01-20 version.
Chong Yidong <cyd@stupidchicken.com>
parents: 91964
diff changeset
2896
77568
da9f2ed7fb46 Restore file pending consideration of legal issues.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2897 ;;; python.el ends here