blob: 13070421bbcf5c0b6e39f60be120003cfefad5e1 [file] [log] [blame]
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001;;; python-mode.el --- Major mode for editing Python programs
2
3;; Copyright (C) 1992,1993,1994 Tim Peters
4
Barry Warsawb2d5e622002-04-22 15:29:27 +00005;; Author: 1995-2002 Barry A. Warsaw
Barry Warsawfec75d61995-07-05 23:26:15 +00006;; 1992-1994 Tim Peters
Barry Warsawa97a3f31997-11-04 18:47:06 +00007;; Maintainer: python-mode@python.org
8;; Created: Feb 1992
9;; Keywords: python languages oop
Barry Warsaw7b0f5681995-03-08 21:33:04 +000010
Barry Warsaw19b1c612001-07-06 20:27:29 +000011(defconst py-version "$Revision$"
Barry Warsawc72c11c1997-08-09 06:42:08 +000012 "`python-mode' version number.")
13
Barry Warsawcfec3591995-03-10 15:58:16 +000014;; This software is provided as-is, without express or implied
15;; warranty. Permission to use, copy, modify, distribute or sell this
16;; software, without fee, for any purpose and by any individual or
17;; organization, is hereby granted, provided that the above copyright
18;; notice and this paragraph appear in all copies.
Barry Warsaw7b0f5681995-03-08 21:33:04 +000019
20;;; Commentary:
Barry Warsaw755c6711996-08-01 20:02:55 +000021
Barry Warsaw7b0f5681995-03-08 21:33:04 +000022;; This is a major mode for editing Python programs. It was developed
Barry Warsaw261f87d1996-08-20 19:57:34 +000023;; by Tim Peters after an original idea by Michael A. Guravage. Tim
Barry Warsawf7039e21998-08-20 22:10:46 +000024;; subsequently left the net; in 1995, Barry Warsaw inherited the mode
Barry Warsaw38e21e71998-10-27 22:09:25 +000025;; and is the current maintainer. Tim's now back but disavows all
26;; responsibility for the mode. Smart Tim :-)
Barry Warsaw7b0f5681995-03-08 21:33:04 +000027
Barry Warsaw4f577d22001-04-11 20:23:17 +000028;; pdbtrack support contributed by Ken Manheimer, April 2001.
29
Barry Warsawb2d5e622002-04-22 15:29:27 +000030;; Please use the SourceForge Python project to submit bugs or
31;; patches:
Barry Warsaw4f577d22001-04-11 20:23:17 +000032;;
33;; http://sourceforge.net/projects/python
Barry Warsaw37231521997-12-11 17:23:13 +000034
35;; FOR MORE INFORMATION:
36
Barry Warsaw4f577d22001-04-11 20:23:17 +000037;; There is some information on python-mode.el at
38
Barry Warsawf7039e21998-08-20 22:10:46 +000039;; http://www.python.org/emacs/python-mode/
40;;
Barry Warsawb2d5e622002-04-22 15:29:27 +000041;; It does contain links to other packages that you might find useful,
42;; such as pdb interfaces, OO-Browser links, etc.
Barry Warsaw37231521997-12-11 17:23:13 +000043
44;; BUG REPORTING:
Barry Warsaw7ae77681994-12-12 20:38:05 +000045
Barry Warsaw4f577d22001-04-11 20:23:17 +000046;; As mentioned above, please use the SourceForge Python project for
47;; submitting bug reports or patches. The old recommendation, to use
48;; C-c C-b will still work, but those reports have a higher chance of
49;; getting buried in my mailbox. Please include a complete, but
Barry Warsawaffc0ca1997-11-03 16:59:38 +000050;; concise code sample and a recipe for reproducing the bug. Send
51;; suggestions and other comments to python-mode@python.org.
52
53;; When in a Python mode buffer, do a C-h m for more help. It's
Barry Warsaw37231521997-12-11 17:23:13 +000054;; doubtful that a texinfo manual would be very useful, but if you
55;; want to contribute one, I'll certainly accept it!
Barry Warsawb5e0ecb1995-03-14 18:32:54 +000056
Barry Warsaw7b0f5681995-03-08 21:33:04 +000057;;; Code:
58
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +000059(require 'comint)
Barry Warsawc72c11c1997-08-09 06:42:08 +000060(require 'custom)
Barry Warsaw4f577d22001-04-11 20:23:17 +000061(require 'cl)
Barry Warsaw1f4fed62002-07-17 13:45:00 +000062(require 'compile)
Barry Warsawc72c11c1997-08-09 06:42:08 +000063
Barry Warsaw7b0f5681995-03-08 21:33:04 +000064
65;; user definable variables
66;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
Barry Warsaw7ae77681994-12-12 20:38:05 +000067
Barry Warsawc72c11c1997-08-09 06:42:08 +000068(defgroup python nil
69 "Support for the Python programming language, <http://www.python.org/>"
Barry Warsaw5ed843f1999-07-28 22:06:06 +000070 :group 'languages
71 :prefix "py-")
Barry Warsaw7ae77681994-12-12 20:38:05 +000072
Barry Warsawc72c11c1997-08-09 06:42:08 +000073(defcustom py-python-command "python"
74 "*Shell command used to start Python interpreter."
75 :type 'string
76 :group 'python)
77
Barry Warsawa2398801998-04-09 23:28:20 +000078(defcustom py-jpython-command "jpython"
79 "*Shell command used to start the JPython interpreter."
80 :type 'string
Barry Warsaw5ed843f1999-07-28 22:06:06 +000081 :group 'python
82 :tag "JPython Command")
Barry Warsawa2398801998-04-09 23:28:20 +000083
Barry Warsawaa384fd1999-02-16 23:36:16 +000084(defcustom py-default-interpreter 'cpython
85 "*Which Python interpreter is used by default.
86The value for this variable can be either `cpython' or `jpython'.
87
88When the value is `cpython', the variables `py-python-command' and
89`py-python-command-args' are consulted to determine the interpreter
90and arguments to use.
91
92When the value is `jpython', the variables `py-jpython-command' and
93`py-jpython-command-args' are consulted to determine the interpreter
94and arguments to use.
95
Barry Warsaw11f21561999-07-28 21:59:43 +000096Note that this variable is consulted only the first time that a Python
97mode buffer is visited during an Emacs session. After that, use
Barry Warsawaa384fd1999-02-16 23:36:16 +000098\\[py-toggle-shells] to change the interpreter shell."
99 :type '(choice (const :tag "Python (a.k.a. CPython)" cpython)
100 (const :tag "JPython" jpython))
101 :group 'python)
102
Barry Warsaw8f972b71998-02-05 20:45:49 +0000103(defcustom py-python-command-args '("-i")
104 "*List of string arguments to be used when starting a Python shell."
105 :type '(repeat string)
106 :group 'python)
107
Barry Warsawa2398801998-04-09 23:28:20 +0000108(defcustom py-jpython-command-args '("-i")
109 "*List of string arguments to be used when starting a JPython shell."
110 :type '(repeat string)
Barry Warsaw5ed843f1999-07-28 22:06:06 +0000111 :group 'python
112 :tag "JPython Command Args")
Barry Warsawa2398801998-04-09 23:28:20 +0000113
Barry Warsawc72c11c1997-08-09 06:42:08 +0000114(defcustom py-indent-offset 4
Barry Warsaw41a05c71998-08-10 16:33:12 +0000115 "*Amount of offset per level of indentation.
116`\\[py-guess-indent-offset]' can usually guess a good value when
117you're editing someone else's Python code."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000118 :type 'integer
119 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000120
Barry Warsawfd4c9e82001-06-18 23:40:35 +0000121(defcustom py-continuation-offset 4
Barry Warsaw40fb4522001-07-06 20:07:13 +0000122 "*Additional amount of offset to give for some continuation lines.
Barry Warsawfd4c9e82001-06-18 23:40:35 +0000123Continuation lines are those that immediately follow a backslash
Barry Warsaw40fb4522001-07-06 20:07:13 +0000124terminated line. Only those continuation lines for a block opening
125statement are given this extra offset."
Barry Warsawfd4c9e82001-06-18 23:40:35 +0000126 :type 'integer
127 :group 'python)
128
Barry Warsaw742a5111998-03-13 17:29:15 +0000129(defcustom py-smart-indentation t
130 "*Should `python-mode' try to automagically set some indentation variables?
131When this variable is non-nil, two things happen when a buffer is set
132to `python-mode':
133
Barry Warsawc0d2d511999-06-03 22:18:59 +0000134 1. `py-indent-offset' is guessed from existing code in the buffer.
Barry Warsaw639eea61998-03-16 18:12:13 +0000135 Only guessed values between 2 and 8 are considered. If a valid
Barry Warsaw742a5111998-03-13 17:29:15 +0000136 guess can't be made (perhaps because you are visiting a new
Barry Warsaw639eea61998-03-16 18:12:13 +0000137 file), then the value in `py-indent-offset' is used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000138
Barry Warsaw639eea61998-03-16 18:12:13 +0000139 2. `indent-tabs-mode' is turned off if `py-indent-offset' does not
140 equal `tab-width' (`indent-tabs-mode' is never turned on by
141 Python mode). This means that for newly written code, tabs are
142 only inserted in indentation if one tab is one indentation
143 level, otherwise only spaces are used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000144
Barry Warsaw8046bef1998-03-13 20:04:52 +0000145Note that both these settings occur *after* `python-mode-hook' is run,
146so if you want to defeat the automagic configuration, you must also
147set `py-smart-indentation' to nil in your `python-mode-hook'."
Barry Warsaw742a5111998-03-13 17:29:15 +0000148 :type 'boolean
149 :group 'python)
150
Barry Warsawc72c11c1997-08-09 06:42:08 +0000151(defcustom py-align-multiline-strings-p t
152 "*Flag describing how multi-line triple quoted strings are aligned.
Barry Warsaw095e9c61995-09-19 20:01:42 +0000153When this flag is non-nil, continuation lines are lined up under the
154preceding line's indentation. When this flag is nil, continuation
Barry Warsawc72c11c1997-08-09 06:42:08 +0000155lines are aligned to column zero."
156 :type '(choice (const :tag "Align under preceding line" t)
157 (const :tag "Align to column zero" nil))
158 :group 'python)
Barry Warsaw095e9c61995-09-19 20:01:42 +0000159
Barry Warsaw218eb751998-09-22 19:51:47 +0000160(defcustom py-block-comment-prefix "##"
Barry Warsaw867a32a1996-03-07 18:30:26 +0000161 "*String used by \\[comment-region] to comment out a block of code.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000162This should follow the convention for non-indenting comment lines so
163that the indentation commands won't get confused (i.e., the string
164should be of the form `#x...' where `x' is not a blank or a tab, and
Barry Warsaw218eb751998-09-22 19:51:47 +0000165`...' is arbitrary). However, this string should not end in whitespace."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000166 :type 'string
167 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000168
Barry Warsawc72c11c1997-08-09 06:42:08 +0000169(defcustom py-honor-comment-indentation t
Barry Warsaw6d627751996-03-06 18:41:38 +0000170 "*Controls how comment lines influence subsequent indentation.
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000171
Barry Warsaw6d627751996-03-06 18:41:38 +0000172When nil, all comment lines are skipped for indentation purposes, and
Barry Warsawc72c11c1997-08-09 06:42:08 +0000173if possible, a faster algorithm is used (i.e. X/Emacs 19 and beyond).
Barry Warsaw6d627751996-03-06 18:41:38 +0000174
175When t, lines that begin with a single `#' are a hint to subsequent
176line indentation. If the previous line is such a comment line (as
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000177opposed to one that starts with `py-block-comment-prefix'), then its
Barry Warsaw6d627751996-03-06 18:41:38 +0000178indentation is used as a hint for this line's indentation. Lines that
179begin with `py-block-comment-prefix' are ignored for indentation
180purposes.
181
Barry Warsawd36cfe42002-03-15 16:46:46 +0000182When not nil or t, comment lines that begin with a single `#' are used
183as indentation hints, unless the comment character is in column zero."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000184 :type '(choice
185 (const :tag "Skip all comment lines (fast)" nil)
186 (const :tag "Single # `sets' indentation for next line" t)
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000187 (const :tag "Single # `sets' indentation except at column zero"
188 other)
Barry Warsawc72c11c1997-08-09 06:42:08 +0000189 )
190 :group 'python)
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000191
Barry Warsaw516b6201997-08-09 06:43:20 +0000192(defcustom py-temp-directory
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000193 (let ((ok '(lambda (x)
194 (and x
195 (setq x (expand-file-name x)) ; always true
196 (file-directory-p x)
197 (file-writable-p x)
198 x))))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000199 (or (funcall ok (getenv "TMPDIR"))
200 (funcall ok "/usr/tmp")
201 (funcall ok "/tmp")
Barry Warsawd1648372002-03-18 18:53:56 +0000202 (funcall ok "/var/tmp")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000203 (funcall ok ".")
204 (error
Barry Warsaw6c6db0a1998-02-25 16:33:56 +0000205 "Couldn't find a usable temp directory -- set `py-temp-directory'")))
Barry Warsawd1648372002-03-18 18:53:56 +0000206 "*Directory used for temporary files created by a *Python* process.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000207By default, the first directory from this list that exists and that you
Barry Warsawd1648372002-03-18 18:53:56 +0000208can write into: the value (if any) of the environment variable TMPDIR,
209/usr/tmp, /tmp, /var/tmp, or the current directory."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000210 :type 'string
211 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000212
Barry Warsaw516b6201997-08-09 06:43:20 +0000213(defcustom py-beep-if-tab-change t
Barry Warsaw41a05c71998-08-10 16:33:12 +0000214 "*Ring the bell if `tab-width' is changed.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000215If a comment of the form
216
217 \t# vi:set tabsize=<number>:
218
219is found before the first code line when the file is entered, and the
220current value of (the general Emacs variable) `tab-width' does not
221equal <number>, `tab-width' is set to <number>, a message saying so is
222displayed in the echo area, and if `py-beep-if-tab-change' is non-nil
Barry Warsawc72c11c1997-08-09 06:42:08 +0000223the Emacs bell is also rung as a warning."
224 :type 'boolean
225 :group 'python)
226
Barry Warsaw9981d221997-12-03 05:25:48 +0000227(defcustom py-jump-on-exception t
228 "*Jump to innermost exception frame in *Python Output* buffer.
Barry Warsaw12c92941998-08-10 21:44:37 +0000229When this variable is non-nil and an exception occurs when running
Barry Warsaw9981d221997-12-03 05:25:48 +0000230Python code synchronously in a subprocess, jump immediately to the
Barry Warsaw12c92941998-08-10 21:44:37 +0000231source code of the innermost traceback frame."
Barry Warsaw3bfed5b1998-05-19 16:25:04 +0000232 :type 'boolean
233 :group 'python)
234
235(defcustom py-ask-about-save t
236 "If not nil, ask about which buffers to save before executing some code.
237Otherwise, all modified buffers are saved without asking."
238 :type 'boolean
239 :group 'python)
Barry Warsaw9981d221997-12-03 05:25:48 +0000240
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000241(defcustom py-backspace-function 'backward-delete-char-untabify
242 "*Function called by `py-electric-backspace' when deleting backwards."
243 :type 'function
244 :group 'python)
245
246(defcustom py-delete-function 'delete-char
247 "*Function called by `py-electric-delete' when deleting forwards."
248 :type 'function
249 :group 'python)
250
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000251(defcustom py-imenu-show-method-args-p nil
252 "*Controls echoing of arguments of functions & methods in the Imenu buffer.
253When non-nil, arguments are printed."
254 :type 'boolean
255 :group 'python)
256(make-variable-buffer-local 'py-indent-offset)
257
Barry Warsaw4f577d22001-04-11 20:23:17 +0000258(defcustom py-pdbtrack-do-tracking-p t
259 "*Controls whether the pdbtrack feature is enabled or not.
260When non-nil, pdbtrack is enabled in all comint-based buffers,
261e.g. shell buffers and the *Python* buffer. When using pdb to debug a
262Python program, pdbtrack notices the pdb prompt and displays the
263source file and line that the program is stopped at, much the same way
264as gud-mode does for debugging C programs with gdb."
265 :type 'boolean
266 :group 'python)
267(make-variable-buffer-local 'py-pdbtrack-do-tracking-p)
268
269(defcustom py-pdbtrack-minor-mode-string " PDB"
270 "*String to use in the minor mode list when pdbtrack is enabled."
271 :type 'string
272 :group 'python)
273
Barry Warsaw88491612002-04-25 21:31:47 +0000274(defcustom py-import-check-point-max
275 20000
276 "Maximum number of characters to search for a Java-ish import statement.
277When `python-mode' tries to calculate the shell to use (either a
278CPython or a JPython shell), it looks at the so-called `shebang' line
279-- i.e. #! line. If that's not available, it looks at some of the
280file heading imports to see if they look Java-like."
281 :type 'integer
282 :group 'python
283 )
284
285(defcustom py-jpython-packages
286 '("java" "javax" "org" "com")
287 "Imported packages that imply `jpython-mode'."
288 :type '(repeat string)
289 :group 'python)
290
Barry Warsawc0ecb531998-01-20 21:43:34 +0000291;; Not customizable
292(defvar py-master-file nil
293 "If non-nil, execute the named file instead of the buffer's file.
Barry Warsaw50b3eb61998-02-25 15:57:47 +0000294The intent is to allow you to set this variable in the file's local
Barry Warsawc0ecb531998-01-20 21:43:34 +0000295variable section, e.g.:
296
297 # Local Variables:
298 # py-master-file: \"master.py\"
299 # End:
300
Barry Warsaw41a05c71998-08-10 16:33:12 +0000301so that typing \\[py-execute-buffer] in that buffer executes the named
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000302master file instead of the buffer's file. If the file name has a
303relative path, the value of variable `default-directory' for the
304buffer is prepended to come up with a file name.")
Barry Warsawc0ecb531998-01-20 21:43:34 +0000305(make-variable-buffer-local 'py-master-file)
306
Barry Warsaw29a90f02002-04-22 21:48:20 +0000307(defcustom py-pychecker-command "pychecker"
308 "*Shell command used to run Pychecker."
309 :type 'string
310 :group 'python
311 :tag "Pychecker Command")
312
313(defcustom py-pychecker-command-args '("--stdlib")
314 "*List of string arguments to be passed to pychecker."
315 :type '(repeat string)
316 :group 'python
317 :tag "Pychecker Command Args")
318
Barry Warsaw88491612002-04-25 21:31:47 +0000319(defvar py-shell-alist
320 '(("jpython" . 'jpython)
321 ("jython" . 'jpython)
322 ("python" . 'cpython))
323 "*Alist of interpreters and python shells. Used by `py-choose-shell'
324to select the appropriate python interpreter mode for a file.")
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000325
Barry Warsawc72c11c1997-08-09 06:42:08 +0000326
327;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
328;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT
329
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000330(defconst py-emacs-features
331 (let (features)
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000332 features)
Barry Warsawc12c62e1997-09-04 04:18:07 +0000333 "A list of features extant in the Emacs you are using.
Barry Warsaw6ae21ad1997-11-06 14:36:49 +0000334There are many flavors of Emacs out there, with different levels of
335support for features needed by `python-mode'.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000336
Barry Warsaw29a90f02002-04-22 21:48:20 +0000337;; Face for None, True, False, self, and Ellipsis
338(defvar py-pseudo-keyword-face 'py-pseudo-keyword-face
339 "Face for pseudo keywords in Python mode, like self, True, False, Ellipsis.")
340(make-face 'py-pseudo-keyword-face)
341
342(defun py-font-lock-mode-hook ()
343 (or (face-differs-from-default-p 'py-pseudo-keyword-face)
344 (copy-face 'font-lock-keyword-face 'py-pseudo-keyword-face)))
345(add-hook 'font-lock-mode-hook 'py-font-lock-mode-hook)
346
Barry Warsawfb07f401997-02-24 03:37:22 +0000347(defvar python-font-lock-keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000348 (let ((kw1 (mapconcat 'identity
349 '("and" "assert" "break" "class"
350 "continue" "def" "del" "elif"
351 "else" "except" "exec" "for"
352 "from" "global" "if" "import"
353 "in" "is" "lambda" "not"
354 "or" "pass" "print" "raise"
Barry Warsawe275c422001-06-19 18:24:42 +0000355 "return" "while" "yield"
Barry Warsawb8f11661997-11-06 14:35:15 +0000356 )
357 "\\|"))
358 (kw2 (mapconcat 'identity
359 '("else:" "except:" "finally:" "try:")
360 "\\|"))
361 )
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000362 (list
Barry Warsawef3c8911997-11-05 18:55:50 +0000363 ;; keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000364 (cons (concat "\\b\\(" kw1 "\\)\\b[ \n\t(]") 1)
365 ;; block introducing keywords with immediately following colons.
366 ;; Yes "except" is in both lists.
367 (cons (concat "\\b\\(" kw2 "\\)[ \n\t(]") 1)
Barry Warsawe0c182f2000-12-27 17:41:47 +0000368 ;; `as' but only in "import foo as bar"
369 '("[ \t]*\\(\\bfrom\\b.*\\)?\\bimport\\b.*\\b\\(as\\)\\b" . 2)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000370 ;; classes
371 '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
372 1 font-lock-type-face)
373 ;; functions
374 '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
375 1 font-lock-function-name-face)
Barry Warsaw29a90f02002-04-22 21:48:20 +0000376 ;; pseudo-keywords
377 '("\\b\\(self\\|None\\|True\\|False\\|Ellipsis\\)\\b"
378 1 py-pseudo-keyword-face)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000379 ))
Barry Warsaw62d9d6e1996-03-06 20:32:27 +0000380 "Additional expressions to highlight in Python mode.")
Barry Warsawfb07f401997-02-24 03:37:22 +0000381(put 'python-mode 'font-lock-defaults '(python-font-lock-keywords))
382
Barry Warsawe467bfb1997-11-26 05:40:58 +0000383;; have to bind py-file-queue before installing the kill-emacs-hook
Barry Warsaw7ae77681994-12-12 20:38:05 +0000384(defvar py-file-queue nil
385 "Queue of Python temp files awaiting execution.
386Currently-active file is at the head of the list.")
387
Barry Warsaw4f577d22001-04-11 20:23:17 +0000388(defvar py-pdbtrack-is-tracking-p nil)
Barry Warsaw29a90f02002-04-22 21:48:20 +0000389(defvar py-pychecker-history nil)
Barry Warsaw4f577d22001-04-11 20:23:17 +0000390
391
Barry Warsawc72c11c1997-08-09 06:42:08 +0000392
393;; Constants
394
Barry Warsawc72c11c1997-08-09 06:42:08 +0000395(defconst py-stringlit-re
396 (concat
Barry Warsaw751f4931998-05-19 16:06:21 +0000397 ;; These fail if backslash-quote ends the string (not worth
398 ;; fixing?). They precede the short versions so that the first two
399 ;; quotes don't look like an empty short string.
400 ;;
401 ;; (maybe raw), long single quoted triple quoted strings (SQTQ),
402 ;; with potential embedded single quotes
403 "[rR]?'''[^']*\\(\\('[^']\\|''[^']\\)[^']*\\)*'''"
404 "\\|"
405 ;; (maybe raw), long double quoted triple quoted strings (DQTQ),
406 ;; with potential embedded double quotes
407 "[rR]?\"\"\"[^\"]*\\(\\(\"[^\"]\\|\"\"[^\"]\\)[^\"]*\\)*\"\"\""
408 "\\|"
409 "[rR]?'\\([^'\n\\]\\|\\\\.\\)*'" ; single-quoted
Barry Warsawc72c11c1997-08-09 06:42:08 +0000410 "\\|" ; or
Barry Warsaw751f4931998-05-19 16:06:21 +0000411 "[rR]?\"\\([^\"\n\\]\\|\\\\.\\)*\"" ; double-quoted
Barry Warsaw41a05c71998-08-10 16:33:12 +0000412 )
413 "Regular expression matching a Python string literal.")
Barry Warsaw751f4931998-05-19 16:06:21 +0000414
Barry Warsawc72c11c1997-08-09 06:42:08 +0000415(defconst py-continued-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000416 ;; This is tricky because a trailing backslash does not mean
417 ;; continuation if it's in a comment
Barry Warsawc72c11c1997-08-09 06:42:08 +0000418 (concat
419 "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*"
Barry Warsaw41a05c71998-08-10 16:33:12 +0000420 "\\\\$")
421 "Regular expression matching Python backslash continuation lines.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000422
Barry Warsaw41a05c71998-08-10 16:33:12 +0000423(defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)"
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000424 "Regular expression matching a blank or comment line.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000425
Barry Warsawc72c11c1997-08-09 06:42:08 +0000426(defconst py-outdent-re
427 (concat "\\(" (mapconcat 'identity
428 '("else:"
429 "except\\(\\s +.*\\)?:"
430 "finally:"
431 "elif\\s +.*:")
432 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000433 "\\)")
434 "Regular expression matching statements to be dedented one level.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000435
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000436(defconst py-block-closing-keywords-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000437 "\\(return\\|raise\\|break\\|continue\\|pass\\)"
438 "Regular expression matching keywords which typically close a block.")
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000439
Barry Warsawc72c11c1997-08-09 06:42:08 +0000440(defconst py-no-outdent-re
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000441 (concat
442 "\\("
443 (mapconcat 'identity
444 (list "try:"
445 "except\\(\\s +.*\\)?:"
446 "while\\s +.*:"
447 "for\\s +.*:"
448 "if\\s +.*:"
449 "elif\\s +.*:"
450 (concat py-block-closing-keywords-re "[ \t\n]")
451 )
452 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000453 "\\)")
454 "Regular expression matching lines not to dedent after.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000455
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000456(defconst py-defun-start-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000457 "^\\([ \t]*\\)def[ \t]+\\([a-zA-Z_0-9]+\\)\\|\\(^[a-zA-Z_0-9]+\\)[ \t]*="
458 ;; If you change this, you probably have to change py-current-defun
459 ;; as well. This is only used by py-current-defun to find the name
460 ;; for add-log.el.
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000461 "Regular expression matching a function, method, or variable assignment.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000462
Barry Warsaw41a05c71998-08-10 16:33:12 +0000463(defconst py-class-start-re "^class[ \t]*\\([a-zA-Z_0-9]+\\)"
464 ;; If you change this, you probably have to change py-current-defun
465 ;; as well. This is only used by py-current-defun to find the name
466 ;; for add-log.el.
467 "Regular expression for finding a class name.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000468
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000469(defconst py-traceback-line-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000470 "[ \t]+File \"\\([^\"]+\\)\", line \\([0-9]+\\)"
471 "Regular expression that describes tracebacks.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000472
Barry Warsaw4f577d22001-04-11 20:23:17 +0000473;; pdbtrack contants
474(defconst py-pdbtrack-stack-entry-regexp
Ken Manheimere7aca522003-03-03 00:35:32 +0000475; "^> \\([^(]+\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_]+\\)()"
476 "^> \\(.*\\)(\\([0-9]+\\))\\([?a-zA-Z0-9_]+\\)()"
Barry Warsaw4f577d22001-04-11 20:23:17 +0000477 "Regular expression pdbtrack uses to find a stack trace entry.")
478
479(defconst py-pdbtrack-input-prompt "\n[(<]?pdb[>)]? "
480 "Regular expression pdbtrack uses to recognize a pdb prompt.")
481
482(defconst py-pdbtrack-track-range 10000
483 "Max number of characters from end of buffer to search for stack entry.")
484
Barry Warsawc72c11c1997-08-09 06:42:08 +0000485
486
Barry Warsawc72c11c1997-08-09 06:42:08 +0000487;; Major mode boilerplate
488
Barry Warsaw7ae77681994-12-12 20:38:05 +0000489;; define a mode-specific abbrev table for those who use such things
490(defvar python-mode-abbrev-table nil
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000491 "Abbrev table in use in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000492(define-abbrev-table 'python-mode-abbrev-table nil)
493
Barry Warsaw7ae77681994-12-12 20:38:05 +0000494(defvar python-mode-hook nil
495 "*Hook called by `python-mode'.")
496
Barry Warsaw88491612002-04-25 21:31:47 +0000497(defvar jpython-mode-hook nil
498 "*Hook called by `jpython-mode'. `jpython-mode' also calls
499`python-mode-hook'.")
500
Barry Warsaw56bd2ed2002-04-25 15:44:17 +0000501(defvar py-shell-hook nil
502 "*Hook called by `py-shell'.")
503
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000504;; In previous version of python-mode.el, the hook was incorrectly
505;; called py-mode-hook, and was not defvar'd. Deprecate its use.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000506(and (fboundp 'make-obsolete-variable)
507 (make-obsolete-variable 'py-mode-hook 'python-mode-hook))
508
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000509(defvar py-mode-map ()
510 "Keymap used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000511(if py-mode-map
Barry Warsawc72c11c1997-08-09 06:42:08 +0000512 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000513 (setq py-mode-map (make-sparse-keymap))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000514 ;; electric keys
515 (define-key py-mode-map ":" 'py-electric-colon)
516 ;; indentation level modifiers
517 (define-key py-mode-map "\C-c\C-l" 'py-shift-region-left)
518 (define-key py-mode-map "\C-c\C-r" 'py-shift-region-right)
519 (define-key py-mode-map "\C-c<" 'py-shift-region-left)
520 (define-key py-mode-map "\C-c>" 'py-shift-region-right)
Skip Montanaro6c5bc342002-12-31 16:56:20 +0000521 ;; paragraph and string filling
522 (define-key py-mode-map "\eq" 'py-fill-paragraph)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000523 ;; subprocess commands
524 (define-key py-mode-map "\C-c\C-c" 'py-execute-buffer)
Barry Warsaw820273d1998-05-19 15:54:45 +0000525 (define-key py-mode-map "\C-c\C-m" 'py-execute-import-or-reload)
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000526 (define-key py-mode-map "\C-c\C-s" 'py-execute-string)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000527 (define-key py-mode-map "\C-c|" 'py-execute-region)
Barry Warsaw820273d1998-05-19 15:54:45 +0000528 (define-key py-mode-map "\e\C-x" 'py-execute-def-or-class)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000529 (define-key py-mode-map "\C-c!" 'py-shell)
Barry Warsawa2398801998-04-09 23:28:20 +0000530 (define-key py-mode-map "\C-c\C-t" 'py-toggle-shells)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000531 ;; Caution! Enter here at your own risk. We are trying to support
532 ;; several behaviors and it gets disgusting. :-( This logic ripped
533 ;; largely from CC Mode.
534 ;;
535 ;; In XEmacs 19, Emacs 19, and Emacs 20, we use this to bind
536 ;; backwards deletion behavior to DEL, which both Delete and
537 ;; Backspace get translated to. There's no way to separate this
538 ;; behavior in a clean way, so deal with it! Besides, it's been
539 ;; this way since the dawn of time.
540 (if (not (boundp 'delete-key-deletes-forward))
541 (define-key py-mode-map "\177" 'py-electric-backspace)
542 ;; However, XEmacs 20 actually achieved enlightenment. It is
543 ;; possible to sanely define both backward and forward deletion
544 ;; behavior under X separately (TTYs are forever beyond hope, but
545 ;; who cares? XEmacs 20 does the right thing with these too).
546 (define-key py-mode-map [delete] 'py-electric-delete)
547 (define-key py-mode-map [backspace] 'py-electric-backspace))
Barry Warsaw8c4a8de1997-11-26 20:30:33 +0000548 ;; Separate M-BS from C-M-h. The former should remain
549 ;; backward-kill-word.
550 (define-key py-mode-map [(control meta h)] 'py-mark-def-or-class)
Barry Warsaw2518c671997-11-05 00:51:08 +0000551 (define-key py-mode-map "\C-c\C-k" 'py-mark-block)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000552 ;; Miscellaneous
553 (define-key py-mode-map "\C-c:" 'py-guess-indent-offset)
554 (define-key py-mode-map "\C-c\t" 'py-indent-region)
Barry Warsaw4f577d22001-04-11 20:23:17 +0000555 (define-key py-mode-map "\C-c\C-d" 'py-pdbtrack-toggle-stack-tracking)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000556 (define-key py-mode-map "\C-c\C-n" 'py-next-statement)
557 (define-key py-mode-map "\C-c\C-p" 'py-previous-statement)
558 (define-key py-mode-map "\C-c\C-u" 'py-goto-block-up)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000559 (define-key py-mode-map "\C-c#" 'py-comment-region)
560 (define-key py-mode-map "\C-c?" 'py-describe-mode)
Barry Warsaw04949552002-04-22 22:05:49 +0000561 (define-key py-mode-map [f1] 'py-help-at-point)
Barry Warsawa7cc43b2002-04-22 17:15:19 +0000562 (define-key py-mode-map "\C-c\C-h" 'py-help-at-point)
Barry Warsawab0e86c1998-05-19 15:31:46 +0000563 (define-key py-mode-map "\e\C-a" 'py-beginning-of-def-or-class)
564 (define-key py-mode-map "\e\C-e" 'py-end-of-def-or-class)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000565 (define-key py-mode-map "\C-c-" 'py-up-exception)
566 (define-key py-mode-map "\C-c=" 'py-down-exception)
Barry Warsawf8ddb6a1999-01-18 21:49:39 +0000567 ;; stuff that is `standard' but doesn't interface well with
568 ;; python-mode, which forces us to rebind to special commands
569 (define-key py-mode-map "\C-xnd" 'py-narrow-to-defun)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000570 ;; information
571 (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report)
572 (define-key py-mode-map "\C-c\C-v" 'py-version)
Barry Warsaw29a90f02002-04-22 21:48:20 +0000573 (define-key py-mode-map "\C-c\C-w" 'py-pychecker-run)
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000574 ;; shadow global bindings for newline-and-indent w/ the py- version.
575 ;; BAW - this is extremely bad form, but I'm not going to change it
576 ;; for now.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000577 (mapcar #'(lambda (key)
578 (define-key py-mode-map key 'py-newline-and-indent))
579 (where-is-internal 'newline-and-indent))
Barry Warsawf19feb81999-01-21 17:06:11 +0000580 ;; Force RET to be py-newline-and-indent even if it didn't get
581 ;; mapped by the above code. motivation: Emacs' default binding for
582 ;; RET is `newline' and C-j is `newline-and-indent'. Most Pythoneers
583 ;; expect RET to do a `py-newline-and-indent' and any Emacsers who
584 ;; dislike this are probably knowledgeable enough to do a rebind.
585 ;; However, we do *not* change C-j since many Emacsers have already
586 ;; swapped RET and C-j and they don't want C-j bound to `newline' to
587 ;; change.
588 (define-key py-mode-map "\C-m" 'py-newline-and-indent)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000589 )
590
591(defvar py-mode-output-map nil
Barry Warsaw41a05c71998-08-10 16:33:12 +0000592 "Keymap used in *Python Output* buffers.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000593(if py-mode-output-map
594 nil
595 (setq py-mode-output-map (make-sparse-keymap))
596 (define-key py-mode-output-map [button2] 'py-mouseto-exception)
597 (define-key py-mode-output-map "\C-c\C-c" 'py-goto-exception)
598 ;; TBD: Disable all self-inserting keys. This is bogus, we should
599 ;; really implement this as *Python Output* buffer being read-only
600 (mapcar #' (lambda (key)
601 (define-key py-mode-output-map key
602 #'(lambda () (interactive) (beep))))
603 (where-is-internal 'self-insert-command))
Barry Warsaw850437a1995-03-08 21:50:28 +0000604 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000605
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +0000606(defvar py-shell-map nil
607 "Keymap used in *Python* shell buffers.")
608(if py-shell-map
609 nil
610 (setq py-shell-map (copy-keymap comint-mode-map))
611 (define-key py-shell-map [tab] 'tab-to-tab-stop)
612 (define-key py-shell-map "\C-c-" 'py-up-exception)
613 (define-key py-shell-map "\C-c=" 'py-down-exception)
614 )
615
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000616(defvar py-mode-syntax-table nil
617 "Syntax table used in `python-mode' buffers.")
Barry Warsawa7cc43b2002-04-22 17:15:19 +0000618(when (not py-mode-syntax-table)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000619 (setq py-mode-syntax-table (make-syntax-table))
Barry Warsawc72c11c1997-08-09 06:42:08 +0000620 (modify-syntax-entry ?\( "()" py-mode-syntax-table)
621 (modify-syntax-entry ?\) ")(" py-mode-syntax-table)
622 (modify-syntax-entry ?\[ "(]" py-mode-syntax-table)
623 (modify-syntax-entry ?\] ")[" py-mode-syntax-table)
624 (modify-syntax-entry ?\{ "(}" py-mode-syntax-table)
625 (modify-syntax-entry ?\} "){" py-mode-syntax-table)
626 ;; Add operator symbols misassigned in the std table
627 (modify-syntax-entry ?\$ "." py-mode-syntax-table)
628 (modify-syntax-entry ?\% "." py-mode-syntax-table)
629 (modify-syntax-entry ?\& "." py-mode-syntax-table)
630 (modify-syntax-entry ?\* "." py-mode-syntax-table)
631 (modify-syntax-entry ?\+ "." py-mode-syntax-table)
632 (modify-syntax-entry ?\- "." py-mode-syntax-table)
633 (modify-syntax-entry ?\/ "." py-mode-syntax-table)
634 (modify-syntax-entry ?\< "." py-mode-syntax-table)
635 (modify-syntax-entry ?\= "." py-mode-syntax-table)
636 (modify-syntax-entry ?\> "." py-mode-syntax-table)
637 (modify-syntax-entry ?\| "." py-mode-syntax-table)
638 ;; For historical reasons, underscore is word class instead of
639 ;; symbol class. GNU conventions say it should be symbol class, but
640 ;; there's a natural conflict between what major mode authors want
641 ;; and what users expect from `forward-word' and `backward-word'.
642 ;; Guido and I have hashed this out and have decided to keep
643 ;; underscore in word class. If you're tempted to change it, try
644 ;; binding M-f and M-b to py-forward-into-nomenclature and
Barry Warsawaa384fd1999-02-16 23:36:16 +0000645 ;; py-backward-into-nomenclature instead. This doesn't help in all
646 ;; situations where you'd want the different behavior
647 ;; (e.g. backward-kill-word).
Barry Warsawc72c11c1997-08-09 06:42:08 +0000648 (modify-syntax-entry ?\_ "w" py-mode-syntax-table)
649 ;; Both single quote and double quote are string delimiters
650 (modify-syntax-entry ?\' "\"" py-mode-syntax-table)
651 (modify-syntax-entry ?\" "\"" py-mode-syntax-table)
652 ;; backquote is open and close paren
653 (modify-syntax-entry ?\` "$" py-mode-syntax-table)
654 ;; comment delimiters
655 (modify-syntax-entry ?\# "<" py-mode-syntax-table)
656 (modify-syntax-entry ?\n ">" py-mode-syntax-table)
657 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000658
Barry Warsawa7cc43b2002-04-22 17:15:19 +0000659;; An auxiliary syntax table which places underscore and dot in the
660;; symbol class for simplicity
661(defvar py-dotted-expression-syntax-table nil
662 "Syntax table used to identify Python dotted expressions.")
663(when (not py-dotted-expression-syntax-table)
664 (setq py-dotted-expression-syntax-table
665 (copy-syntax-table py-mode-syntax-table))
666 (modify-syntax-entry ?_ "_" py-dotted-expression-syntax-table)
667 (modify-syntax-entry ?. "_" py-dotted-expression-syntax-table))
668
Barry Warsawb3e81d51996-09-04 15:12:42 +0000669
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000670
Barry Warsawbc3760b1998-09-14 16:16:18 +0000671;; Utilities
Barry Warsawbc3760b1998-09-14 16:16:18 +0000672(defmacro py-safe (&rest body)
673 "Safely execute BODY, return nil if an error occurred."
674 (` (condition-case nil
675 (progn (,@ body))
676 (error nil))))
677
678(defsubst py-keep-region-active ()
679 "Keep the region active in XEmacs."
680 ;; Ignore byte-compiler warnings you might see. Also note that
681 ;; FSF's Emacs 19 does it differently; its policy doesn't require us
682 ;; to take explicit action.
683 (and (boundp 'zmacs-region-stays)
684 (setq zmacs-region-stays t)))
685
686(defsubst py-point (position)
687 "Returns the value of point at certain commonly referenced POSITIONs.
688POSITION can be one of the following symbols:
689
690 bol -- beginning of line
691 eol -- end of line
692 bod -- beginning of def or class
693 eod -- end of def or class
694 bob -- beginning of buffer
695 eob -- end of buffer
696 boi -- back to indentation
697 bos -- beginning of statement
698
699This function does not modify point or mark."
700 (let ((here (point)))
701 (cond
702 ((eq position 'bol) (beginning-of-line))
703 ((eq position 'eol) (end-of-line))
704 ((eq position 'bod) (py-beginning-of-def-or-class))
705 ((eq position 'eod) (py-end-of-def-or-class))
706 ;; Kind of funny, I know, but useful for py-up-exception.
707 ((eq position 'bob) (beginning-of-buffer))
708 ((eq position 'eob) (end-of-buffer))
709 ((eq position 'boi) (back-to-indentation))
710 ((eq position 'bos) (py-goto-initial-line))
711 (t (error "Unknown buffer position requested: %s" position))
712 )
713 (prog1
714 (point)
715 (goto-char here))))
716
717(defsubst py-highlight-line (from to file line)
718 (cond
719 ((fboundp 'make-extent)
720 ;; XEmacs
721 (let ((e (make-extent from to)))
722 (set-extent-property e 'mouse-face 'highlight)
723 (set-extent-property e 'py-exc-info (cons file line))
724 (set-extent-property e 'keymap py-mode-output-map)))
725 (t
726 ;; Emacs -- Please port this!
727 )
728 ))
729
730(defun py-in-literal (&optional lim)
731 "Return non-nil if point is in a Python literal (a comment or string).
732Optional argument LIM indicates the beginning of the containing form,
733i.e. the limit on how far back to scan."
734 ;; This is the version used for non-XEmacs, which has a nicer
735 ;; interface.
736 ;;
737 ;; WARNING: Watch out for infinite recursion.
738 (let* ((lim (or lim (py-point 'bod)))
739 (state (parse-partial-sexp lim (point))))
740 (cond
741 ((nth 3 state) 'string)
742 ((nth 4 state) 'comment)
743 (t nil))))
744
745;; XEmacs has a built-in function that should make this much quicker.
746;; In this case, lim is ignored
747(defun py-fast-in-literal (&optional lim)
748 "Fast version of `py-in-literal', used only by XEmacs.
749Optional LIM is ignored."
750 ;; don't have to worry about context == 'block-comment
751 (buffer-syntactic-context))
752
753(if (fboundp 'buffer-syntactic-context)
754 (defalias 'py-in-literal 'py-fast-in-literal))
755
756
757
Barry Warsaw42f707f1996-07-29 21:05:05 +0000758;; Menu definitions, only relevent if you have the easymenu.el package
759;; (standard in the latest Emacs 19 and XEmacs 19 distributions).
Barry Warsaw5490a061996-08-06 15:43:33 +0000760(defvar py-menu nil
761 "Menu for Python Mode.
Barry Warsawc72c11c1997-08-09 06:42:08 +0000762This menu will get created automatically if you have the `easymenu'
763package. Note that the latest X/Emacs releases contain this package.")
Barry Warsaw5490a061996-08-06 15:43:33 +0000764
Barry Warsawc72c11c1997-08-09 06:42:08 +0000765(and (py-safe (require 'easymenu) t)
766 (easy-menu-define
767 py-menu py-mode-map "Python Mode menu"
768 '("Python"
769 ["Comment Out Region" py-comment-region (mark)]
770 ["Uncomment Region" (py-comment-region (point) (mark) '(4)) (mark)]
771 "-"
772 ["Mark current block" py-mark-block t]
Barry Warsaw2518c671997-11-05 00:51:08 +0000773 ["Mark current def" py-mark-def-or-class t]
774 ["Mark current class" (py-mark-def-or-class t) t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000775 "-"
776 ["Shift region left" py-shift-region-left (mark)]
777 ["Shift region right" py-shift-region-right (mark)]
778 "-"
Barry Warsaw820273d1998-05-19 15:54:45 +0000779 ["Import/reload file" py-execute-import-or-reload t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000780 ["Execute buffer" py-execute-buffer t]
781 ["Execute region" py-execute-region (mark)]
Barry Warsaw820273d1998-05-19 15:54:45 +0000782 ["Execute def or class" py-execute-def-or-class (mark)]
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000783 ["Execute string" py-execute-string t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000784 ["Start interpreter..." py-shell t]
785 "-"
786 ["Go to start of block" py-goto-block-up t]
Barry Warsawab0e86c1998-05-19 15:31:46 +0000787 ["Go to start of class" (py-beginning-of-def-or-class t) t]
788 ["Move to end of class" (py-end-of-def-or-class t) t]
789 ["Move to start of def" py-beginning-of-def-or-class t]
790 ["Move to end of def" py-end-of-def-or-class t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000791 "-"
792 ["Describe mode" py-describe-mode t]
793 )))
Barry Warsaw42f707f1996-07-29 21:05:05 +0000794
Barry Warsaw81437461996-08-01 19:48:02 +0000795
796
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000797;; Imenu definitions
798(defvar py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000799 (concat ; <<classes>>
800 "\\(" ;
801 "^[ \t]*" ; newline and maybe whitespace
802 "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name
803 ; possibly multiple superclasses
Barry Warsaw3179fe01998-04-04 21:36:53 +0000804 "\\([ \t]*\\((\\([a-zA-Z0-9_,. \t\n]\\)*)\\)?\\)"
Barry Warsaw81437461996-08-01 19:48:02 +0000805 "[ \t]*:" ; and the final :
806 "\\)" ; >>classes<<
807 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000808 "Regexp for Python classes for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000809 )
810
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000811(defvar py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000812 (concat ; <<methods and functions>>
813 "\\(" ;
814 "^[ \t]*" ; new line and maybe whitespace
815 "\\(def[ \t]+" ; function definitions start with def
816 "\\([a-zA-Z0-9_]+\\)" ; name is here
817 ; function arguments...
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000818;; "[ \t]*(\\([-+/a-zA-Z0-9_=,\* \t\n.()\"'#]*\\))"
819 "[ \t]*(\\([^:#]*\\))"
Barry Warsaw81437461996-08-01 19:48:02 +0000820 "\\)" ; end of def
821 "[ \t]*:" ; and then the :
822 "\\)" ; >>methods and functions<<
823 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000824 "Regexp for Python methods/functions for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000825 )
826
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000827(defvar py-imenu-method-no-arg-parens '(2 8)
828 "Indices into groups of the Python regexp for use with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000829
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000830Using these values will result in smaller Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000831functions are not listed.
832
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000833See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000834information.")
835
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000836(defvar py-imenu-method-arg-parens '(2 7)
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000837 "Indices into groups of the Python regexp for use with imenu.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000838Using these values will result in large Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000839functions are listed.
840
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000841See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000842information.")
843
844;; Note that in this format, this variable can still be used with the
845;; imenu--generic-function. Otherwise, there is no real reason to have
846;; it.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000847(defvar py-imenu-generic-expression
Barry Warsaw81437461996-08-01 19:48:02 +0000848 (cons
849 (concat
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000850 py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000851 "\\|" ; or...
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000852 py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000853 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000854 py-imenu-method-no-arg-parens)
855 "Generic Python expression which may be used directly with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000856Used by setting the variable `imenu-generic-expression' to this value.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000857Also, see the function \\[py-imenu-create-index] for a better
858alternative for finding the index.")
Barry Warsaw81437461996-08-01 19:48:02 +0000859
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000860;; These next two variables are used when searching for the Python
Barry Warsaw81437461996-08-01 19:48:02 +0000861;; class/definitions. Just saving some time in accessing the
862;; generic-python-expression, really.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000863(defvar py-imenu-generic-regexp nil)
864(defvar py-imenu-generic-parens nil)
Barry Warsaw81437461996-08-01 19:48:02 +0000865
866
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000867(defun py-imenu-create-index-function ()
868 "Python interface function for the Imenu package.
869Finds all Python classes and functions/methods. Calls function
870\\[py-imenu-create-index-engine]. See that function for the details
871of how this works."
872 (setq py-imenu-generic-regexp (car py-imenu-generic-expression)
873 py-imenu-generic-parens (if py-imenu-show-method-args-p
874 py-imenu-method-arg-parens
875 py-imenu-method-no-arg-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000876 (goto-char (point-min))
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000877 ;; Warning: When the buffer has no classes or functions, this will
878 ;; return nil, which seems proper according to the Imenu API, but
879 ;; causes an error in the XEmacs port of Imenu. Sigh.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000880 (py-imenu-create-index-engine nil))
Barry Warsaw81437461996-08-01 19:48:02 +0000881
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000882(defun py-imenu-create-index-engine (&optional start-indent)
883 "Function for finding Imenu definitions in Python.
Barry Warsaw81437461996-08-01 19:48:02 +0000884
885Finds all definitions (classes, methods, or functions) in a Python
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000886file for the Imenu package.
Barry Warsaw81437461996-08-01 19:48:02 +0000887
888Returns a possibly nested alist of the form
889
890 (INDEX-NAME . INDEX-POSITION)
891
892The second element of the alist may be an alist, producing a nested
893list as in
894
895 (INDEX-NAME . INDEX-ALIST)
896
897This function should not be called directly, as it calls itself
898recursively and requires some setup. Rather this is the engine for
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000899the function \\[py-imenu-create-index-function].
Barry Warsaw81437461996-08-01 19:48:02 +0000900
901It works recursively by looking for all definitions at the current
902indention level. When it finds one, it adds it to the alist. If it
903finds a definition at a greater indentation level, it removes the
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000904previous definition from the alist. In its place it adds all
Barry Warsaw81437461996-08-01 19:48:02 +0000905definitions found at the next indentation level. When it finds a
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000906definition that is less indented then the current level, it returns
907the alist it has created thus far.
Barry Warsaw81437461996-08-01 19:48:02 +0000908
909The optional argument START-INDENT indicates the starting indentation
910at which to continue looking for Python classes, methods, or
911functions. If this is not supplied, the function uses the indentation
912of the first definition found."
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000913 (let (index-alist
914 sub-method-alist
Barry Warsaw81437461996-08-01 19:48:02 +0000915 looking-p
916 def-name prev-name
917 cur-indent def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000918 (class-paren (first py-imenu-generic-parens))
919 (def-paren (second py-imenu-generic-parens)))
Barry Warsaw81437461996-08-01 19:48:02 +0000920 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000921 (re-search-forward py-imenu-generic-regexp (point-max) t))
Barry Warsaw81437461996-08-01 19:48:02 +0000922 (while looking-p
923 (save-excursion
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000924 ;; used to set def-name to this value but generic-extract-name
925 ;; is new to imenu-1.14. this way it still works with
926 ;; imenu-1.11
927 ;;(imenu--generic-extract-name py-imenu-generic-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000928 (let ((cur-paren (if (match-beginning class-paren)
929 class-paren def-paren)))
930 (setq def-name
Barry Warsawc8520351997-11-26 06:14:40 +0000931 (buffer-substring-no-properties (match-beginning cur-paren)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000932 (match-end cur-paren))))
Barry Warsaw93c88cc1998-08-18 02:00:44 +0000933 (save-match-data
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000934 (py-beginning-of-def-or-class 'either))
Barry Warsaw81437461996-08-01 19:48:02 +0000935 (beginning-of-line)
936 (setq cur-indent (current-indentation)))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000937 ;; HACK: want to go to the next correct definition location. We
938 ;; explicitly list them here but it would be better to have them
939 ;; in a list.
Barry Warsaw81437461996-08-01 19:48:02 +0000940 (setq def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000941 (or (match-beginning class-paren)
942 (match-beginning def-paren)))
Barry Warsaw81437461996-08-01 19:48:02 +0000943 ;; if we don't have a starting indent level, take this one
944 (or start-indent
945 (setq start-indent cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000946 ;; if we don't have class name yet, take this one
947 (or prev-name
948 (setq prev-name def-name))
Barry Warsaw81437461996-08-01 19:48:02 +0000949 ;; what level is the next definition on? must be same, deeper
950 ;; or shallower indentation
951 (cond
Barry Warsaw32a03962002-07-16 16:04:13 +0000952 ;; Skip code in comments and strings
953 ((py-in-literal))
Barry Warsaw81437461996-08-01 19:48:02 +0000954 ;; at the same indent level, add it to the list...
955 ((= start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000956 (push (cons def-name def-pos) index-alist))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000957 ;; deeper indented expression, recurse
Barry Warsaw81437461996-08-01 19:48:02 +0000958 ((< start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000959 ;; the point is currently on the expression we're supposed to
960 ;; start on, so go back to the last expression. The recursive
961 ;; call will find this place again and add it to the correct
962 ;; list
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000963 (re-search-backward py-imenu-generic-regexp (point-min) 'move)
964 (setq sub-method-alist (py-imenu-create-index-engine cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000965 (if sub-method-alist
966 ;; we put the last element on the index-alist on the start
967 ;; of the submethod alist so the user can still get to it.
968 (let ((save-elmt (pop index-alist)))
Barry Warsawc8520351997-11-26 06:14:40 +0000969 (push (cons prev-name
Barry Warsaw81437461996-08-01 19:48:02 +0000970 (cons save-elmt sub-method-alist))
971 index-alist))))
Barry Warsaw81437461996-08-01 19:48:02 +0000972 ;; found less indented expression, we're done.
973 (t
974 (setq looking-p nil)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000975 (re-search-backward py-imenu-generic-regexp (point-min) t)))
976 ;; end-cond
Barry Warsaw81437461996-08-01 19:48:02 +0000977 (setq prev-name def-name)
978 (and looking-p
979 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000980 (re-search-forward py-imenu-generic-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000981 (point-max) 'move))))
982 (nreverse index-alist)))
983
Barry Warsaw88491612002-04-25 21:31:47 +0000984
985
986(defun py-choose-shell-by-shebang ()
987 "Choose CPython or JPython mode by looking at #! on the first line.
988Returns the appropriate mode function.
989Used by `py-choose-shell', and similar to but distinct from
990`set-auto-mode', though it uses `auto-mode-interpreter-regexp' (if available)."
991 ;; look for an interpreter specified in the first line
992 ;; similar to set-auto-mode (files.el)
993 (let* ((re (if (boundp 'auto-mode-interpreter-regexp)
994 auto-mode-interpreter-regexp
995 ;; stolen from Emacs 21.2
996 "#![ \t]?\\([^ \t\n]*/bin/env[ \t]\\)?\\([^ \t\n]+\\)"))
997 (interpreter (save-excursion
998 (goto-char (point-min))
999 (if (looking-at re)
1000 (match-string 2)
1001 "")))
1002 elt)
1003 ;; Map interpreter name to a mode.
1004 (setq elt (assoc (file-name-nondirectory interpreter)
1005 py-shell-alist))
1006 (and elt (caddr elt))))
1007
1008
1009
1010(defun py-choose-shell-by-import ()
1011 "Choose CPython or JPython mode based imports.
1012If a file imports any packages in `py-jpython-packages', within
1013`py-import-check-point-max' characters from the start of the file,
1014return `jpython', otherwise return nil."
1015 (let (mode)
1016 (save-excursion
1017 (goto-char (point-min))
1018 (while (and (not mode)
1019 (search-forward-regexp
1020 "^\\(\\(from\\)\\|\\(import\\)\\) \\([^ \t\n.]+\\)"
1021 py-import-check-point-max t))
1022 (setq mode (and (member (match-string 4) py-jpython-packages)
1023 'jpython
1024 ))))
1025 mode))
1026
1027
1028(defun py-choose-shell ()
1029 "Choose CPython or JPython mode. Returns the appropriate mode function.
1030This does the following:
1031 - look for an interpreter with `py-choose-shell-by-shebang'
1032 - examine imports using `py-choose-shell-by-import'
1033 - default to the variable `py-default-interpreter'"
1034 (interactive)
1035 (or (py-choose-shell-by-shebang)
1036 (py-choose-shell-by-import)
1037 py-default-interpreter
1038; 'cpython ;; don't use to py-default-interpreter, because default
1039; ;; is only way to choose CPython
1040 ))
1041
Barry Warsaw42f707f1996-07-29 21:05:05 +00001042
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001043;;;###autoload
Barry Warsaw7ae77681994-12-12 20:38:05 +00001044(defun python-mode ()
1045 "Major mode for editing Python files.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001046To submit a problem report, enter `\\[py-submit-bug-report]' from a
1047`python-mode' buffer. Do `\\[py-describe-mode]' for detailed
1048documentation. To see what version of `python-mode' you are running,
1049enter `\\[py-version]'.
1050
1051This mode knows about Python indentation, tokens, comments and
1052continuation lines. Paragraphs are separated by blank lines only.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001053
1054COMMANDS
1055\\{py-mode-map}
1056VARIABLES
1057
Barry Warsaw42f707f1996-07-29 21:05:05 +00001058py-indent-offset\t\tindentation increment
Barry Warsaw41a05c71998-08-10 16:33:12 +00001059py-block-comment-prefix\t\tcomment string used by `comment-region'
Barry Warsaw42f707f1996-07-29 21:05:05 +00001060py-python-command\t\tshell command to invoke Python interpreter
Barry Warsaw42f707f1996-07-29 21:05:05 +00001061py-temp-directory\t\tdirectory used for temp files (if needed)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001062py-beep-if-tab-change\t\tring the bell if `tab-width' is changed"
Barry Warsaw7ae77681994-12-12 20:38:05 +00001063 (interactive)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001064 ;; set up local variables
Barry Warsaw7ae77681994-12-12 20:38:05 +00001065 (kill-all-local-variables)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001066 (make-local-variable 'font-lock-defaults)
1067 (make-local-variable 'paragraph-separate)
1068 (make-local-variable 'paragraph-start)
1069 (make-local-variable 'require-final-newline)
1070 (make-local-variable 'comment-start)
Barry Warsaw5c8bef11996-12-17 21:56:10 +00001071 (make-local-variable 'comment-end)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001072 (make-local-variable 'comment-start-skip)
1073 (make-local-variable 'comment-column)
Barry Warsaw003932a1998-07-07 15:11:24 +00001074 (make-local-variable 'comment-indent-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001075 (make-local-variable 'indent-region-function)
1076 (make-local-variable 'indent-line-function)
Barry Warsawb3e81d51996-09-04 15:12:42 +00001077 (make-local-variable 'add-log-current-defun-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001078 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +00001079 (set-syntax-table py-mode-syntax-table)
Barry Warsaw003932a1998-07-07 15:11:24 +00001080 (setq major-mode 'python-mode
1081 mode-name "Python"
1082 local-abbrev-table python-mode-abbrev-table
1083 font-lock-defaults '(python-font-lock-keywords)
1084 paragraph-separate "^[ \t]*$"
1085 paragraph-start "^[ \t]*$"
1086 require-final-newline t
1087 comment-start "# "
1088 comment-end ""
1089 comment-start-skip "# *"
1090 comment-column 40
1091 comment-indent-function 'py-comment-indent-function
1092 indent-region-function 'py-indent-region
1093 indent-line-function 'py-indent-line
Barry Warsawb3e81d51996-09-04 15:12:42 +00001094 ;; tell add-log.el how to find the current function/method/variable
1095 add-log-current-defun-function 'py-current-defun
Barry Warsawb1f89511996-09-03 16:38:30 +00001096 )
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001097 (use-local-map py-mode-map)
Barry Warsaw42f707f1996-07-29 21:05:05 +00001098 ;; add the menu
1099 (if py-menu
1100 (easy-menu-add py-menu))
Barry Warsaw57697af1995-09-14 20:01:14 +00001101 ;; Emacs 19 requires this
Barry Warsawc72c11c1997-08-09 06:42:08 +00001102 (if (boundp 'comment-multi-line)
Barry Warsaw57697af1995-09-14 20:01:14 +00001103 (setq comment-multi-line nil))
Barry Warsaw6839d3a1998-10-28 00:10:45 +00001104 ;; Install Imenu if available
Barry Warsaw742a5111998-03-13 17:29:15 +00001105 (when (py-safe (require 'imenu))
Barry Warsaw6839d3a1998-10-28 00:10:45 +00001106 (setq imenu-create-index-function #'py-imenu-create-index-function)
1107 (setq imenu-generic-expression py-imenu-generic-expression)
Barry Warsaw742a5111998-03-13 17:29:15 +00001108 (if (fboundp 'imenu-add-to-menubar)
1109 (imenu-add-to-menubar (format "%s-%s" "IM" mode-name)))
1110 )
1111 ;; Run the mode hook. Note that py-mode-hook is deprecated.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001112 (if python-mode-hook
1113 (run-hooks 'python-mode-hook)
Barry Warsaw742a5111998-03-13 17:29:15 +00001114 (run-hooks 'py-mode-hook))
1115 ;; Now do the automagical guessing
1116 (if py-smart-indentation
1117 (let ((offset py-indent-offset))
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001118 ;; It's okay if this fails to guess a good value
Barry Warsaw742a5111998-03-13 17:29:15 +00001119 (if (and (py-safe (py-guess-indent-offset))
1120 (<= py-indent-offset 8)
1121 (>= py-indent-offset 2))
1122 (setq offset py-indent-offset))
1123 (setq py-indent-offset offset)
Barry Warsaw639eea61998-03-16 18:12:13 +00001124 ;; Only turn indent-tabs-mode off if tab-width !=
1125 ;; py-indent-offset. Never turn it on, because the user must
1126 ;; have explicitly turned it off.
1127 (if (/= tab-width py-indent-offset)
1128 (setq indent-tabs-mode nil))
Barry Warsaw11f21561999-07-28 21:59:43 +00001129 ))
1130 ;; Set the default shell if not already set
1131 (when (null py-which-shell)
Barry Warsaw88491612002-04-25 21:31:47 +00001132 (py-toggle-shells (py-choose-shell))))
1133
1134
1135(defun jpython-mode ()
1136 "Major mode for editing JPython/Jython files.
1137This is a simple wrapper around `python-mode'.
1138It runs `jpython-mode-hook' then calls `python-mode.'
1139It is added to `interpreter-mode-alist' and `py-choose-shell'.
1140"
1141 (interactive)
1142 (python-mode)
1143 (py-toggle-shells 'jpython)
1144 (when jpython-mode-hook
1145 (run-hooks 'jpython-mode-hook)))
1146
1147
1148;; It's handy to add recognition of Python files to the
1149;; interpreter-mode-alist and to auto-mode-alist. With the former, we
1150;; can specify different `derived-modes' based on the #! line, but
1151;; with the latter, we can't. So we just won't add them if they're
1152;; already added.
1153(let ((modes '(("jpython" . jpython-mode)
1154 ("jython" . jpython-mode)
1155 ("python" . python-mode))))
1156 (while modes
1157 (when (not (assoc (car modes) interpreter-mode-alist))
Barry Warsawcf22c822002-04-25 21:46:33 +00001158 (push (car modes) interpreter-mode-alist))
Barry Warsaw88491612002-04-25 21:31:47 +00001159 (setq modes (cdr modes))))
1160
1161(when (not (or (rassq 'python-mode auto-mode-alist)
1162 (rassq 'jpython-mode auto-mode-alist)))
1163 (push '("\\.py$" . python-mode) auto-mode-alist))
1164
Barry Warsaw7ae77681994-12-12 20:38:05 +00001165
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001166
Barry Warsawb91b7431995-03-14 15:55:20 +00001167;; electric characters
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001168(defun py-outdent-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00001169 "Returns non-nil if the current line should dedent one level."
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001170 (save-excursion
1171 (and (progn (back-to-indentation)
1172 (looking-at py-outdent-re))
Barry Warsaw1a1c6bb1999-01-09 17:22:38 +00001173 ;; short circuit infloop on illegal construct
1174 (not (bobp))
Barry Warsawf06777d1998-01-21 05:36:18 +00001175 (progn (forward-line -1)
1176 (py-goto-initial-line)
1177 (back-to-indentation)
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001178 (while (or (looking-at py-blank-or-comment-re)
1179 (bobp))
1180 (backward-to-indentation 1))
1181 (not (looking-at py-no-outdent-re)))
1182 )))
1183
Barry Warsawb91b7431995-03-14 15:55:20 +00001184(defun py-electric-colon (arg)
1185 "Insert a colon.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001186In certain cases the line is dedented appropriately. If a numeric
1187argument ARG is provided, that many colons are inserted
1188non-electrically. Electric behavior is inhibited inside a string or
1189comment."
Barry Warsawb91b7431995-03-14 15:55:20 +00001190 (interactive "P")
1191 (self-insert-command (prefix-numeric-value arg))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001192 ;; are we in a string or comment?
1193 (if (save-excursion
1194 (let ((pps (parse-partial-sexp (save-excursion
Barry Warsawab0e86c1998-05-19 15:31:46 +00001195 (py-beginning-of-def-or-class)
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001196 (point))
1197 (point))))
1198 (not (or (nth 3 pps) (nth 4 pps)))))
1199 (save-excursion
1200 (let ((here (point))
1201 (outdent 0)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001202 (indent (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001203 (if (and (not arg)
1204 (py-outdent-p)
1205 (= indent (save-excursion
Barry Warsawa7661821996-08-02 16:22:43 +00001206 (py-next-statement -1)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001207 (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001208 )
1209 (setq outdent py-indent-offset))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001210 ;; Don't indent, only dedent. This assumes that any lines
1211 ;; that are already dedented relative to
1212 ;; py-compute-indentation were put there on purpose. It's
1213 ;; highly annoying to have `:' indent for you. Use TAB, C-c
1214 ;; C-l or C-c C-r to adjust. TBD: Is there a better way to
1215 ;; determine this???
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001216 (if (< (current-indentation) indent) nil
1217 (goto-char here)
1218 (beginning-of-line)
1219 (delete-horizontal-space)
1220 (indent-to (- indent outdent))
1221 )))))
Barry Warsawb91b7431995-03-14 15:55:20 +00001222
1223
Barry Warsawa97a3f31997-11-04 18:47:06 +00001224;; Python subprocess utilities and filters
1225(defun py-execute-file (proc filename)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001226 "Send to Python interpreter process PROC \"execfile('FILENAME')\".
1227Make that process's buffer visible and force display. Also make
1228comint believe the user typed this string so that
1229`kill-output-from-shell' does The Right Thing."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001230 (let ((curbuf (current-buffer))
1231 (procbuf (process-buffer proc))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001232; (comint-scroll-to-bottom-on-output t)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001233 (msg (format "## working on region in file %s...\n" filename))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001234 (cmd (format "execfile(r'%s')\n" filename)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001235 (unwind-protect
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001236 (save-excursion
Barry Warsawa97a3f31997-11-04 18:47:06 +00001237 (set-buffer procbuf)
1238 (goto-char (point-max))
1239 (move-marker (process-mark proc) (point))
1240 (funcall (process-filter proc) proc msg))
1241 (set-buffer curbuf))
1242 (process-send-string proc cmd)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001243
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001244(defun py-comint-output-filter-function (string)
1245 "Watch output for Python prompt and exec next file waiting in queue.
1246This function is appropriate for `comint-output-filter-functions'."
Barry Warsaw014e0e21998-11-17 19:24:47 +00001247 ;; TBD: this should probably use split-string
Barry Warsaw4f94c731998-09-25 19:40:10 +00001248 (when (and (or (string-equal string ">>> ")
Barry Warsaw4f94c731998-09-25 19:40:10 +00001249 (and (>= (length string) 5)
1250 (string-equal (substring string -5) "\n>>> ")))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001251 py-file-queue)
Barry Warsaw17afa132002-04-26 15:49:52 +00001252 (pop-to-buffer (current-buffer))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001253 (py-safe (delete-file (car py-file-queue)))
1254 (setq py-file-queue (cdr py-file-queue))
1255 (if py-file-queue
1256 (let ((pyproc (get-buffer-process (current-buffer))))
1257 (py-execute-file pyproc (car py-file-queue))))
1258 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001259
Barry Warsaw4f577d22001-04-11 20:23:17 +00001260(defun py-pdbtrack-overlay-arrow (activation)
1261 "Activate or de arrow at beginning-of-line in current buffer."
1262 ;; This was derived/simplified from edebug-overlay-arrow
1263 (cond (activation
1264 (setq overlay-arrow-position (make-marker))
1265 (setq overlay-arrow-string "=>")
1266 (set-marker overlay-arrow-position (py-point 'bol) (current-buffer))
1267 (setq py-pdbtrack-is-tracking-p t))
1268 (overlay-arrow-position
1269 (setq overlay-arrow-position nil)
1270 (setq py-pdbtrack-is-tracking-p nil))
1271 ))
1272
1273(defun py-pdbtrack-track-stack-file (text)
1274 "Show the file indicated by the pdb stack entry line, in a separate window.
1275
1276Activity is disabled if the buffer-local variable
1277`py-pdbtrack-do-tracking-p' is nil.
1278
1279We depend on the pdb input prompt matching `py-pdbtrack-input-prompt'
Ken Manheimere7aca522003-03-03 00:35:32 +00001280at the beginning of the line.
1281
1282If the traceback target file path is invalid, we look for the most
1283recently visited python-mode buffer which either has the name of the
1284current function \(or class) or which defines the function \(or
1285class). This is to provide for remote scripts, eg, Zope's 'Script
1286(Python)' - put a _copy_ of the script in a python-mode buffer named
1287for the script and pdbtrack will find it.)"
Barry Warsaw4f577d22001-04-11 20:23:17 +00001288 ;; Instead of trying to piece things together from partial text
1289 ;; (which can be almost useless depending on Emacs version), we
1290 ;; monitor to the point where we have the next pdb prompt, and then
1291 ;; check all text from comint-last-input-end to process-mark.
1292 ;;
Ken Manheimere7aca522003-03-03 00:35:32 +00001293 ;; Also, we're very conservative about clearing the overlay arrow,
1294 ;; to minimize residue. This means, for instance, that executing
1295 ;; other pdb commands wipe out the highlight. You can always do a
1296 ;; 'where' (aka 'w') command to reveal the overlay arrow.
Barry Warsaw4f577d22001-04-11 20:23:17 +00001297 (let* ((origbuf (current-buffer))
1298 (currproc (get-buffer-process origbuf)))
Ken Manheimere7aca522003-03-03 00:35:32 +00001299
Barry Warsaw4f577d22001-04-11 20:23:17 +00001300 (if (not (and currproc py-pdbtrack-do-tracking-p))
1301 (py-pdbtrack-overlay-arrow nil)
Ken Manheimere7aca522003-03-03 00:35:32 +00001302
1303 (let* ((procmark (process-mark currproc))
Barry Warsaw4f577d22001-04-11 20:23:17 +00001304 (block (buffer-substring (max comint-last-input-end
1305 (- procmark
1306 py-pdbtrack-track-range))
1307 procmark))
Ken Manheimere7aca522003-03-03 00:35:32 +00001308 target target_fname target_lineno)
1309
Barry Warsaw4f577d22001-04-11 20:23:17 +00001310 (if (not (string-match (concat py-pdbtrack-input-prompt "$") block))
1311 (py-pdbtrack-overlay-arrow nil)
Ken Manheimere7aca522003-03-03 00:35:32 +00001312
1313 (setq target (py-pdbtrack-get-source-buffer block))
1314
1315 (if (stringp target)
1316 (message "pdbtrack: %s" target)
1317
1318 (setq target_lineno (car target))
1319 (setq target_buffer (cadr target))
1320 (setq target_fname (buffer-file-name target_buffer))
1321 (switch-to-buffer-other-window target_buffer)
1322 (goto-line target_lineno)
1323 (message "pdbtrack: line %s, file %s" target_lineno target_fname)
1324 (py-pdbtrack-overlay-arrow t)
1325 (pop-to-buffer origbuf t)
1326
1327 )))))
1328 )
1329
1330(defun py-pdbtrack-get-source-buffer (block)
1331 "Return line number and buffer of code indicated by block's traceback text.
1332
1333We look first to visit the file indicated in the trace.
1334
1335Failing that, we look for the most recently visited python-mode buffer
1336with the same name or having
1337having the named function.
1338
1339If we're unable find the source code we return a string describing the
1340problem as best as we can determine."
1341
1342 (if (not (string-match py-pdbtrack-stack-entry-regexp block))
1343
1344 "Traceback cue not found"
1345
1346 (let* ((filename (match-string 1 block))
1347 (lineno (string-to-int (match-string 2 block)))
1348 (funcname (match-string 3 block))
1349 funcbuffer)
1350
1351 (cond ((file-exists-p filename)
1352 (list lineno (find-file-noselect filename)))
1353
1354 ((setq funcbuffer (py-pdbtrack-grub-for-buffer funcname lineno))
1355 (if (string-match "/Script (Python)$" filename)
1356 ;; Add in number of lines for leading '##' comments:
1357 (setq lineno
1358 (+ lineno
1359 (save-excursion
1360 (set-buffer funcbuffer)
1361 (count-lines
1362 (point-min)
1363 (string-match "^\\([^#]\\|#[^#]\\|#$\\)"
1364 (buffer-substring (point-min)
1365 (point-max)
1366 funcbuffer)))))))
1367 (list lineno funcbuffer))
1368
1369 ((= (elt filename 0) ?\<)
1370 (format "(Non-file source: '%s')" filename))
1371
1372 (t (format "Function/file not found: %s(), %s" funcname filename)))
1373 )
1374 )
1375 )
1376
1377(defun py-pdbtrack-grub-for-buffer (funcname lineno)
1378 "Find most recent buffer itself named or having function funcname.
1379
1380Must have a least int(lineno) lines in it."
1381 (let ((buffers (buffer-list))
1382 ;(buffers (list (get-buffer "workflow_do_action.py")))
1383 curbuf
1384 got)
1385 (while (and buffers (not got))
1386 (setq buf (car buffers)
1387 buffers (cdr buffers))
1388 (if (or (save-excursion (set-buffer buf)
1389 (string= major-mode "python-mode"))
1390 (and (string-match funcname (buffer-name buf))
1391 (string-match (concat "^\\s-*\\(def\\|class\\)\\s-+"
1392 funcname "\\s-*(")
1393 (buffer-substring (point-min buf)
1394 (point-max buf)
1395 buf))))
1396 (setq got buf)))
1397 got))
Barry Warsaw4f577d22001-04-11 20:23:17 +00001398
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001399(defun py-postprocess-output-buffer (buf)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001400 "Highlight exceptions found in BUF.
1401If an exception occurred return t, otherwise return nil. BUF must exist."
Barry Warsawf9b99f41998-03-26 16:08:59 +00001402 (let (line file bol err-p)
Barry Warsaw9981d221997-12-03 05:25:48 +00001403 (save-excursion
1404 (set-buffer buf)
1405 (beginning-of-buffer)
1406 (while (re-search-forward py-traceback-line-re nil t)
1407 (setq file (match-string 1)
1408 line (string-to-int (match-string 2))
1409 bol (py-point 'bol))
Barry Warsawf9b99f41998-03-26 16:08:59 +00001410 (py-highlight-line bol (py-point 'eol) file line)))
1411 (when (and py-jump-on-exception line)
1412 (beep)
1413 (py-jump-to-exception file line)
1414 (setq err-p t))
1415 err-p))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001416
Barry Warsaw9981d221997-12-03 05:25:48 +00001417
Barry Warsawa97a3f31997-11-04 18:47:06 +00001418
1419;;; Subprocess commands
1420
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001421;; only used when (memq 'broken-temp-names py-emacs-features)
1422(defvar py-serial-number 0)
1423(defvar py-exception-buffer nil)
1424(defconst py-output-buffer "*Python Output*")
Barry Warsawa2398801998-04-09 23:28:20 +00001425(make-variable-buffer-local 'py-output-buffer)
1426
1427;; for toggling between CPython and JPython
Barry Warsawaa384fd1999-02-16 23:36:16 +00001428(defvar py-which-shell nil)
Barry Warsawa2398801998-04-09 23:28:20 +00001429(defvar py-which-args py-python-command-args)
1430(defvar py-which-bufname "Python")
1431(make-variable-buffer-local 'py-which-shell)
1432(make-variable-buffer-local 'py-which-args)
1433(make-variable-buffer-local 'py-which-bufname)
1434
1435(defun py-toggle-shells (arg)
1436 "Toggles between the CPython and JPython shells.
Barry Warsaw11f21561999-07-28 21:59:43 +00001437
Barry Warsaw41a05c71998-08-10 16:33:12 +00001438With positive argument ARG (interactively \\[universal-argument]),
1439uses the CPython shell, with negative ARG uses the JPython shell, and
Barry Warsaw11f21561999-07-28 21:59:43 +00001440with a zero argument, toggles the shell.
1441
1442Programmatically, ARG can also be one of the symbols `cpython' or
1443`jpython', equivalent to positive arg and negative arg respectively."
Barry Warsawa2398801998-04-09 23:28:20 +00001444 (interactive "P")
1445 ;; default is to toggle
1446 (if (null arg)
1447 (setq arg 0))
Barry Warsaw11f21561999-07-28 21:59:43 +00001448 ;; preprocess arg
1449 (cond
1450 ((equal arg 0)
1451 ;; toggle
1452 (if (string-equal py-which-bufname "Python")
1453 (setq arg -1)
1454 (setq arg 1)))
1455 ((equal arg 'cpython) (setq arg 1))
1456 ((equal arg 'jpython) (setq arg -1)))
Barry Warsawa2398801998-04-09 23:28:20 +00001457 (let (msg)
1458 (cond
1459 ((< 0 arg)
1460 ;; set to CPython
1461 (setq py-which-shell py-python-command
1462 py-which-args py-python-command-args
1463 py-which-bufname "Python"
1464 msg "CPython"
1465 mode-name "Python"))
1466 ((> 0 arg)
1467 (setq py-which-shell py-jpython-command
1468 py-which-args py-jpython-command-args
1469 py-which-bufname "JPython"
1470 msg "JPython"
1471 mode-name "JPython"))
1472 )
Barry Warsawea609c11998-04-10 16:08:26 +00001473 (message "Using the %s shell" msg)
Barry Warsawa2398801998-04-09 23:28:20 +00001474 (setq py-output-buffer (format "*%s Output*" py-which-bufname))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001475
Barry Warsawa97a3f31997-11-04 18:47:06 +00001476;;;###autoload
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001477(defun py-shell (&optional argprompt)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001478 "Start an interactive Python interpreter in another window.
1479This is like Shell mode, except that Python is running in the window
1480instead of a shell. See the `Interactive Shell' and `Shell Mode'
1481sections of the Emacs manual for details, especially for the key
1482bindings active in the `*Python*' buffer.
1483
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001484With optional \\[universal-argument], the user is prompted for the
1485flags to pass to the Python interpreter. This has no effect when this
1486command is used to switch to an existing process, only when a new
1487process is started. If you use this, you will probably want to ensure
1488that the current arguments are retained (they will be included in the
1489prompt). This argument is ignored when this function is called
1490programmatically, or when running in Emacs 19.34 or older.
1491
Barry Warsawa2398801998-04-09 23:28:20 +00001492Note: You can toggle between using the CPython interpreter and the
1493JPython interpreter by hitting \\[py-toggle-shells]. This toggles
1494buffer local variables which control whether all your subshell
1495interactions happen to the `*JPython*' or `*Python*' buffers (the
1496latter is the name used for the CPython buffer).
1497
Barry Warsawa97a3f31997-11-04 18:47:06 +00001498Warning: Don't use an interactive Python if you change sys.ps1 or
1499sys.ps2 from their default values, or if you're running code that
1500prints `>>> ' or `... ' at the start of a line. `python-mode' can't
1501distinguish your output from Python's output, and assumes that `>>> '
1502at the start of a line is a prompt from Python. Similarly, the Emacs
1503Shell mode code assumes that both `>>> ' and `... ' at the start of a
1504line are Python prompts. Bad things can happen if you fool either
1505mode.
1506
1507Warning: If you do any editing *in* the process buffer *while* the
1508buffer is accepting output from Python, do NOT attempt to `undo' the
1509changes. Some of the output (nowhere near the parts you changed!) may
1510be lost if you do. This appears to be an Emacs bug, an unfortunate
1511interaction between undo and process filters; the same problem exists in
1512non-Python process buffers using the default (Emacs-supplied) process
1513filter."
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001514 (interactive "P")
Barry Warsaw50765ab1999-08-10 21:49:00 +00001515 ;; Set the default shell if not already set
1516 (when (null py-which-shell)
1517 (py-toggle-shells py-default-interpreter))
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001518 (let ((args py-which-args))
1519 (when (and argprompt
1520 (interactive-p)
1521 (fboundp 'split-string))
1522 ;; TBD: Perhaps force "-i" in the final list?
1523 (setq args (split-string
1524 (read-string (concat py-which-bufname
1525 " arguments: ")
1526 (concat
1527 (mapconcat 'identity py-which-args " ") " ")
1528 ))))
1529 (switch-to-buffer-other-window
1530 (apply 'make-comint py-which-bufname py-which-shell nil args))
1531 (make-local-variable 'comint-prompt-regexp)
1532 (setq comint-prompt-regexp "^>>> \\|^[.][.][.] \\|^(pdb) ")
1533 (add-hook 'comint-output-filter-functions
1534 'py-comint-output-filter-function)
Barry Warsaw4f577d22001-04-11 20:23:17 +00001535 ;; pdbtrack
1536 (add-hook 'comint-output-filter-functions 'py-pdbtrack-track-stack-file)
1537 (setq py-pdbtrack-do-tracking-p t)
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001538 (set-syntax-table py-mode-syntax-table)
1539 (use-local-map py-shell-map)
Barry Warsaw56bd2ed2002-04-25 15:44:17 +00001540 (run-hooks 'py-shell-hook)
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001541 ))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001542
Barry Warsawa97a3f31997-11-04 18:47:06 +00001543(defun py-clear-queue ()
1544 "Clear the queue of temporary files waiting to execute."
1545 (interactive)
1546 (let ((n (length py-file-queue)))
1547 (mapcar 'delete-file py-file-queue)
1548 (setq py-file-queue nil)
1549 (message "%d pending files de-queued." n)))
1550
Barry Warsaw820273d1998-05-19 15:54:45 +00001551
Barry Warsawa97a3f31997-11-04 18:47:06 +00001552(defun py-execute-region (start end &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001553 "Execute the region in a Python interpreter.
1554
Barry Warsawa97a3f31997-11-04 18:47:06 +00001555The region is first copied into a temporary file (in the directory
1556`py-temp-directory'). If there is no Python interpreter shell
1557running, this file is executed synchronously using
Barry Warsaw41a05c71998-08-10 16:33:12 +00001558`shell-command-on-region'. If the program is long running, use
1559\\[universal-argument] to run the command asynchronously in its own
1560buffer.
1561
1562When this function is used programmatically, arguments START and END
1563specify the region to execute, and optional third argument ASYNC, if
1564non-nil, specifies to run the command asynchronously in its own
1565buffer.
Barry Warsawa97a3f31997-11-04 18:47:06 +00001566
1567If the Python interpreter shell is running, the region is execfile()'d
1568in that shell. If you try to execute regions too quickly,
1569`python-mode' will queue them up and execute them one at a time when
1570it sees a `>>> ' prompt from Python. Each time this happens, the
1571process buffer is popped into a window (if it's not already in some
1572window) so you can see it, and a comment of the form
1573
1574 \t## working on region in file <name>...
1575
1576is inserted at the end. See also the command `py-clear-queue'."
1577 (interactive "r\nP")
Barry Warsaw4aab68e2002-04-25 19:17:42 +00001578 ;; Skip ahead to the first non-blank line
Barry Warsaw014e0e21998-11-17 19:24:47 +00001579 (let* ((proc (get-process py-which-bufname))
Barry Warsaw5e21cb01997-11-05 18:41:11 +00001580 (temp (if (memq 'broken-temp-names py-emacs-features)
Barry Warsaw1b344241998-08-07 22:24:16 +00001581 (let
1582 ((sn py-serial-number)
1583 (pid (and (fboundp 'emacs-pid) (emacs-pid))))
1584 (setq py-serial-number (1+ py-serial-number))
1585 (if pid
1586 (format "python-%d-%d" sn pid)
1587 (format "python-%d" sn)))
Barry Warsaw2f32fbb1998-02-25 16:45:43 +00001588 (make-temp-name "python-")))
Barry Warsawb2d5e622002-04-22 15:29:27 +00001589 (file (concat (expand-file-name temp py-temp-directory) ".py"))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001590 (cur (current-buffer))
Barry Warsawb2d5e622002-04-22 15:29:27 +00001591 (buf (get-buffer-create file))
1592 shell)
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001593 ;; Write the contents of the buffer, watching out for indented regions.
1594 (save-excursion
1595 (goto-char start)
Barry Warsaw69c92662002-05-12 17:37:46 +00001596 (beginning-of-line)
1597 (while (and (looking-at "\\s *$")
1598 (< (point) end))
1599 (forward-line 1))
1600 (setq start (point))
1601 (or (< start end)
1602 (error "Region is empty"))
Barry Warsaw99eadf42000-06-23 20:24:25 +00001603 (let ((needs-if (/= (py-point 'bol) (py-point 'boi))))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001604 (set-buffer buf)
Barry Warsawb2d5e622002-04-22 15:29:27 +00001605 (python-mode)
Barry Warsaw99eadf42000-06-23 20:24:25 +00001606 (when needs-if
1607 (insert "if 1:\n"))
Barry Warsawa0113cd2002-04-22 16:23:29 +00001608 (insert-buffer-substring cur start end)
1609 ;; Set the shell either to the #! line command, or to the
1610 ;; py-which-shell buffer local variable.
Barry Warsaw88491612002-04-25 21:31:47 +00001611 (setq shell (or (py-choose-shell-by-shebang)
1612 (py-choose-shell-by-import)
1613 py-which-shell))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001614 (cond
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001615 ;; always run the code in its own asynchronous subprocess
Barry Warsawa97a3f31997-11-04 18:47:06 +00001616 (async
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001617 ;; User explicitly wants this to run in its own async subprocess
1618 (save-excursion
1619 (set-buffer buf)
1620 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsaw34d83171998-11-20 03:04:07 +00001621 (let* ((buf (generate-new-buffer-name py-output-buffer))
1622 ;; TBD: a horrible hack, but why create new Custom variables?
1623 (arg (if (string-equal py-which-bufname "Python")
1624 "-u" "")))
Barry Warsawb2d5e622002-04-22 15:29:27 +00001625 (start-process py-which-bufname buf shell arg file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001626 (pop-to-buffer buf)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001627 (py-postprocess-output-buffer buf)
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001628 ;; TBD: clean up the temporary file!
Barry Warsawa97a3f31997-11-04 18:47:06 +00001629 ))
1630 ;; if the Python interpreter shell is running, queue it up for
1631 ;; execution there.
1632 (proc
1633 ;; use the existing python shell
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001634 (save-excursion
1635 (set-buffer buf)
1636 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001637 (if (not py-file-queue)
1638 (py-execute-file proc file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001639 (message "File %s queued for execution" file))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001640 (setq py-file-queue (append py-file-queue (list file)))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001641 (setq py-exception-buffer (cons file (current-buffer))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001642 (t
Barry Warsawa0113cd2002-04-22 16:23:29 +00001643 ;; TBD: a horrible hack, but why create new Custom variables?
1644 (let ((cmd (concat shell (if (string-equal py-which-bufname "JPython")
1645 " -" ""))))
Barry Warsaw34d83171998-11-20 03:04:07 +00001646 ;; otherwise either run it synchronously in a subprocess
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001647 (save-excursion
1648 (set-buffer buf)
1649 (shell-command-on-region (point-min) (point-max)
1650 cmd py-output-buffer))
Barry Warsaw34d83171998-11-20 03:04:07 +00001651 ;; shell-command-on-region kills the output buffer if it never
1652 ;; existed and there's no output from the command
1653 (if (not (get-buffer py-output-buffer))
1654 (message "No output.")
1655 (setq py-exception-buffer (current-buffer))
1656 (let ((err-p (py-postprocess-output-buffer py-output-buffer)))
1657 (pop-to-buffer py-output-buffer)
1658 (if err-p
1659 (pop-to-buffer py-exception-buffer)))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001660 ))
Barry Warsaw29a90f02002-04-22 21:48:20 +00001661 ))
Barry Warsaw71534602001-02-20 23:07:56 +00001662 ;; Clean up after ourselves.
1663 (kill-buffer buf)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001664
Barry Warsaw820273d1998-05-19 15:54:45 +00001665
1666;; Code execution commands
Barry Warsawa97a3f31997-11-04 18:47:06 +00001667(defun py-execute-buffer (&optional async)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001668 "Send the contents of the buffer to a Python interpreter.
Barry Warsawc0ecb531998-01-20 21:43:34 +00001669If the file local variable `py-master-file' is non-nil, execute the
1670named file instead of the buffer's file.
1671
Barry Warsaw7ae77681994-12-12 20:38:05 +00001672If there is a *Python* process buffer it is used. If a clipping
1673restriction is in effect, only the accessible portion of the buffer is
1674sent. A trailing newline will be supplied if needed.
1675
Barry Warsaw41a05c71998-08-10 16:33:12 +00001676See the `\\[py-execute-region]' docs for an account of some
1677subtleties, including the use of the optional ASYNC argument."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001678 (interactive "P")
Barry Warsawc0ecb531998-01-20 21:43:34 +00001679 (if py-master-file
1680 (let* ((filename (expand-file-name py-master-file))
1681 (buffer (or (get-file-buffer filename)
1682 (find-file-noselect filename))))
1683 (set-buffer buffer)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001684 (py-execute-region (point-min) (point-max) async))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001685
Barry Warsaw820273d1998-05-19 15:54:45 +00001686(defun py-execute-import-or-reload (&optional async)
1687 "Import the current buffer's file in a Python interpreter.
1688
1689If the file has already been imported, then do reload instead to get
Barry Warsaw7c29b231998-07-07 17:45:38 +00001690the latest version.
1691
1692If the file's name does not end in \".py\", then do execfile instead.
1693
1694If the current buffer is not visiting a file, do `py-execute-buffer'
1695instead.
1696
1697If the file local variable `py-master-file' is non-nil, import or
1698reload the named file instead of the buffer's file. The file may be
1699saved based on the value of `py-execute-import-or-reload-save-p'.
Barry Warsaw820273d1998-05-19 15:54:45 +00001700
Barry Warsaw41a05c71998-08-10 16:33:12 +00001701See the `\\[py-execute-region]' docs for an account of some
1702subtleties, including the use of the optional ASYNC argument.
Barry Warsaw820273d1998-05-19 15:54:45 +00001703
Barry Warsaw7c29b231998-07-07 17:45:38 +00001704This may be preferable to `\\[py-execute-buffer]' because:
Barry Warsaw820273d1998-05-19 15:54:45 +00001705
1706 - Definitions stay in their module rather than appearing at top
1707 level, where they would clutter the global namespace and not affect
1708 uses of qualified names (MODULE.NAME).
1709
1710 - The Python debugger gets line number information about the functions."
1711 (interactive "P")
1712 ;; Check file local variable py-master-file
1713 (if py-master-file
1714 (let* ((filename (expand-file-name py-master-file))
1715 (buffer (or (get-file-buffer filename)
1716 (find-file-noselect filename))))
1717 (set-buffer buffer)))
1718 (let ((file (buffer-file-name (current-buffer))))
1719 (if file
1720 (progn
Barry Warsaw3bfed5b1998-05-19 16:25:04 +00001721 ;; Maybe save some buffers
1722 (save-some-buffers (not py-ask-about-save) nil)
Barry Warsaw820273d1998-05-19 15:54:45 +00001723 (py-execute-string
1724 (if (string-match "\\.py$" file)
1725 (let ((f (file-name-sans-extension
1726 (file-name-nondirectory file))))
1727 (format "if globals().has_key('%s'):\n reload(%s)\nelse:\n import %s\n"
1728 f f f))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001729 (format "execfile(r'%s')\n" file))
Barry Warsaw820273d1998-05-19 15:54:45 +00001730 async))
1731 ;; else
1732 (py-execute-buffer async))))
1733
1734
1735(defun py-execute-def-or-class (&optional async)
1736 "Send the current function or class definition to a Python interpreter.
1737
1738If there is a *Python* process buffer it is used.
1739
Barry Warsaw41a05c71998-08-10 16:33:12 +00001740See the `\\[py-execute-region]' docs for an account of some
1741subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001742 (interactive "P")
1743 (save-excursion
1744 (py-mark-def-or-class)
1745 ;; mark is before point
1746 (py-execute-region (mark) (point) async)))
1747
1748
1749(defun py-execute-string (string &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001750 "Send the argument STRING to a Python interpreter.
Barry Warsaw820273d1998-05-19 15:54:45 +00001751
1752If there is a *Python* process buffer it is used.
1753
Barry Warsaw41a05c71998-08-10 16:33:12 +00001754See the `\\[py-execute-region]' docs for an account of some
1755subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001756 (interactive "sExecute Python command: ")
1757 (save-excursion
1758 (set-buffer (get-buffer-create
1759 (generate-new-buffer-name " *Python Command*")))
1760 (insert string)
1761 (py-execute-region (point-min) (point-max) async)))
1762
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001763
1764
1765(defun py-jump-to-exception (file line)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001766 "Jump to the Python code in FILE at LINE."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001767 (let ((buffer (cond ((string-equal file "<stdin>")
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001768 (if (consp py-exception-buffer)
1769 (cdr py-exception-buffer)
1770 py-exception-buffer))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001771 ((and (consp py-exception-buffer)
1772 (string-equal file (car py-exception-buffer)))
1773 (cdr py-exception-buffer))
1774 ((py-safe (find-file-noselect file)))
1775 ;; could not figure out what file the exception
1776 ;; is pointing to, so prompt for it
1777 (t (find-file (read-file-name "Exception file: "
1778 nil
1779 file t))))))
1780 (pop-to-buffer buffer)
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001781 ;; Force Python mode
Barry Warsaw820273d1998-05-19 15:54:45 +00001782 (if (not (eq major-mode 'python-mode))
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001783 (python-mode))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001784 (goto-line line)
1785 (message "Jumping to exception in file %s on line %d" file line)))
1786
1787(defun py-mouseto-exception (event)
Barry Warsaw12c92941998-08-10 21:44:37 +00001788 "Jump to the code which caused the Python exception at EVENT.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001789EVENT is usually a mouse click."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001790 (interactive "e")
1791 (cond
1792 ((fboundp 'event-point)
1793 ;; XEmacs
1794 (let* ((point (event-point event))
1795 (buffer (event-buffer event))
1796 (e (and point buffer (extent-at point buffer 'py-exc-info)))
1797 (info (and e (extent-property e 'py-exc-info))))
1798 (message "Event point: %d, info: %s" point info)
1799 (and info
1800 (py-jump-to-exception (car info) (cdr info)))
1801 ))
1802 ;; Emacs -- Please port this!
1803 ))
1804
1805(defun py-goto-exception ()
1806 "Go to the line indicated by the traceback."
1807 (interactive)
1808 (let (file line)
1809 (save-excursion
1810 (beginning-of-line)
1811 (if (looking-at py-traceback-line-re)
1812 (setq file (match-string 1)
1813 line (string-to-int (match-string 2)))))
1814 (if (not file)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001815 (error "Not on a traceback line"))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001816 (py-jump-to-exception file line)))
1817
1818(defun py-find-next-exception (start buffer searchdir errwhere)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001819 "Find the next Python exception and jump to the code that caused it.
1820START is the buffer position in BUFFER from which to begin searching
1821for an exception. SEARCHDIR is a function, either
1822`re-search-backward' or `re-search-forward' indicating the direction
1823to search. ERRWHERE is used in an error message if the limit (top or
1824bottom) of the trackback stack is encountered."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001825 (let (file line)
1826 (save-excursion
1827 (set-buffer buffer)
1828 (goto-char (py-point start))
1829 (if (funcall searchdir py-traceback-line-re nil t)
1830 (setq file (match-string 1)
1831 line (string-to-int (match-string 2)))))
1832 (if (and file line)
1833 (py-jump-to-exception file line)
1834 (error "%s of traceback" errwhere))))
1835
1836(defun py-down-exception (&optional bottom)
1837 "Go to the next line down in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001838With \\[univeral-argument] (programmatically, optional argument
1839BOTTOM), jump to the bottom (innermost) exception in the exception
1840stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001841 (interactive "P")
1842 (let* ((proc (get-process "Python"))
1843 (buffer (if proc "*Python*" py-output-buffer)))
1844 (if bottom
1845 (py-find-next-exception 'eob buffer 're-search-backward "Bottom")
1846 (py-find-next-exception 'eol buffer 're-search-forward "Bottom"))))
1847
1848(defun py-up-exception (&optional top)
1849 "Go to the previous line up in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001850With \\[universal-argument] (programmatically, optional argument TOP)
1851jump to the top (outermost) exception in the exception stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001852 (interactive "P")
1853 (let* ((proc (get-process "Python"))
1854 (buffer (if proc "*Python*" py-output-buffer)))
1855 (if top
1856 (py-find-next-exception 'bob buffer 're-search-forward "Top")
Barry Warsawffbc17d1997-11-27 20:08:14 +00001857 (py-find-next-exception 'bol buffer 're-search-backward "Top"))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001858
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001859
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001860;; Electric deletion
1861(defun py-electric-backspace (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001862 "Delete preceding character or levels of indentation.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001863Deletion is performed by calling the function in `py-backspace-function'
Barry Warsawb0539931996-12-17 22:05:07 +00001864with a single argument (the number of characters to delete).
Barry Warsaw7ae77681994-12-12 20:38:05 +00001865
Barry Warsaw41a05c71998-08-10 16:33:12 +00001866If point is at the leftmost column, delete the preceding newline.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001867
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001868Otherwise, if point is at the leftmost non-whitespace character of a
1869line that is neither a continuation line nor a non-indenting comment
1870line, or if point is at the end of a blank line, this command reduces
1871the indentation to match that of the line that opened the current
1872block of code. The line that opened the block is displayed in the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001873echo area to help you keep track of where you are. With
1874\\[universal-argument] dedents that many blocks (but not past column
1875zero).
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001876
1877Otherwise the preceding character is deleted, converting a tab to
1878spaces if needed so that only a single column position is deleted.
Barry Warsawfa2def21999-05-24 21:43:37 +00001879\\[universal-argument] specifies how many characters to delete;
1880default is 1.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001881
1882When used programmatically, argument ARG specifies the number of
1883blocks to dedent, or the number of characters to delete, as indicated
1884above."
Barry Warsaw03970731996-07-03 23:12:52 +00001885 (interactive "*p")
Barry Warsaw7ae77681994-12-12 20:38:05 +00001886 (if (or (/= (current-indentation) (current-column))
1887 (bolp)
1888 (py-continuation-line-p)
Barry Warsawfa2def21999-05-24 21:43:37 +00001889; (not py-honor-comment-indentation)
1890; (looking-at "#[^ \t\n]") ; non-indenting #
1891 )
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001892 (funcall py-backspace-function arg)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001893 ;; else indent the same as the colon line that opened the block
Barry Warsaw7ae77681994-12-12 20:38:05 +00001894 ;; force non-blank so py-goto-block-up doesn't ignore it
1895 (insert-char ?* 1)
1896 (backward-char)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001897 (let ((base-indent 0) ; indentation of base line
1898 (base-text "") ; and text of base line
1899 (base-found-p nil))
Barry Warsaw03970731996-07-03 23:12:52 +00001900 (save-excursion
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001901 (while (< 0 arg)
Barry Warsaw03970731996-07-03 23:12:52 +00001902 (condition-case nil ; in case no enclosing block
1903 (progn
1904 (py-goto-block-up 'no-mark)
1905 (setq base-indent (current-indentation)
1906 base-text (py-suck-up-leading-text)
1907 base-found-p t))
1908 (error nil))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001909 (setq arg (1- arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001910 (delete-char 1) ; toss the dummy character
1911 (delete-horizontal-space)
1912 (indent-to base-indent)
1913 (if base-found-p
1914 (message "Closes block: %s" base-text)))))
1915
Barry Warsawfc8a01f1995-03-09 16:07:29 +00001916
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001917(defun py-electric-delete (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001918 "Delete preceding or following character or levels of whitespace.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001919
1920The behavior of this function depends on the variable
1921`delete-key-deletes-forward'. If this variable is nil (or does not
Barry Warsaw41a05c71998-08-10 16:33:12 +00001922exist, as in older Emacsen and non-XEmacs versions), then this
1923function behaves identically to \\[c-electric-backspace].
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001924
1925If `delete-key-deletes-forward' is non-nil and is supported in your
1926Emacs, then deletion occurs in the forward direction, by calling the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001927function in `py-delete-function'.
1928
1929\\[universal-argument] (programmatically, argument ARG) specifies the
1930number of characters to delete (default is 1)."
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001931 (interactive "*p")
Barry Warsaw1d7b0fa1999-01-15 02:12:31 +00001932 (if (or (and (fboundp 'delete-forward-p) ;XEmacs 21
1933 (delete-forward-p))
1934 (and (boundp 'delete-key-deletes-forward) ;XEmacs 20
1935 delete-key-deletes-forward))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001936 (funcall py-delete-function arg)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001937 (py-electric-backspace arg)))
1938
1939;; required for pending-del and delsel modes
1940(put 'py-electric-backspace 'delete-selection 'supersede) ;delsel
1941(put 'py-electric-backspace 'pending-delete 'supersede) ;pending-del
1942(put 'py-electric-delete 'delete-selection 'supersede) ;delsel
1943(put 'py-electric-delete 'pending-delete 'supersede) ;pending-del
1944
1945
1946
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001947(defun py-indent-line (&optional arg)
1948 "Fix the indentation of the current line according to Python rules.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001949With \\[universal-argument] (programmatically, the optional argument
1950ARG non-nil), ignore dedenting rules for block closing statements
1951(e.g. return, raise, break, continue, pass)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001952
1953This function is normally bound to `indent-line-function' so
1954\\[indent-for-tab-command] will call it."
1955 (interactive "P")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001956 (let* ((ci (current-indentation))
1957 (move-to-indentation-p (<= (current-column) ci))
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001958 (need (py-compute-indentation (not arg))))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001959 ;; see if we need to dedent
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001960 (if (py-outdent-p)
Barry Warsaw0012c1e1995-03-14 16:32:55 +00001961 (setq need (- need py-indent-offset)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001962 (if (/= ci need)
1963 (save-excursion
1964 (beginning-of-line)
1965 (delete-horizontal-space)
1966 (indent-to need)))
1967 (if move-to-indentation-p (back-to-indentation))))
1968
1969(defun py-newline-and-indent ()
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001970 "Strives to act like the Emacs `newline-and-indent'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001971This is just `strives to' because correct indentation can't be computed
1972from scratch for Python code. In general, deletes the whitespace before
1973point, inserts a newline, and takes an educated guess as to how you want
1974the new line indented."
1975 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001976 (let ((ci (current-indentation)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001977 (if (< ci (current-column)) ; if point beyond indentation
1978 (newline-and-indent)
1979 ;; else try to act like newline-and-indent "normally" acts
1980 (beginning-of-line)
1981 (insert-char ?\n 1)
1982 (move-to-column ci))))
1983
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001984(defun py-compute-indentation (honor-block-close-p)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001985 "Compute Python indentation.
1986When HONOR-BLOCK-CLOSE-P is non-nil, statements such as `return',
1987`raise', `break', `continue', and `pass' force one level of
1988dedenting."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001989 (save-excursion
Barry Warsawf64b4051998-02-12 16:52:14 +00001990 (beginning-of-line)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001991 (let* ((bod (py-point 'bod))
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001992 (pps (parse-partial-sexp bod (point)))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001993 (boipps (parse-partial-sexp bod (py-point 'boi)))
1994 placeholder)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001995 (cond
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001996 ;; are we inside a multi-line string or comment?
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001997 ((or (and (nth 3 pps) (nth 3 boipps))
1998 (and (nth 4 pps) (nth 4 boipps)))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001999 (save-excursion
2000 (if (not py-align-multiline-strings-p) 0
2001 ;; skip back over blank & non-indenting comment lines
2002 ;; note: will skip a blank or non-indenting comment line
2003 ;; that happens to be a continuation line too
2004 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move)
2005 (back-to-indentation)
2006 (current-column))))
2007 ;; are we on a continuation line?
2008 ((py-continuation-line-p)
2009 (let ((startpos (point))
2010 (open-bracket-pos (py-nesting-level))
Barry Warsawce60bc71996-08-01 18:17:14 +00002011 endpos searching found state)
Barry Warsaw095e9c61995-09-19 20:01:42 +00002012 (if open-bracket-pos
2013 (progn
2014 ;; align with first item in list; else a normal
2015 ;; indent beyond the line with the open bracket
2016 (goto-char (1+ open-bracket-pos)) ; just beyond bracket
2017 ;; is the first list item on the same line?
2018 (skip-chars-forward " \t")
2019 (if (null (memq (following-char) '(?\n ?# ?\\)))
2020 ; yes, so line up with it
2021 (current-column)
2022 ;; first list item on another line, or doesn't exist yet
2023 (forward-line 1)
2024 (while (and (< (point) startpos)
2025 (looking-at "[ \t]*[#\n\\\\]")) ; skip noise
2026 (forward-line 1))
Barry Warsaw92166d91998-04-01 21:59:41 +00002027 (if (and (< (point) startpos)
2028 (/= startpos
2029 (save-excursion
2030 (goto-char (1+ open-bracket-pos))
Barry Warsaw77d1fce1998-04-16 20:04:59 +00002031 (forward-comment (point-max))
Barry Warsaw92166d91998-04-01 21:59:41 +00002032 (point))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002033 ;; again mimic the first list item
2034 (current-indentation)
2035 ;; else they're about to enter the first item
2036 (goto-char open-bracket-pos)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002037 (setq placeholder (point))
2038 (py-goto-initial-line)
2039 (py-goto-beginning-of-tqs
2040 (save-excursion (nth 3 (parse-partial-sexp
2041 placeholder (point)))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002042 (+ (current-indentation) py-indent-offset))))
2043
2044 ;; else on backslash continuation line
2045 (forward-line -1)
2046 (if (py-continuation-line-p) ; on at least 3rd line in block
2047 (current-indentation) ; so just continue the pattern
2048 ;; else started on 2nd line in block, so indent more.
2049 ;; if base line is an assignment with a start on a RHS,
2050 ;; indent to 2 beyond the leftmost "="; else skip first
2051 ;; chunk of non-whitespace characters on base line, + 1 more
2052 ;; column
2053 (end-of-line)
Barry Warsawfd4c9e82001-06-18 23:40:35 +00002054 (setq endpos (point)
2055 searching t)
Barry Warsaw095e9c61995-09-19 20:01:42 +00002056 (back-to-indentation)
2057 (setq startpos (point))
2058 ;; look at all "=" from left to right, stopping at first
2059 ;; one not nested in a list or string
2060 (while searching
2061 (skip-chars-forward "^=" endpos)
2062 (if (= (point) endpos)
2063 (setq searching nil)
2064 (forward-char 1)
2065 (setq state (parse-partial-sexp startpos (point)))
2066 (if (and (zerop (car state)) ; not in a bracket
2067 (null (nth 3 state))) ; & not in a string
2068 (progn
2069 (setq searching nil) ; done searching in any case
2070 (setq found
2071 (not (or
2072 (eq (following-char) ?=)
2073 (memq (char-after (- (point) 2))
2074 '(?< ?> ?!)))))))))
2075 (if (or (not found) ; not an assignment
2076 (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash>
2077 (progn
2078 (goto-char startpos)
2079 (skip-chars-forward "^ \t\n")))
Barry Warsaw40fb4522001-07-06 20:07:13 +00002080 ;; if this is a continuation for a block opening
2081 ;; statement, add some extra offset.
2082 (+ (current-column) (if (py-statement-opens-block-p)
2083 py-continuation-offset 0)
2084 1)
Barry Warsawfd4c9e82001-06-18 23:40:35 +00002085 ))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002086
2087 ;; not on a continuation line
Barry Warsawa7891711996-08-01 15:53:09 +00002088 ((bobp) (current-indentation))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002089
Barry Warsawa7891711996-08-01 15:53:09 +00002090 ;; Dfn: "Indenting comment line". A line containing only a
2091 ;; comment, but which is treated like a statement for
2092 ;; indentation calculation purposes. Such lines are only
2093 ;; treated specially by the mode; they are not treated
2094 ;; specially by the Python interpreter.
2095
2096 ;; The rules for indenting comment lines are a line where:
2097 ;; - the first non-whitespace character is `#', and
2098 ;; - the character following the `#' is whitespace, and
Barry Warsaw41a05c71998-08-10 16:33:12 +00002099 ;; - the line is dedented with respect to (i.e. to the left
Barry Warsawa7891711996-08-01 15:53:09 +00002100 ;; of) the indentation of the preceding non-blank line.
2101
2102 ;; The first non-blank line following an indenting comment
2103 ;; line is given the same amount of indentation as the
2104 ;; indenting comment line.
2105
2106 ;; All other comment-only lines are ignored for indentation
2107 ;; purposes.
2108
2109 ;; Are we looking at a comment-only line which is *not* an
Barry Warsaw145ab1c1998-05-19 14:49:49 +00002110 ;; indenting comment line? If so, we assume that it's been
Barry Warsawa7891711996-08-01 15:53:09 +00002111 ;; placed at the desired indentation, so leave it alone.
2112 ;; Indenting comment lines are aligned as statements down
2113 ;; below.
2114 ((and (looking-at "[ \t]*#[^ \t\n]")
2115 ;; NOTE: this test will not be performed in older Emacsen
2116 (fboundp 'forward-comment)
2117 (<= (current-indentation)
2118 (save-excursion
2119 (forward-comment (- (point-max)))
2120 (current-indentation))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002121 (current-indentation))
2122
2123 ;; else indentation based on that of the statement that
2124 ;; precedes us; use the first line of that statement to
2125 ;; establish the base, in case the user forced a non-std
2126 ;; indentation for the continuation lines (if any)
2127 (t
Barry Warsawc01c5c81995-09-14 18:49:11 +00002128 ;; skip back over blank & non-indenting comment lines note:
2129 ;; will skip a blank or non-indenting comment line that
Barry Warsawfd0fb381996-03-04 17:15:40 +00002130 ;; happens to be a continuation line too. use fast Emacs 19
2131 ;; function if it's there.
Barry Warsaw6d627751996-03-06 18:41:38 +00002132 (if (and (eq py-honor-comment-indentation nil)
Barry Warsaw33d6ec01996-03-05 16:28:07 +00002133 (fboundp 'forward-comment))
Barry Warsawfd0fb381996-03-04 17:15:40 +00002134 (forward-comment (- (point-max)))
Barry Warsaw218eb751998-09-22 19:51:47 +00002135 (let ((prefix-re (concat py-block-comment-prefix "[ \t]*"))
2136 done)
Barry Warsaw6d627751996-03-06 18:41:38 +00002137 (while (not done)
Barry Warsaw12c92941998-08-10 21:44:37 +00002138 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#\\)" nil 'move)
2139 (setq done (or (bobp)
2140 (and (eq py-honor-comment-indentation t)
2141 (save-excursion
2142 (back-to-indentation)
Barry Warsaw218eb751998-09-22 19:51:47 +00002143 (not (looking-at prefix-re))
Barry Warsaw12c92941998-08-10 21:44:37 +00002144 ))
2145 (and (not (eq py-honor-comment-indentation t))
2146 (save-excursion
2147 (back-to-indentation)
Barry Warsawd36cfe42002-03-15 16:46:46 +00002148 (and (not (looking-at prefix-re))
2149 (or (looking-at "[^#]")
2150 (not (zerop (current-column)))
2151 ))
2152 ))
Barry Warsaw12c92941998-08-10 21:44:37 +00002153 ))
Barry Warsaw6d627751996-03-06 18:41:38 +00002154 )))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002155 ;; if we landed inside a string, go to the beginning of that
2156 ;; string. this handles triple quoted, multi-line spanning
2157 ;; strings.
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002158 (py-goto-beginning-of-tqs (nth 3 (parse-partial-sexp bod (point))))
Barry Warsawc210e691998-01-20 22:52:56 +00002159 ;; now skip backward over continued lines
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002160 (setq placeholder (point))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002161 (py-goto-initial-line)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002162 ;; we may *now* have landed in a TQS, so find the beginning of
2163 ;; this string.
2164 (py-goto-beginning-of-tqs
2165 (save-excursion (nth 3 (parse-partial-sexp
2166 placeholder (point)))))
Barry Warsawf831d811996-07-31 20:42:59 +00002167 (+ (current-indentation)
2168 (if (py-statement-opens-block-p)
2169 py-indent-offset
Barry Warsaw7cb505c1996-10-23 20:44:59 +00002170 (if (and honor-block-close-p (py-statement-closes-block-p))
Barry Warsawf831d811996-07-31 20:42:59 +00002171 (- py-indent-offset)
2172 0)))
2173 )))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002174
2175(defun py-guess-indent-offset (&optional global)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002176 "Guess a good value for, and change, `py-indent-offset'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00002177
2178By default, make a buffer-local copy of `py-indent-offset' with the
2179new value, so that other Python buffers are not affected. With
2180\\[universal-argument] (programmatically, optional argument GLOBAL),
2181change the global value of `py-indent-offset'. This affects all
2182Python buffers (that don't have their own buffer-local copy), both
2183those currently existing and those created later in the Emacs session.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002184
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002185Some people use a different value for `py-indent-offset' than you use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002186There's no excuse for such foolishness, but sometimes you have to deal
2187with their ugly code anyway. This function examines the file and sets
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002188`py-indent-offset' to what it thinks it was when they created the
2189mess.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002190
2191Specifically, it searches forward from the statement containing point,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002192looking for a line that opens a block of code. `py-indent-offset' is
2193set to the difference in indentation between that line and the Python
Barry Warsaw7ae77681994-12-12 20:38:05 +00002194statement following it. If the search doesn't succeed going forward,
2195it's tried again going backward."
2196 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002197 (let (new-value
2198 (start (point))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002199 (restart (point))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002200 (found nil)
2201 colon-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002202 (py-goto-initial-line)
2203 (while (not (or found (eobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002204 (when (and (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2205 (not (py-in-literal restart)))
2206 (setq restart (point))
2207 (py-goto-initial-line)
2208 (if (py-statement-opens-block-p)
2209 (setq found t)
2210 (goto-char restart))))
2211 (unless found
Barry Warsaw7ae77681994-12-12 20:38:05 +00002212 (goto-char start)
2213 (py-goto-initial-line)
2214 (while (not (or found (bobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002215 (setq found (and
2216 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2217 (or (py-goto-initial-line) t) ; always true -- side effect
2218 (py-statement-opens-block-p)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002219 (setq colon-indent (current-indentation)
2220 found (and found (zerop (py-next-statement 1)))
2221 new-value (- (current-indentation) colon-indent))
2222 (goto-char start)
Barry Warsawe908b6b1998-03-19 22:48:02 +00002223 (if (not found)
2224 (error "Sorry, couldn't guess a value for py-indent-offset")
2225 (funcall (if global 'kill-local-variable 'make-local-variable)
2226 'py-indent-offset)
2227 (setq py-indent-offset new-value)
Barry Warsawd35c2551998-09-25 00:08:38 +00002228 (or noninteractive
2229 (message "%s value of py-indent-offset set to %d"
2230 (if global "Global" "Local")
2231 py-indent-offset)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002232 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002233
Barry Warsaw003932a1998-07-07 15:11:24 +00002234(defun py-comment-indent-function ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002235 "Python version of `comment-indent-function'."
2236 ;; This is required when filladapt is turned off. Without it, when
2237 ;; filladapt is not used, comments which start in column zero
2238 ;; cascade one character to the right
Barry Warsaw003932a1998-07-07 15:11:24 +00002239 (save-excursion
2240 (beginning-of-line)
2241 (let ((eol (py-point 'eol)))
2242 (and comment-start-skip
2243 (re-search-forward comment-start-skip eol t)
2244 (setq eol (match-beginning 0)))
2245 (goto-char eol)
2246 (skip-chars-backward " \t")
2247 (max comment-column (+ (current-column) (if (bolp) 0 1)))
2248 )))
2249
Barry Warsawf8ddb6a1999-01-18 21:49:39 +00002250(defun py-narrow-to-defun (&optional class)
2251 "Make text outside current defun invisible.
2252The defun visible is the one that contains point or follows point.
2253Optional CLASS is passed directly to `py-beginning-of-def-or-class'."
2254 (interactive "P")
2255 (save-excursion
2256 (widen)
2257 (py-end-of-def-or-class class)
2258 (let ((end (point)))
2259 (py-beginning-of-def-or-class class)
2260 (narrow-to-region (point) end))))
2261
Barry Warsaw003932a1998-07-07 15:11:24 +00002262
Barry Warsaw7ae77681994-12-12 20:38:05 +00002263(defun py-shift-region (start end count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002264 "Indent lines from START to END by COUNT spaces."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002265 (save-excursion
Barry Warsaw41a05c71998-08-10 16:33:12 +00002266 (goto-char end)
2267 (beginning-of-line)
2268 (setq end (point))
2269 (goto-char start)
2270 (beginning-of-line)
2271 (setq start (point))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002272 (indent-rigidly start end count)))
2273
2274(defun py-shift-region-left (start end &optional count)
2275 "Shift region of Python code to the left.
2276The lines from the line containing the start of the current region up
2277to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002278shifted to the left, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002279
2280If a prefix argument is given, the region is instead shifted by that
Barry Warsaw41a05c71998-08-10 16:33:12 +00002281many columns. With no active region, dedent only the current line.
2282You cannot dedent the region if any line is already at column zero."
Barry Warsawdea4a291996-07-03 22:59:12 +00002283 (interactive
2284 (let ((p (point))
2285 (m (mark))
2286 (arg current-prefix-arg))
2287 (if m
2288 (list (min p m) (max p m) arg)
2289 (list p (save-excursion (forward-line 1) (point)) arg))))
2290 ;; if any line is at column zero, don't shift the region
2291 (save-excursion
2292 (goto-char start)
2293 (while (< (point) end)
2294 (back-to-indentation)
Barry Warsaw71e315b1996-07-23 15:03:16 +00002295 (if (and (zerop (current-column))
2296 (not (looking-at "\\s *$")))
Barry Warsaw41a05c71998-08-10 16:33:12 +00002297 (error "Region is at left edge"))
Barry Warsawdea4a291996-07-03 22:59:12 +00002298 (forward-line 1)))
2299 (py-shift-region start end (- (prefix-numeric-value
2300 (or count py-indent-offset))))
2301 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002302
2303(defun py-shift-region-right (start end &optional count)
2304 "Shift region of Python code to the right.
2305The lines from the line containing the start of the current region up
2306to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002307shifted to the right, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002308
2309If a prefix argument is given, the region is instead shifted by that
Barry Warsawdea4a291996-07-03 22:59:12 +00002310many columns. With no active region, indent only the current line."
2311 (interactive
2312 (let ((p (point))
2313 (m (mark))
2314 (arg current-prefix-arg))
2315 (if m
2316 (list (min p m) (max p m) arg)
2317 (list p (save-excursion (forward-line 1) (point)) arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002318 (py-shift-region start end (prefix-numeric-value
Barry Warsawdea4a291996-07-03 22:59:12 +00002319 (or count py-indent-offset)))
2320 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002321
2322(defun py-indent-region (start end &optional indent-offset)
2323 "Reindent a region of Python code.
Barry Warsaw867a32a1996-03-07 18:30:26 +00002324
Barry Warsaw7ae77681994-12-12 20:38:05 +00002325The lines from the line containing the start of the current region up
2326to (but not including) the line containing the end of the region are
2327reindented. If the first line of the region has a non-whitespace
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002328character in the first column, the first line is left alone and the
2329rest of the region is reindented with respect to it. Else the entire
Barry Warsaw867a32a1996-03-07 18:30:26 +00002330region is reindented with respect to the (closest code or indenting
2331comment) statement immediately preceding the region.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002332
2333This is useful when code blocks are moved or yanked, when enclosing
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002334control structures are introduced or removed, or to reformat code
2335using a new value for the indentation offset.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002336
2337If a numeric prefix argument is given, it will be used as the value of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002338the indentation offset. Else the value of `py-indent-offset' will be
Barry Warsaw7ae77681994-12-12 20:38:05 +00002339used.
2340
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002341Warning: The region must be consistently indented before this function
Barry Warsaw7ae77681994-12-12 20:38:05 +00002342is called! This function does not compute proper indentation from
2343scratch (that's impossible in Python), it merely adjusts the existing
2344indentation to be correct in context.
2345
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002346Warning: This function really has no idea what to do with
2347non-indenting comment lines, and shifts them as if they were indenting
2348comment lines. Fixing this appears to require telepathy.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002349
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002350Special cases: whitespace is deleted from blank lines; continuation
2351lines are shifted by the same amount their initial line was shifted,
2352in order to preserve their relative indentation with respect to their
Barry Warsaw7ae77681994-12-12 20:38:05 +00002353initial line; and comment lines beginning in column 1 are ignored."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002354 (interactive "*r\nP") ; region; raw prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002355 (save-excursion
2356 (goto-char end) (beginning-of-line) (setq end (point-marker))
2357 (goto-char start) (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002358 (let ((py-indent-offset (prefix-numeric-value
2359 (or indent-offset py-indent-offset)))
2360 (indents '(-1)) ; stack of active indent levels
2361 (target-column 0) ; column to which to indent
2362 (base-shifted-by 0) ; amount last base line was shifted
2363 (indent-base (if (looking-at "[ \t\n]")
Barry Warsaw7cb505c1996-10-23 20:44:59 +00002364 (py-compute-indentation t)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002365 0))
2366 ci)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002367 (while (< (point) end)
2368 (setq ci (current-indentation))
2369 ;; figure out appropriate target column
2370 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002371 ((or (eq (following-char) ?#) ; comment in column 1
2372 (looking-at "[ \t]*$")) ; entirely blank
2373 (setq target-column 0))
2374 ((py-continuation-line-p) ; shift relative to base line
2375 (setq target-column (+ ci base-shifted-by)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002376 (t ; new base line
2377 (if (> ci (car indents)) ; going deeper; push it
2378 (setq indents (cons ci indents))
2379 ;; else we should have seen this indent before
2380 (setq indents (memq ci indents)) ; pop deeper indents
2381 (if (null indents)
2382 (error "Bad indentation in region, at line %d"
2383 (save-restriction
2384 (widen)
2385 (1+ (count-lines 1 (point)))))))
2386 (setq target-column (+ indent-base
2387 (* py-indent-offset
2388 (- (length indents) 2))))
2389 (setq base-shifted-by (- target-column ci))))
2390 ;; shift as needed
2391 (if (/= ci target-column)
2392 (progn
2393 (delete-horizontal-space)
2394 (indent-to target-column)))
2395 (forward-line 1))))
2396 (set-marker end nil))
2397
Barry Warsawa7891711996-08-01 15:53:09 +00002398(defun py-comment-region (beg end &optional arg)
2399 "Like `comment-region' but uses double hash (`#') comment starter."
2400 (interactive "r\nP")
Barry Warsaw3fcaf611996-08-01 20:11:51 +00002401 (let ((comment-start py-block-comment-prefix))
Barry Warsawa7891711996-08-01 15:53:09 +00002402 (comment-region beg end arg)))
2403
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002404
2405;; Functions for moving point
Barry Warsaw7ae77681994-12-12 20:38:05 +00002406(defun py-previous-statement (count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002407 "Go to the start of the COUNTth preceding Python statement.
2408By default, goes to the previous statement. If there is no such
2409statement, goes to the first statement. Return count of statements
2410left to move. `Statements' do not include blank, comment, or
2411continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002412 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002413 (if (< count 0) (py-next-statement (- count))
2414 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002415 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002416 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002417 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002418 (> count 0)
2419 (zerop (forward-line -1))
2420 (py-goto-statement-at-or-above))
2421 (setq count (1- count)))
2422 (if (> count 0) (goto-char start)))
2423 count))
2424
2425(defun py-next-statement (count)
2426 "Go to the start of next Python statement.
2427If the statement at point is the i'th Python statement, goes to the
2428start of statement i+COUNT. If there is no such statement, goes to the
2429last statement. Returns count of statements left to move. `Statements'
2430do not include blank, comment, or continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002431 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002432 (if (< count 0) (py-previous-statement (- count))
2433 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002434 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002435 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002436 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002437 (> count 0)
2438 (py-goto-statement-below))
2439 (setq count (1- count)))
2440 (if (> count 0) (goto-char start)))
2441 count))
2442
2443(defun py-goto-block-up (&optional nomark)
2444 "Move up to start of current block.
2445Go to the statement that starts the smallest enclosing block; roughly
2446speaking, this will be the closest preceding statement that ends with a
2447colon and is indented less than the statement you started on. If
2448successful, also sets the mark to the starting point.
2449
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002450`\\[py-mark-block]' can be used afterward to mark the whole code
2451block, if desired.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002452
2453If called from a program, the mark will not be set if optional argument
2454NOMARK is not nil."
2455 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002456 (let ((start (point))
2457 (found nil)
2458 initial-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002459 (py-goto-initial-line)
2460 ;; if on blank or non-indenting comment line, use the preceding stmt
2461 (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2462 (progn
2463 (py-goto-statement-at-or-above)
2464 (setq found (py-statement-opens-block-p))))
2465 ;; search back for colon line indented less
2466 (setq initial-indent (current-indentation))
2467 (if (zerop initial-indent)
2468 ;; force fast exit
2469 (goto-char (point-min)))
2470 (while (not (or found (bobp)))
2471 (setq found
2472 (and
2473 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2474 (or (py-goto-initial-line) t) ; always true -- side effect
2475 (< (current-indentation) initial-indent)
2476 (py-statement-opens-block-p))))
2477 (if found
2478 (progn
2479 (or nomark (push-mark start))
2480 (back-to-indentation))
2481 (goto-char start)
2482 (error "Enclosing block not found"))))
2483
Barry Warsawab0e86c1998-05-19 15:31:46 +00002484(defun py-beginning-of-def-or-class (&optional class count)
2485 "Move point to start of `def' or `class'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002486
2487Searches back for the closest preceding `def'. If you supply a prefix
Barry Warsawab0e86c1998-05-19 15:31:46 +00002488arg, looks for a `class' instead. The docs below assume the `def'
2489case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002490Programmatically, if CLASS is `either', then moves to either `class'
2491or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002492
Barry Warsawab0e86c1998-05-19 15:31:46 +00002493When second optional argument is given programmatically, move to the
2494COUNTth start of `def'.
2495
2496If point is in a `def' statement already, and after the `d', simply
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002497moves point to the start of the statement.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002498
Barry Warsawab0e86c1998-05-19 15:31:46 +00002499Otherwise (i.e. when point is not in a `def' statement, or at or
2500before the `d' of a `def' statement), searches for the closest
2501preceding `def' statement, and leaves point at its start. If no such
2502statement can be found, leaves point at the start of the buffer.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002503
Barry Warsawab0e86c1998-05-19 15:31:46 +00002504Returns t iff a `def' statement is found by these rules.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002505
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002506Note that doing this command repeatedly will take you closer to the
2507start of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002508
Barry Warsaw7c29b231998-07-07 17:45:38 +00002509To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002510 (interactive "P") ; raw prefix arg
Barry Warsaw6839d3a1998-10-28 00:10:45 +00002511 (setq count (or count 1))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002512 (let ((at-or-before-p (<= (current-column) (current-indentation)))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002513 (start-of-line (goto-char (py-point 'bol)))
2514 (start-of-stmt (goto-char (py-point 'bos)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002515 (start-re (cond ((eq class 'either) "^[ \t]*\\(class\\|def\\)\\>")
2516 (class "^[ \t]*class\\>")
2517 (t "^[ \t]*def\\>")))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002518 )
2519 ;; searching backward
2520 (if (and (< 0 count)
2521 (or (/= start-of-stmt start-of-line)
2522 (not at-or-before-p)))
2523 (end-of-line))
2524 ;; search forward
2525 (if (and (> 0 count)
2526 (zerop (current-column))
2527 (looking-at start-re))
2528 (end-of-line))
Barry Warsawddc46961999-07-27 21:40:02 +00002529 (if (re-search-backward start-re nil 'move count)
2530 (goto-char (match-beginning 0)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002531
Barry Warsawab0e86c1998-05-19 15:31:46 +00002532;; Backwards compatibility
2533(defalias 'beginning-of-python-def-or-class 'py-beginning-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002534
Barry Warsawab0e86c1998-05-19 15:31:46 +00002535(defun py-end-of-def-or-class (&optional class count)
2536 "Move point beyond end of `def' or `class' body.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002537
Barry Warsawab0e86c1998-05-19 15:31:46 +00002538By default, looks for an appropriate `def'. If you supply a prefix
2539arg, looks for a `class' instead. The docs below assume the `def'
2540case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002541Programmatically, if CLASS is `either', then moves to either `class'
2542or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002543
Barry Warsawab0e86c1998-05-19 15:31:46 +00002544When second optional argument is given programmatically, move to the
2545COUNTth end of `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002546
Barry Warsawab0e86c1998-05-19 15:31:46 +00002547If point is in a `def' statement already, this is the `def' we use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002548
Barry Warsawab0e86c1998-05-19 15:31:46 +00002549Else, if the `def' found by `\\[py-beginning-of-def-or-class]'
2550contains the statement you started on, that's the `def' we use.
2551
2552Otherwise, we search forward for the closest following `def', and use that.
2553
2554If a `def' can be found by these rules, point is moved to the start of
2555the line immediately following the `def' block, and the position of the
2556start of the `def' is returned.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002557
2558Else point is moved to the end of the buffer, and nil is returned.
2559
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002560Note that doing this command repeatedly will take you closer to the
2561end of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002562
Barry Warsaw7c29b231998-07-07 17:45:38 +00002563To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002564 (interactive "P") ; raw prefix arg
Barry Warsawab0e86c1998-05-19 15:31:46 +00002565 (if (and count (/= count 1))
2566 (py-beginning-of-def-or-class (- 1 count)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002567 (let ((start (progn (py-goto-initial-line) (point)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002568 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2569 (class "class")
2570 (t "def")))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002571 (state 'not-found))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002572 ;; move point to start of appropriate def/class
2573 (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one
2574 (setq state 'at-beginning)
Barry Warsawab0e86c1998-05-19 15:31:46 +00002575 ;; else see if py-beginning-of-def-or-class hits container
2576 (if (and (py-beginning-of-def-or-class class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002577 (progn (py-goto-beyond-block)
2578 (> (point) start)))
2579 (setq state 'at-end)
2580 ;; else search forward
2581 (goto-char start)
2582 (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move)
2583 (progn (setq state 'at-beginning)
2584 (beginning-of-line)))))
2585 (cond
2586 ((eq state 'at-beginning) (py-goto-beyond-block) t)
2587 ((eq state 'at-end) t)
2588 ((eq state 'not-found) nil)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002589 (t (error "Internal error in `py-end-of-def-or-class'")))))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002590
2591;; Backwards compabitility
Barry Warsaw820273d1998-05-19 15:54:45 +00002592(defalias 'end-of-python-def-or-class 'py-end-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002593
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002594
2595;; Functions for marking regions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002596(defun py-mark-block (&optional extend just-move)
2597 "Mark following block of lines. With prefix arg, mark structure.
2598Easier to use than explain. It sets the region to an `interesting'
2599block of succeeding lines. If point is on a blank line, it goes down to
2600the next non-blank line. That will be the start of the region. The end
2601of the region depends on the kind of line at the start:
2602
2603 - If a comment, the region will include all succeeding comment lines up
2604 to (but not including) the next non-comment line (if any).
2605
2606 - Else if a prefix arg is given, and the line begins one of these
2607 structures:
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002608
2609 if elif else try except finally for while def class
2610
Barry Warsaw7ae77681994-12-12 20:38:05 +00002611 the region will be set to the body of the structure, including
2612 following blocks that `belong' to it, but excluding trailing blank
2613 and comment lines. E.g., if on a `try' statement, the `try' block
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002614 and all (if any) of the following `except' and `finally' blocks
2615 that belong to the `try' structure will be in the region. Ditto
2616 for if/elif/else, for/else and while/else structures, and (a bit
2617 degenerate, since they're always one-block structures) def and
2618 class blocks.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002619
2620 - Else if no prefix argument is given, and the line begins a Python
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002621 block (see list above), and the block is not a `one-liner' (i.e.,
2622 the statement ends with a colon, not with code), the region will
2623 include all succeeding lines up to (but not including) the next
2624 code statement (if any) that's indented no more than the starting
2625 line, except that trailing blank and comment lines are excluded.
2626 E.g., if the starting line begins a multi-statement `def'
2627 structure, the region will be set to the full function definition,
2628 but without any trailing `noise' lines.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002629
2630 - Else the region will include all succeeding lines up to (but not
2631 including) the next blank line, or code or indenting-comment line
2632 indented strictly less than the starting line. Trailing indenting
2633 comment lines are included in this case, but not trailing blank
2634 lines.
2635
2636A msg identifying the location of the mark is displayed in the echo
2637area; or do `\\[exchange-point-and-mark]' to flip down to the end.
2638
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002639If called from a program, optional argument EXTEND plays the role of
2640the prefix arg, and if optional argument JUST-MOVE is not nil, just
2641moves to the end of the block (& does not set mark or display a msg)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002642 (interactive "P") ; raw prefix arg
2643 (py-goto-initial-line)
2644 ;; skip over blank lines
2645 (while (and
2646 (looking-at "[ \t]*$") ; while blank line
2647 (not (eobp))) ; & somewhere to go
2648 (forward-line 1))
2649 (if (eobp)
2650 (error "Hit end of buffer without finding a non-blank stmt"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002651 (let ((initial-pos (point))
2652 (initial-indent (current-indentation))
2653 last-pos ; position of last stmt in region
2654 (followers
2655 '((if elif else) (elif elif else) (else)
2656 (try except finally) (except except) (finally)
2657 (for else) (while else)
2658 (def) (class) ) )
2659 first-symbol next-symbol)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002660
2661 (cond
2662 ;; if comment line, suck up the following comment lines
2663 ((looking-at "[ \t]*#")
2664 (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment
2665 (re-search-backward "^[ \t]*#") ; and back to last comment in block
2666 (setq last-pos (point)))
2667
2668 ;; else if line is a block line and EXTEND given, suck up
2669 ;; the whole structure
2670 ((and extend
2671 (setq first-symbol (py-suck-up-first-keyword) )
2672 (assq first-symbol followers))
2673 (while (and
2674 (or (py-goto-beyond-block) t) ; side effect
2675 (forward-line -1) ; side effect
2676 (setq last-pos (point)) ; side effect
2677 (py-goto-statement-below)
2678 (= (current-indentation) initial-indent)
2679 (setq next-symbol (py-suck-up-first-keyword))
2680 (memq next-symbol (cdr (assq first-symbol followers))))
2681 (setq first-symbol next-symbol)))
2682
2683 ;; else if line *opens* a block, search for next stmt indented <=
2684 ((py-statement-opens-block-p)
2685 (while (and
2686 (setq last-pos (point)) ; always true -- side effect
2687 (py-goto-statement-below)
Barry Warsawf070cce2002-05-23 19:42:16 +00002688 (> (current-indentation) initial-indent)
2689 )))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002690
2691 ;; else plain code line; stop at next blank line, or stmt or
2692 ;; indenting comment line indented <
2693 (t
2694 (while (and
2695 (setq last-pos (point)) ; always true -- side effect
2696 (or (py-goto-beyond-final-line) t)
2697 (not (looking-at "[ \t]*$")) ; stop at blank line
2698 (or
2699 (>= (current-indentation) initial-indent)
2700 (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting #
2701 nil)))
2702
2703 ;; skip to end of last stmt
2704 (goto-char last-pos)
2705 (py-goto-beyond-final-line)
2706
2707 ;; set mark & display
2708 (if just-move
2709 () ; just return
2710 (push-mark (point) 'no-msg)
2711 (forward-line -1)
2712 (message "Mark set after: %s" (py-suck-up-leading-text))
2713 (goto-char initial-pos))))
2714
Barry Warsaw2518c671997-11-05 00:51:08 +00002715(defun py-mark-def-or-class (&optional class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002716 "Set region to body of def (or class, with prefix arg) enclosing point.
2717Pushes the current mark, then point, on the mark ring (all language
2718modes do this, but although it's handy it's never documented ...).
2719
2720In most Emacs language modes, this function bears at least a
Barry Warsawab0e86c1998-05-19 15:31:46 +00002721hallucinogenic resemblance to `\\[py-end-of-def-or-class]' and
2722`\\[py-beginning-of-def-or-class]'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002723
2724And in earlier versions of Python mode, all 3 were tightly connected.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002725Turned out that was more confusing than useful: the `goto start' and
2726`goto end' commands are usually used to search through a file, and
2727people expect them to act a lot like `search backward' and `search
2728forward' string-search commands. But because Python `def' and `class'
2729can nest to arbitrary levels, finding the smallest def containing
2730point cannot be done via a simple backward search: the def containing
2731point may not be the closest preceding def, or even the closest
2732preceding def that's indented less. The fancy algorithm required is
2733appropriate for the usual uses of this `mark' command, but not for the
2734`goto' variations.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002735
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002736So the def marked by this command may not be the one either of the
2737`goto' commands find: If point is on a blank or non-indenting comment
2738line, moves back to start of the closest preceding code statement or
2739indenting comment line. If this is a `def' statement, that's the def
2740we use. Else searches for the smallest enclosing `def' block and uses
2741that. Else signals an error.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002742
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002743When an enclosing def is found: The mark is left immediately beyond
2744the last line of the def block. Point is left at the start of the
2745def, except that: if the def is preceded by a number of comment lines
2746followed by (at most) one optional blank line, point is left at the
2747start of the comments; else if the def is preceded by a blank line,
2748point is left at its start.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002749
2750The intent is to mark the containing def/class and its associated
2751documentation, to make moving and duplicating functions and classes
2752pleasant."
2753 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002754 (let ((start (point))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002755 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2756 (class "class")
2757 (t "def"))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002758 (push-mark start)
2759 (if (not (py-go-up-tree-to-keyword which))
2760 (progn (goto-char start)
Barry Warsaw7c29b231998-07-07 17:45:38 +00002761 (error "Enclosing %s not found"
2762 (if (eq class 'either)
2763 "def or class"
2764 which)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002765 ;; else enclosing def/class found
2766 (setq start (point))
2767 (py-goto-beyond-block)
2768 (push-mark (point))
2769 (goto-char start)
2770 (if (zerop (forward-line -1)) ; if there is a preceding line
2771 (progn
2772 (if (looking-at "[ \t]*$") ; it's blank
2773 (setq start (point)) ; so reset start point
2774 (goto-char start)) ; else try again
2775 (if (zerop (forward-line -1))
2776 (if (looking-at "[ \t]*#") ; a comment
2777 ;; look back for non-comment line
2778 ;; tricky: note that the regexp matches a blank
2779 ;; line, cuz \n is in the 2nd character class
2780 (and
2781 (re-search-backward "^[ \t]*[^ \t#]" nil 'move)
2782 (forward-line 1))
2783 ;; no comment, so go back
Barry Warsaw4da6bd51997-11-26 06:00:26 +00002784 (goto-char start)))))))
2785 (exchange-point-and-mark)
2786 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002787
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002788;; ripped from cc-mode
2789(defun py-forward-into-nomenclature (&optional arg)
2790 "Move forward to end of a nomenclature section or word.
Barry Warsaw41a05c71998-08-10 16:33:12 +00002791With \\[universal-argument] (programmatically, optional argument ARG),
2792do it that many times.
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002793
2794A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2795 (interactive "p")
2796 (let ((case-fold-search nil))
2797 (if (> arg 0)
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002798 (re-search-forward
2799 "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)"
2800 (point-max) t arg)
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002801 (while (and (< arg 0)
2802 (re-search-backward
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002803 "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+"
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002804 (point-min) 0))
2805 (forward-char 1)
2806 (setq arg (1+ arg)))))
2807 (py-keep-region-active))
2808
2809(defun py-backward-into-nomenclature (&optional arg)
2810 "Move backward to beginning of a nomenclature section or word.
2811With optional ARG, move that many times. If ARG is negative, move
2812forward.
2813
2814A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2815 (interactive "p")
2816 (py-forward-into-nomenclature (- arg))
2817 (py-keep-region-active))
2818
2819
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002820
Barry Warsaw4f577d22001-04-11 20:23:17 +00002821;; pdbtrack functions
2822(defun py-pdbtrack-toggle-stack-tracking (arg)
2823 (interactive "P")
2824 (if (not (get-buffer-process (current-buffer)))
2825 (error "No process associated with buffer '%s'" (current-buffer)))
2826 ;; missing or 0 is toggle, >0 turn on, <0 turn off
2827 (if (or (not arg)
2828 (zerop (setq arg (prefix-numeric-value arg))))
2829 (setq py-pdbtrack-do-tracking-p (not py-pdbtrack-do-tracking-p))
2830 (setq py-pdbtrack-do-tracking-p (> arg 0)))
2831 (message "%sabled Python's pdbtrack"
2832 (if py-pdbtrack-do-tracking-p "En" "Dis")))
2833
2834(defun turn-on-pdbtrack ()
2835 (interactive)
2836 (py-pdbtrack-toggle-stack-tracking 1))
2837
2838(defun turn-off-pdbtrack ()
2839 (interactive)
2840 (py-pdbtrack-toggle-stack-tracking 0))
2841
2842
2843
Barry Warsaw29a90f02002-04-22 21:48:20 +00002844;; Pychecker
2845(defun py-pychecker-run (command)
2846 "*Run pychecker (default on the file currently visited)."
2847 (interactive
2848 (let ((default
2849 (format "%s %s %s" py-pychecker-command
2850 (mapconcat 'identity py-pychecker-command-args " ")
Barry Warsaw7f232122002-09-28 18:17:56 +00002851 (buffer-file-name)))
2852 (last (when py-pychecker-history
2853 (let* ((lastcmd (car py-pychecker-history))
2854 (cmd (cdr (reverse (split-string lastcmd))))
2855 (newcmd (reverse (cons (buffer-file-name) cmd))))
2856 (mapconcat 'identity newcmd " ")))))
Barry Warsaw29a90f02002-04-22 21:48:20 +00002857
2858 (list
2859 (read-shell-command "Run pychecker like this: "
Barry Warsaw7f232122002-09-28 18:17:56 +00002860 (if last
2861 last
Barry Warsawf31ff272002-07-17 21:25:43 +00002862 default)
Barry Warsawdaa19212002-07-16 15:56:28 +00002863 'py-pychecker-history))))
Barry Warsaw29a90f02002-04-22 21:48:20 +00002864 (save-some-buffers (not py-ask-about-save) nil)
Barry Warsawdaa19212002-07-16 15:56:28 +00002865 (compile-internal command "No more errors"))
Barry Warsaw29a90f02002-04-22 21:48:20 +00002866
2867
2868
2869;; pydoc commands. The guts of this function is stolen from XEmacs's
2870;; symbol-near-point, but without the useless regexp-quote call on the
2871;; results, nor the interactive bit. Also, we've added the temporary
2872;; syntax table setting, which Skip originally had broken out into a
2873;; separate function. Note that Emacs doesn't have the original
2874;; function.
Barry Warsawa7cc43b2002-04-22 17:15:19 +00002875(defun py-symbol-near-point ()
2876 "Return the first textual item to the nearest point."
2877 ;; alg stolen from etag.el
2878 (save-excursion
2879 (with-syntax-table py-dotted-expression-syntax-table
2880 (if (or (bobp) (not (memq (char-syntax (char-before)) '(?w ?_))))
2881 (while (not (looking-at "\\sw\\|\\s_\\|\\'"))
2882 (forward-char 1)))
2883 (while (looking-at "\\sw\\|\\s_")
2884 (forward-char 1))
2885 (if (re-search-backward "\\sw\\|\\s_" nil t)
2886 (progn (forward-char 1)
2887 (buffer-substring (point)
2888 (progn (forward-sexp -1)
2889 (while (looking-at "\\s'")
2890 (forward-char 1))
2891 (point))))
2892 nil))))
2893
2894(defun py-help-at-point ()
2895 "Get help from Python based on the symbol nearest point."
2896 (interactive)
2897 (let* ((sym (py-symbol-near-point))
2898 (base (substring sym 0 (or (search "." sym :from-end t) 0)))
2899 cmd)
2900 (if (not (equal base ""))
2901 (setq cmd (concat "import " base "\n")))
2902 (setq cmd (concat "import pydoc\n"
2903 cmd
Barry Warsaw04949552002-04-22 22:05:49 +00002904 "try: pydoc.help('" sym "')\n"
Barry Warsawa7cc43b2002-04-22 17:15:19 +00002905 "except: print 'No help available on:', \"" sym "\""))
2906 (message cmd)
Barry Warsaw04949552002-04-22 22:05:49 +00002907 (py-execute-string cmd)
2908 (set-buffer "*Python Output*")
2909 ;; BAW: Should we really be leaving the output buffer in help-mode?
2910 (help-mode)))
Barry Warsawa7cc43b2002-04-22 17:15:19 +00002911
2912
2913
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002914;; Documentation functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002915
2916;; dump the long form of the mode blurb; does the usual doc escapes,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002917;; plus lines of the form ^[vc]:name$ to suck variable & command docs
2918;; out of the right places, along with the keys they're on & current
2919;; values
Barry Warsaw7ae77681994-12-12 20:38:05 +00002920(defun py-dump-help-string (str)
2921 (with-output-to-temp-buffer "*Help*"
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002922 (let ((locals (buffer-local-variables))
2923 funckind funcname func funcdoc
2924 (start 0) mstart end
2925 keys )
Barry Warsaw7ae77681994-12-12 20:38:05 +00002926 (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start)
2927 (setq mstart (match-beginning 0) end (match-end 0)
2928 funckind (substring str (match-beginning 1) (match-end 1))
2929 funcname (substring str (match-beginning 2) (match-end 2))
2930 func (intern funcname))
2931 (princ (substitute-command-keys (substring str start mstart)))
2932 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002933 ((equal funckind "c") ; command
2934 (setq funcdoc (documentation func)
2935 keys (concat
2936 "Key(s): "
2937 (mapconcat 'key-description
2938 (where-is-internal func py-mode-map)
2939 ", "))))
2940 ((equal funckind "v") ; variable
Barry Warsaw604cefa1996-09-03 18:17:04 +00002941 (setq funcdoc (documentation-property func 'variable-documentation)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002942 keys (if (assq func locals)
2943 (concat
2944 "Local/Global values: "
2945 (prin1-to-string (symbol-value func))
2946 " / "
2947 (prin1-to-string (default-value func)))
2948 (concat
2949 "Value: "
2950 (prin1-to-string (symbol-value func))))))
2951 (t ; unexpected
2952 (error "Error in py-dump-help-string, tag `%s'" funckind)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002953 (princ (format "\n-> %s:\t%s\t%s\n\n"
2954 (if (equal funckind "c") "Command" "Variable")
2955 funcname keys))
2956 (princ funcdoc)
2957 (terpri)
2958 (setq start end))
2959 (princ (substitute-command-keys (substring str start))))
2960 (print-help-return-message)))
2961
2962(defun py-describe-mode ()
2963 "Dump long form of Python-mode docs."
2964 (interactive)
2965 (py-dump-help-string "Major mode for editing Python files.
2966Knows about Python indentation, tokens, comments and continuation lines.
2967Paragraphs are separated by blank lines only.
2968
2969Major sections below begin with the string `@'; specific function and
2970variable docs begin with `->'.
2971
2972@EXECUTING PYTHON CODE
2973
Barry Warsaw820273d1998-05-19 15:54:45 +00002974\\[py-execute-import-or-reload]\timports or reloads the file in the Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002975\\[py-execute-buffer]\tsends the entire buffer to the Python interpreter
2976\\[py-execute-region]\tsends the current region
Barry Warsaw820273d1998-05-19 15:54:45 +00002977\\[py-execute-def-or-class]\tsends the current function or class definition
2978\\[py-execute-string]\tsends an arbitrary string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002979\\[py-shell]\tstarts a Python interpreter window; this will be used by
Barry Warsaw820273d1998-05-19 15:54:45 +00002980\tsubsequent Python execution commands
2981%c:py-execute-import-or-reload
Barry Warsaw7ae77681994-12-12 20:38:05 +00002982%c:py-execute-buffer
2983%c:py-execute-region
Barry Warsaw820273d1998-05-19 15:54:45 +00002984%c:py-execute-def-or-class
2985%c:py-execute-string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002986%c:py-shell
2987
2988@VARIABLES
2989
2990py-indent-offset\tindentation increment
Barry Warsaw42f707f1996-07-29 21:05:05 +00002991py-block-comment-prefix\tcomment string used by comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002992
2993py-python-command\tshell command to invoke Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002994py-temp-directory\tdirectory used for temp files (if needed)
2995
2996py-beep-if-tab-change\tring the bell if tab-width is changed
2997%v:py-indent-offset
2998%v:py-block-comment-prefix
2999%v:py-python-command
Barry Warsaw7ae77681994-12-12 20:38:05 +00003000%v:py-temp-directory
3001%v:py-beep-if-tab-change
3002
3003@KINDS OF LINES
3004
3005Each physical line in the file is either a `continuation line' (the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003006preceding line ends with a backslash that's not part of a comment, or
3007the paren/bracket/brace nesting level at the start of the line is
3008non-zero, or both) or an `initial line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00003009
3010An initial line is in turn a `blank line' (contains nothing except
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003011possibly blanks or tabs), a `comment line' (leftmost non-blank
3012character is `#'), or a `code line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00003013
3014Comment Lines
3015
3016Although all comment lines are treated alike by Python, Python mode
3017recognizes two kinds that act differently with respect to indentation.
3018
3019An `indenting comment line' is a comment line with a blank, tab or
3020nothing after the initial `#'. The indentation commands (see below)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003021treat these exactly as if they were code lines: a line following an
Barry Warsaw7ae77681994-12-12 20:38:05 +00003022indenting comment line will be indented like the comment line. All
3023other comment lines (those with a non-whitespace character immediately
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003024following the initial `#') are `non-indenting comment lines', and
3025their indentation is ignored by the indentation commands.
Barry Warsaw7ae77681994-12-12 20:38:05 +00003026
3027Indenting comment lines are by far the usual case, and should be used
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003028whenever possible. Non-indenting comment lines are useful in cases
3029like these:
Barry Warsaw7ae77681994-12-12 20:38:05 +00003030
3031\ta = b # a very wordy single-line comment that ends up being
3032\t #... continued onto another line
3033
3034\tif a == b:
3035##\t\tprint 'panic!' # old code we've `commented out'
3036\t\treturn a
3037
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003038Since the `#...' and `##' comment lines have a non-whitespace
3039character following the initial `#', Python mode ignores them when
3040computing the proper indentation for the next line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00003041
3042Continuation Lines and Statements
3043
3044The Python-mode commands generally work on statements instead of on
3045individual lines, where a `statement' is a comment or blank line, or a
3046code line and all of its following continuation lines (if any)
3047considered as a single logical unit. The commands in this mode
3048generally (when it makes sense) automatically move to the start of the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003049statement containing point, even if point happens to be in the middle
3050of some continuation line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00003051
3052
3053@INDENTATION
3054
3055Primarily for entering new code:
3056\t\\[indent-for-tab-command]\t indent line appropriately
3057\t\\[py-newline-and-indent]\t insert newline, then indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00003058\t\\[py-electric-backspace]\t reduce indentation, or delete single character
Barry Warsaw7ae77681994-12-12 20:38:05 +00003059
3060Primarily for reindenting existing code:
3061\t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally
3062\t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally
3063
3064\t\\[py-indent-region]\t reindent region to match its context
3065\t\\[py-shift-region-left]\t shift region left by py-indent-offset
3066\t\\[py-shift-region-right]\t shift region right by py-indent-offset
3067
3068Unlike most programming languages, Python uses indentation, and only
3069indentation, to specify block structure. Hence the indentation supplied
3070automatically by Python-mode is just an educated guess: only you know
3071the block structure you intend, so only you can supply correct
3072indentation.
3073
3074The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on
3075the indentation of preceding statements. E.g., assuming
3076py-indent-offset is 4, after you enter
3077\tif a > 0: \\[py-newline-and-indent]
3078the cursor will be moved to the position of the `_' (_ is not a
3079character in the file, it's just used here to indicate the location of
3080the cursor):
3081\tif a > 0:
3082\t _
3083If you then enter `c = d' \\[py-newline-and-indent], the cursor will move
3084to
3085\tif a > 0:
3086\t c = d
3087\t _
3088Python-mode cannot know whether that's what you intended, or whether
3089\tif a > 0:
3090\t c = d
3091\t_
3092was your intent. In general, Python-mode either reproduces the
3093indentation of the (closest code or indenting-comment) preceding
3094statement, or adds an extra py-indent-offset blanks if the preceding
3095statement has `:' as its last significant (non-whitespace and non-
3096comment) character. If the suggested indentation is too much, use
Barry Warsaw27ee1151997-12-03 05:03:44 +00003097\\[py-electric-backspace] to reduce it.
Barry Warsaw7ae77681994-12-12 20:38:05 +00003098
3099Continuation lines are given extra indentation. If you don't like the
3100suggested indentation, change it to something you do like, and Python-
3101mode will strive to indent later lines of the statement in the same way.
3102
3103If a line is a continuation line by virtue of being in an unclosed
3104paren/bracket/brace structure (`list', for short), the suggested
3105indentation depends on whether the current line contains the first item
3106in the list. If it does, it's indented py-indent-offset columns beyond
3107the indentation of the line containing the open bracket. If you don't
3108like that, change it by hand. The remaining items in the list will mimic
3109whatever indentation you give to the first item.
3110
3111If a line is a continuation line because the line preceding it ends with
3112a backslash, the third and following lines of the statement inherit their
3113indentation from the line preceding them. The indentation of the second
3114line in the statement depends on the form of the first (base) line: if
3115the base line is an assignment statement with anything more interesting
3116than the backslash following the leftmost assigning `=', the second line
3117is indented two columns beyond that `='. Else it's indented to two
3118columns beyond the leftmost solid chunk of non-whitespace characters on
3119the base line.
3120
3121Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command]
3122repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block
3123structure you intend.
3124%c:indent-for-tab-command
3125%c:py-newline-and-indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00003126%c:py-electric-backspace
Barry Warsaw7ae77681994-12-12 20:38:05 +00003127
3128
3129The next function may be handy when editing code you didn't write:
3130%c:py-guess-indent-offset
3131
3132
3133The remaining `indent' functions apply to a region of Python code. They
3134assume the block structure (equals indentation, in Python) of the region
3135is correct, and alter the indentation in various ways while preserving
3136the block structure:
3137%c:py-indent-region
3138%c:py-shift-region-left
3139%c:py-shift-region-right
3140
3141@MARKING & MANIPULATING REGIONS OF CODE
3142
3143\\[py-mark-block]\t mark block of lines
Barry Warsaw2518c671997-11-05 00:51:08 +00003144\\[py-mark-def-or-class]\t mark smallest enclosing def
3145\\[universal-argument] \\[py-mark-def-or-class]\t mark smallest enclosing class
Barry Warsaw42f707f1996-07-29 21:05:05 +00003146\\[comment-region]\t comment out region of code
3147\\[universal-argument] \\[comment-region]\t uncomment region of code
Barry Warsaw7ae77681994-12-12 20:38:05 +00003148%c:py-mark-block
Barry Warsaw2518c671997-11-05 00:51:08 +00003149%c:py-mark-def-or-class
Barry Warsaw42f707f1996-07-29 21:05:05 +00003150%c:comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00003151
3152@MOVING POINT
3153
3154\\[py-previous-statement]\t move to statement preceding point
3155\\[py-next-statement]\t move to statement following point
3156\\[py-goto-block-up]\t move up to start of current block
Barry Warsawab0e86c1998-05-19 15:31:46 +00003157\\[py-beginning-of-def-or-class]\t move to start of def
3158\\[universal-argument] \\[py-beginning-of-def-or-class]\t move to start of class
3159\\[py-end-of-def-or-class]\t move to end of def
3160\\[universal-argument] \\[py-end-of-def-or-class]\t move to end of class
Barry Warsaw7ae77681994-12-12 20:38:05 +00003161
3162The first two move to one statement beyond the statement that contains
3163point. A numeric prefix argument tells them to move that many
3164statements instead. Blank lines, comment lines, and continuation lines
3165do not count as `statements' for these commands. So, e.g., you can go
3166to the first code statement in a file by entering
3167\t\\[beginning-of-buffer]\t to move to the top of the file
3168\t\\[py-next-statement]\t to skip over initial comments and blank lines
3169Or do `\\[py-previous-statement]' with a huge prefix argument.
3170%c:py-previous-statement
3171%c:py-next-statement
3172%c:py-goto-block-up
Barry Warsawab0e86c1998-05-19 15:31:46 +00003173%c:py-beginning-of-def-or-class
3174%c:py-end-of-def-or-class
Barry Warsaw7ae77681994-12-12 20:38:05 +00003175
3176@LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE
3177
3178`\\[indent-new-comment-line]' is handy for entering a multi-line comment.
3179
3180`\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the
3181overall class and def structure of a module.
3182
3183`\\[back-to-indentation]' moves point to a line's first non-blank character.
3184
3185`\\[indent-relative]' is handy for creating odd indentation.
3186
3187@OTHER EMACS HINTS
3188
3189If you don't like the default value of a variable, change its value to
3190whatever you do like by putting a `setq' line in your .emacs file.
3191E.g., to set the indentation increment to 4, put this line in your
3192.emacs:
3193\t(setq py-indent-offset 4)
3194To see the value of a variable, do `\\[describe-variable]' and enter the variable
3195name at the prompt.
3196
3197When entering a key sequence like `C-c C-n', it is not necessary to
3198release the CONTROL key after doing the `C-c' part -- it suffices to
3199press the CONTROL key, press and release `c' (while still holding down
3200CONTROL), press and release `n' (while still holding down CONTROL), &
3201then release CONTROL.
3202
3203Entering Python mode calls with no arguments the value of the variable
3204`python-mode-hook', if that value exists and is not nil; for backward
3205compatibility it also tries `py-mode-hook'; see the `Hooks' section of
3206the Elisp manual for details.
3207
3208Obscure: When python-mode is first loaded, it looks for all bindings
3209to newline-and-indent in the global keymap, and shadows them with
3210local bindings to py-newline-and-indent."))
3211
Barry Warsaw56bd2ed2002-04-25 15:44:17 +00003212(require 'info-look)
Barry Warsaw5dfc7af2002-04-30 18:58:52 +00003213;; The info-look package does not always provide this function (it
3214;; appears this is the case with XEmacs 21.1)
3215(when (fboundp 'info-lookup-maybe-add-help)
3216 (info-lookup-maybe-add-help
3217 :mode 'python-mode
3218 :regexp "[a-zA-Z0-9_]+"
3219 :doc-spec '(("(python-lib)Module Index")
3220 ("(python-lib)Class-Exception-Object Index")
3221 ("(python-lib)Function-Method-Variable Index")
3222 ("(python-lib)Miscellaneous Index")))
3223 )
Barry Warsaw56bd2ed2002-04-25 15:44:17 +00003224
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003225
3226;; Helper functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00003227(defvar py-parse-state-re
3228 (concat
Barry Warsaw644991f2002-10-21 15:58:29 +00003229 "^[ \t]*\\(elif\\|else\\|while\\|def\\|class\\)\\>"
Barry Warsaw7ae77681994-12-12 20:38:05 +00003230 "\\|"
3231 "^[^ #\t\n]"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003232
Barry Warsaw7ae77681994-12-12 20:38:05 +00003233(defun py-parse-state ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003234 "Return the parse state at point (see `parse-partial-sexp' docs)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003235 (save-excursion
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00003236 (let ((here (point))
Barry Warsawb2d5e622002-04-22 15:29:27 +00003237 pps done)
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00003238 (while (not done)
3239 ;; back up to the first preceding line (if any; else start of
3240 ;; buffer) that begins with a popular Python keyword, or a
3241 ;; non- whitespace and non-comment character. These are good
3242 ;; places to start parsing to see whether where we started is
3243 ;; at a non-zero nesting level. It may be slow for people who
3244 ;; write huge code blocks or huge lists ... tough beans.
3245 (re-search-backward py-parse-state-re nil 'move)
3246 (beginning-of-line)
Barry Warsawf64b4051998-02-12 16:52:14 +00003247 ;; In XEmacs, we have a much better way to test for whether
3248 ;; we're in a triple-quoted string or not. Emacs does not
Barry Warsaw145ab1c1998-05-19 14:49:49 +00003249 ;; have this built-in function, which is its loss because
Barry Warsawf64b4051998-02-12 16:52:14 +00003250 ;; without scanning from the beginning of the buffer, there's
3251 ;; no accurate way to determine this otherwise.
Barry Warsawb2d5e622002-04-22 15:29:27 +00003252 (save-excursion (setq pps (parse-partial-sexp (point) here)))
3253 ;; make sure we don't land inside a triple-quoted string
3254 (setq done (or (not (nth 3 pps))
3255 (bobp)))
3256 ;; Just go ahead and short circuit the test back to the
3257 ;; beginning of the buffer. This will be slow, but not
3258 ;; nearly as slow as looping through many
3259 ;; re-search-backwards.
3260 (if (not done)
3261 (goto-char (point-min))))
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00003262 pps)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003263
Barry Warsaw7ae77681994-12-12 20:38:05 +00003264(defun py-nesting-level ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003265 "Return the buffer position of the last unclosed enclosing list.
3266If nesting level is zero, return nil."
Barry Warsawf64b4051998-02-12 16:52:14 +00003267 (let ((status (py-parse-state)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003268 (if (zerop (car status))
3269 nil ; not in a nest
3270 (car (cdr status))))) ; char# of open bracket
3271
Barry Warsaw7ae77681994-12-12 20:38:05 +00003272(defun py-backslash-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003273 "Return t iff preceding line ends with backslash that is not in a comment."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003274 (save-excursion
3275 (beginning-of-line)
3276 (and
3277 ;; use a cheap test first to avoid the regexp if possible
3278 ;; use 'eq' because char-after may return nil
3279 (eq (char-after (- (point) 2)) ?\\ )
3280 ;; make sure; since eq test passed, there is a preceding line
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003281 (forward-line -1) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00003282 (looking-at py-continued-re))))
3283
Barry Warsaw7ae77681994-12-12 20:38:05 +00003284(defun py-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003285 "Return t iff current line is a continuation line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003286 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003287 (beginning-of-line)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003288 (or (py-backslash-continuation-line-p)
3289 (py-nesting-level))))
3290
Barry Warsaw9c1696c1998-12-15 04:36:22 +00003291(defun py-goto-beginning-of-tqs (delim)
3292 "Go to the beginning of the triple quoted string we find ourselves in.
3293DELIM is the TQS string delimiter character we're searching backwards
3294for."
Barry Warsaw3c34bb32000-10-27 05:00:25 +00003295 (let ((skip (and delim (make-string 1 delim)))
3296 (continue t))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00003297 (when skip
3298 (save-excursion
Barry Warsaw3c34bb32000-10-27 05:00:25 +00003299 (while continue
3300 (py-safe (search-backward skip))
3301 (setq continue (and (not (bobp))
3302 (= (char-before) ?\\))))
3303 (if (and (= (char-before) delim)
3304 (= (char-before (1- (point))) delim))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00003305 (setq skip (make-string 3 delim))))
3306 ;; we're looking at a triple-quoted string
3307 (py-safe (search-backward skip)))))
3308
Barry Warsaw7ae77681994-12-12 20:38:05 +00003309(defun py-goto-initial-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003310 "Go to the initial line of the current statement.
3311Usually this is the line we're on, but if we're on the 2nd or
3312following lines of a continuation block, we need to go up to the first
3313line of the block."
3314 ;; Tricky: We want to avoid quadratic-time behavior for long
3315 ;; continued blocks, whether of the backslash or open-bracket
3316 ;; varieties, or a mix of the two. The following manages to do that
3317 ;; in the usual cases.
3318 ;;
3319 ;; Also, if we're sitting inside a triple quoted string, this will
3320 ;; drop us at the line that begins the string.
Barry Warsaw9ec9fbc1998-01-21 05:15:57 +00003321 (let (open-bracket-pos)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003322 (while (py-continuation-line-p)
3323 (beginning-of-line)
3324 (if (py-backslash-continuation-line-p)
3325 (while (py-backslash-continuation-line-p)
3326 (forward-line -1))
3327 ;; else zip out of nested brackets/braces/parens
3328 (while (setq open-bracket-pos (py-nesting-level))
3329 (goto-char open-bracket-pos)))))
3330 (beginning-of-line))
3331
Barry Warsaw7ae77681994-12-12 20:38:05 +00003332(defun py-goto-beyond-final-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003333 "Go to the point just beyond the fine line of the current statement.
3334Usually this is the start of the next line, but if this is a
3335multi-line statement we need to skip over the continuation lines."
3336 ;; Tricky: Again we need to be clever to avoid quadratic time
3337 ;; behavior.
3338 ;;
3339 ;; XXX: Not quite the right solution, but deals with multi-line doc
3340 ;; strings
Barry Warsaw751f4931998-05-19 16:06:21 +00003341 (if (looking-at (concat "[ \t]*\\(" py-stringlit-re "\\)"))
3342 (goto-char (match-end 0)))
3343 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +00003344 (forward-line 1)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003345 (let (state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003346 (while (and (py-continuation-line-p)
3347 (not (eobp)))
3348 ;; skip over the backslash flavor
3349 (while (and (py-backslash-continuation-line-p)
3350 (not (eobp)))
3351 (forward-line 1))
3352 ;; if in nest, zip to the end of the nest
3353 (setq state (py-parse-state))
3354 (if (and (not (zerop (car state)))
3355 (not (eobp)))
3356 (progn
Barry Warsawaffc0ca1997-11-03 16:59:38 +00003357 (parse-partial-sexp (point) (point-max) 0 nil state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003358 (forward-line 1))))))
3359
Barry Warsaw7ae77681994-12-12 20:38:05 +00003360(defun py-statement-opens-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003361 "Return t iff the current statement opens a block.
3362I.e., iff it ends with a colon that is not in a comment. Point should
3363be at the start of a statement."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003364 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003365 (let ((start (point))
3366 (finish (progn (py-goto-beyond-final-line) (1- (point))))
3367 (searching t)
3368 (answer nil)
3369 state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003370 (goto-char start)
3371 (while searching
3372 ;; look for a colon with nothing after it except whitespace, and
3373 ;; maybe a comment
3374 (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$"
3375 finish t)
3376 (if (eq (point) finish) ; note: no `else' clause; just
3377 ; keep searching if we're not at
3378 ; the end yet
3379 ;; sure looks like it opens a block -- but it might
3380 ;; be in a comment
3381 (progn
3382 (setq searching nil) ; search is done either way
3383 (setq state (parse-partial-sexp start
3384 (match-beginning 0)))
3385 (setq answer (not (nth 4 state)))))
3386 ;; search failed: couldn't find another interesting colon
3387 (setq searching nil)))
3388 answer)))
3389
Barry Warsawf831d811996-07-31 20:42:59 +00003390(defun py-statement-closes-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003391 "Return t iff the current statement closes a block.
3392I.e., if the line starts with `return', `raise', `break', `continue',
3393and `pass'. This doesn't catch embedded statements."
Barry Warsawf831d811996-07-31 20:42:59 +00003394 (let ((here (point)))
Barry Warsawa8f99ba1999-05-24 18:37:57 +00003395 (py-goto-initial-line)
Barry Warsawc0d2d511999-06-03 22:18:59 +00003396 (back-to-indentation)
Barry Warsawf831d811996-07-31 20:42:59 +00003397 (prog1
Barry Warsawaffc0ca1997-11-03 16:59:38 +00003398 (looking-at (concat py-block-closing-keywords-re "\\>"))
Barry Warsawf831d811996-07-31 20:42:59 +00003399 (goto-char here))))
3400
Barry Warsaw7ae77681994-12-12 20:38:05 +00003401(defun py-goto-beyond-block ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003402 "Go to point just beyond the final line of block begun by the current line.
3403This is the same as where `py-goto-beyond-final-line' goes unless
3404we're on colon line, in which case we go to the end of the block.
3405Assumes point is at the beginning of the line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003406 (if (py-statement-opens-block-p)
3407 (py-mark-block nil 'just-move)
3408 (py-goto-beyond-final-line)))
3409
Barry Warsaw7ae77681994-12-12 20:38:05 +00003410(defun py-goto-statement-at-or-above ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003411 "Go to the start of the first statement at or preceding point.
3412Return t if there is such a statement, otherwise nil. `Statement'
3413does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003414 (py-goto-initial-line)
3415 (if (looking-at py-blank-or-comment-re)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003416 ;; skip back over blank & comment lines
3417 ;; note: will skip a blank or comment line that happens to be
3418 ;; a continuation line too
3419 (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t)
3420 (progn (py-goto-initial-line) t)
3421 nil)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003422 t))
3423
Barry Warsaw7ae77681994-12-12 20:38:05 +00003424(defun py-goto-statement-below ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003425 "Go to start of the first statement following the statement containing point.
3426Return t if there is such a statement, otherwise nil. `Statement'
3427does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003428 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003429 (let ((start (point)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003430 (py-goto-beyond-final-line)
3431 (while (and
Barry Warsawf070cce2002-05-23 19:42:16 +00003432 (or (looking-at py-blank-or-comment-re)
3433 (py-in-literal))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003434 (not (eobp)))
3435 (forward-line 1))
3436 (if (eobp)
3437 (progn (goto-char start) nil)
3438 t)))
3439
Barry Warsaw7ae77681994-12-12 20:38:05 +00003440(defun py-go-up-tree-to-keyword (key)
Barry Warsaw41a05c71998-08-10 16:33:12 +00003441 "Go to begining of statement starting with KEY, at or preceding point.
3442
3443KEY is a regular expression describing a Python keyword. Skip blank
3444lines and non-indenting comments. If the statement found starts with
3445KEY, then stop, otherwise go back to first enclosing block starting
3446with KEY. If successful, leave point at the start of the KEY line and
3447return t. Otherwise, leav point at an undefined place and return nil."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003448 ;; skip blanks and non-indenting #
3449 (py-goto-initial-line)
3450 (while (and
3451 (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
3452 (zerop (forward-line -1))) ; go back
3453 nil)
3454 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003455 (let* ((re (concat "[ \t]*" key "\\b"))
3456 (case-fold-search nil) ; let* so looking-at sees this
3457 (found (looking-at re))
3458 (dead nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003459 (while (not (or found dead))
3460 (condition-case nil ; in case no enclosing block
3461 (py-goto-block-up 'no-mark)
3462 (error (setq dead t)))
3463 (or dead (setq found (looking-at re))))
3464 (beginning-of-line)
3465 found))
3466
Barry Warsaw7ae77681994-12-12 20:38:05 +00003467(defun py-suck-up-leading-text ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003468 "Return string in buffer from start of indentation to end of line.
3469Prefix with \"...\" if leading whitespace was skipped."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003470 (save-excursion
3471 (back-to-indentation)
3472 (concat
3473 (if (bolp) "" "...")
3474 (buffer-substring (point) (progn (end-of-line) (point))))))
3475
Barry Warsaw7ae77681994-12-12 20:38:05 +00003476(defun py-suck-up-first-keyword ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003477 "Return first keyword on the line as a Lisp symbol.
3478`Keyword' is defined (essentially) as the regular expression
3479([a-z]+). Returns nil if none was found."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003480 (let ((case-fold-search nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003481 (if (looking-at "[ \t]*\\([a-z]+\\)\\b")
3482 (intern (buffer-substring (match-beginning 1) (match-end 1)))
3483 nil)))
3484
Barry Warsawb3e81d51996-09-04 15:12:42 +00003485(defun py-current-defun ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003486 "Python value for `add-log-current-defun-function'.
3487This tells add-log.el how to find the current function/method/variable."
Barry Warsawb3e81d51996-09-04 15:12:42 +00003488 (save-excursion
3489 (if (re-search-backward py-defun-start-re nil t)
3490 (or (match-string 3)
3491 (let ((method (match-string 2)))
3492 (if (and (not (zerop (length (match-string 1))))
3493 (re-search-backward py-class-start-re nil t))
3494 (concat (match-string 1) "." method)
3495 method)))
3496 nil)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003497
3498
Barry Warsawfec75d61995-07-05 23:26:15 +00003499(defconst py-help-address "python-mode@python.org"
Barry Warsaw850437a1995-03-08 21:50:28 +00003500 "Address accepting submission of bug reports.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003501
Barry Warsaw850437a1995-03-08 21:50:28 +00003502(defun py-version ()
3503 "Echo the current version of `python-mode' in the minibuffer."
3504 (interactive)
3505 (message "Using `python-mode' version %s" py-version)
3506 (py-keep-region-active))
3507
3508;; only works under Emacs 19
3509;(eval-when-compile
3510; (require 'reporter))
3511
3512(defun py-submit-bug-report (enhancement-p)
3513 "Submit via mail a bug report on `python-mode'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00003514With \\[universal-argument] (programmatically, argument ENHANCEMENT-P
3515non-nil) just submit an enhancement request."
Barry Warsaw850437a1995-03-08 21:50:28 +00003516 (interactive
3517 (list (not (y-or-n-p
Barry Warsaw41a05c71998-08-10 16:33:12 +00003518 "Is this a bug report (hit `n' to send other comments)? "))))
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003519 (let ((reporter-prompt-for-summary-p (if enhancement-p
3520 "(Very) brief summary: "
3521 t)))
Barry Warsaw850437a1995-03-08 21:50:28 +00003522 (require 'reporter)
3523 (reporter-submit-bug-report
3524 py-help-address ;address
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003525 (concat "python-mode " py-version) ;pkgname
Barry Warsaw850437a1995-03-08 21:50:28 +00003526 ;; varlist
3527 (if enhancement-p nil
3528 '(py-python-command
3529 py-indent-offset
3530 py-block-comment-prefix
Barry Warsaw850437a1995-03-08 21:50:28 +00003531 py-temp-directory
3532 py-beep-if-tab-change))
3533 nil ;pre-hooks
3534 nil ;post-hooks
3535 "Dear Barry,") ;salutation
3536 (if enhancement-p nil
3537 (set-mark (point))
3538 (insert
3539"Please replace this text with a sufficiently large code sample\n\
3540and an exact recipe so that I can reproduce your problem. Failure\n\
3541to do so may mean a greater delay in fixing your bug.\n\n")
3542 (exchange-point-and-mark)
3543 (py-keep-region-active))))
3544
3545
Barry Warsaw47384781997-11-26 05:27:45 +00003546(defun py-kill-emacs-hook ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003547 "Delete files in `py-file-queue'.
3548These are Python temporary files awaiting execution."
Barry Warsaw47384781997-11-26 05:27:45 +00003549 (mapcar #'(lambda (filename)
3550 (py-safe (delete-file filename)))
3551 py-file-queue))
3552
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003553;; arrange to kill temp files when Emacs exists
Barry Warsawc72c11c1997-08-09 06:42:08 +00003554(add-hook 'kill-emacs-hook 'py-kill-emacs-hook)
Barry Warsaw4f577d22001-04-11 20:23:17 +00003555(add-hook 'comint-output-filter-functions 'py-pdbtrack-track-stack-file)
3556
3557;; Add a designator to the minor mode strings
3558(or (assq 'py-pdbtrack-minor-mode-string minor-mode-alist)
3559 (push '(py-pdbtrack-is-tracking-p py-pdbtrack-minor-mode-string)
3560 minor-mode-alist))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003561
3562
3563
Skip Montanaro6c5bc342002-12-31 16:56:20 +00003564;;; paragraph and string filling code from Bernhard Herzog
3565;;; see http://mail.python.org/pipermail/python-list/2002-May/103189.html
3566
3567(defun py-fill-comment (&optional justify)
3568 "Fill the comment paragraph around point"
3569 (let (;; Non-nil if the current line contains a comment.
3570 has-comment
3571
3572 ;; If has-comment, the appropriate fill-prefix for the comment.
3573 comment-fill-prefix)
3574
3575 ;; Figure out what kind of comment we are looking at.
3576 (save-excursion
3577 (beginning-of-line)
3578 (cond
3579 ;; A line with nothing but a comment on it?
3580 ((looking-at "[ \t]*#[# \t]*")
3581 (setq has-comment t
3582 comment-fill-prefix (buffer-substring (match-beginning 0)
3583 (match-end 0))))
3584
3585 ;; A line with some code, followed by a comment? Remember that the hash
3586 ;; which starts the comment shouldn't be part of a string or character.
3587 ((progn
3588 (while (not (looking-at "#\\|$"))
3589 (skip-chars-forward "^#\n\"'\\")
3590 (cond
3591 ((eq (char-after (point)) ?\\) (forward-char 2))
3592 ((memq (char-after (point)) '(?\" ?')) (forward-sexp 1))))
3593 (looking-at "#+[\t ]*"))
3594 (setq has-comment t)
3595 (setq comment-fill-prefix
3596 (concat (make-string (current-column) ? )
3597 (buffer-substring (match-beginning 0) (match-end 0)))))))
3598
3599 (if (not has-comment)
3600 (fill-paragraph justify)
3601
3602 ;; Narrow to include only the comment, and then fill the region.
3603 (save-restriction
3604 (narrow-to-region
3605
3606 ;; Find the first line we should include in the region to fill.
3607 (save-excursion
3608 (while (and (zerop (forward-line -1))
3609 (looking-at "^[ \t]*#")))
3610
3611 ;; We may have gone to far. Go forward again.
3612 (or (looking-at "^[ \t]*#")
3613 (forward-line 1))
3614 (point))
3615
3616 ;; Find the beginning of the first line past the region to fill.
3617 (save-excursion
3618 (while (progn (forward-line 1)
3619 (looking-at "^[ \t]*#")))
3620 (point)))
3621
3622 ;; Lines with only hashes on them can be paragraph boundaries.
3623 (let ((paragraph-start (concat paragraph-start "\\|[ \t#]*$"))
3624 (paragraph-separate (concat paragraph-separate "\\|[ \t#]*$"))
3625 (fill-prefix comment-fill-prefix))
3626 ;;(message "paragraph-start %S paragraph-separate %S"
3627 ;;paragraph-start paragraph-separate)
3628 (fill-paragraph justify))))
3629 t))
3630
3631
3632(defun py-fill-string (start &optional justify)
3633 "Fill the paragraph around (point) in the string starting at start"
3634 ;; basic strategy: narrow to the string and call the default
3635 ;; implementation
3636 (let (;; the start of the string's contents
3637 string-start
3638 ;; the end of the string's contents
3639 string-end
3640 ;; length of the string's delimiter
3641 delim-length
3642 ;; The string delimiter
3643 delim
3644 )
3645
3646 (save-excursion
3647 (goto-char start)
3648 (if (looking-at "\\('''\\|\"\"\"\\|'\\|\"\\)\\\\?\n?")
3649 (setq string-start (match-end 0)
3650 delim-length (- (match-end 1) (match-beginning 1))
3651 delim (buffer-substring-no-properties (match-beginning 1)
3652 (match-end 1)))
3653 (error "The parameter start is not the beginning of a python string"))
3654
3655 ;; if the string is the first token on a line and doesn't start with
3656 ;; a newline, fill as if the string starts at the beginning of the
3657 ;; line. this helps with one line docstrings
3658 (save-excursion
3659 (beginning-of-line)
3660 (and (/= (char-before string-start) ?\n)
3661 (looking-at (concat "[ \t]*" delim))
3662 (setq string-start (point))))
3663
3664 (forward-sexp (if (= delim-length 3) 2 1))
3665
3666 ;; with both triple quoted strings and single/double quoted strings
3667 ;; we're now directly behind the first char of the end delimiter
3668 ;; (this doesn't work correctly when the triple quoted string
3669 ;; contains the quote mark itself). The end of the string's contents
3670 ;; is one less than point
3671 (setq string-end (1- (point))))
3672
3673 ;; Narrow to the string's contents and fill the current paragraph
3674 (save-restriction
3675 (narrow-to-region string-start string-end)
3676 (let ((ends-with-newline (= (char-before (point-max)) ?\n)))
3677 (fill-paragraph justify)
3678 (if (and (not ends-with-newline)
3679 (= (char-before (point-max)) ?\n))
3680 ;; the default fill-paragraph implementation has inserted a
3681 ;; newline at the end. Remove it again.
3682 (save-excursion
3683 (goto-char (point-max))
3684 (delete-char -1)))))
3685
3686 ;; return t to indicate that we've done our work
3687 t))
3688
3689(defun py-fill-paragraph (&optional justify)
3690 "Like \\[fill-paragraph], but handle Python comments and strings.
3691If any of the current line is a comment, fill the comment or the
3692paragraph of it that point is in, preserving the comment's indentation
3693and initial `#'s.
3694If point is inside a string, narrow to that string and fill.
3695"
3696 (interactive "P")
3697 (let* ((bod (py-point 'bod))
3698 (pps (parse-partial-sexp bod (point))))
3699 (cond
3700 ;; are we inside a comment or on a line with only whitespace before
3701 ;; the comment start?
3702 ((or (nth 4 pps)
3703 (save-excursion (beginning-of-line) (looking-at "[ \t]*#")))
3704 (py-fill-comment justify))
3705 ;; are we inside a string?
3706 ((nth 3 pps)
3707 (py-fill-string (nth 2 pps)))
3708 ;; otherwise use the default
3709 (t
3710 (fill-paragraph justify)))))
3711
3712
3713
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003714(provide 'python-mode)
3715;;; python-mode.el ends here