blob: 9e78579127578bce782e4bfc04a73b55e577ef68 [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 Warsawc72c11c1997-08-09 06:42:08 +000062
Barry Warsaw7b0f5681995-03-08 21:33:04 +000063
64;; user definable variables
65;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
Barry Warsaw7ae77681994-12-12 20:38:05 +000066
Barry Warsawc72c11c1997-08-09 06:42:08 +000067(defgroup python nil
68 "Support for the Python programming language, <http://www.python.org/>"
Barry Warsaw5ed843f1999-07-28 22:06:06 +000069 :group 'languages
70 :prefix "py-")
Barry Warsaw7ae77681994-12-12 20:38:05 +000071
Barry Warsawc72c11c1997-08-09 06:42:08 +000072(defcustom py-python-command "python"
73 "*Shell command used to start Python interpreter."
74 :type 'string
75 :group 'python)
76
Barry Warsawa2398801998-04-09 23:28:20 +000077(defcustom py-jpython-command "jpython"
78 "*Shell command used to start the JPython interpreter."
79 :type 'string
Barry Warsaw5ed843f1999-07-28 22:06:06 +000080 :group 'python
81 :tag "JPython Command")
Barry Warsawa2398801998-04-09 23:28:20 +000082
Barry Warsawaa384fd1999-02-16 23:36:16 +000083(defcustom py-default-interpreter 'cpython
84 "*Which Python interpreter is used by default.
85The value for this variable can be either `cpython' or `jpython'.
86
87When the value is `cpython', the variables `py-python-command' and
88`py-python-command-args' are consulted to determine the interpreter
89and arguments to use.
90
91When the value is `jpython', the variables `py-jpython-command' and
92`py-jpython-command-args' are consulted to determine the interpreter
93and arguments to use.
94
Barry Warsaw11f21561999-07-28 21:59:43 +000095Note that this variable is consulted only the first time that a Python
96mode buffer is visited during an Emacs session. After that, use
Barry Warsawaa384fd1999-02-16 23:36:16 +000097\\[py-toggle-shells] to change the interpreter shell."
98 :type '(choice (const :tag "Python (a.k.a. CPython)" cpython)
99 (const :tag "JPython" jpython))
100 :group 'python)
101
Barry Warsaw8f972b71998-02-05 20:45:49 +0000102(defcustom py-python-command-args '("-i")
103 "*List of string arguments to be used when starting a Python shell."
104 :type '(repeat string)
105 :group 'python)
106
Barry Warsawa2398801998-04-09 23:28:20 +0000107(defcustom py-jpython-command-args '("-i")
108 "*List of string arguments to be used when starting a JPython shell."
109 :type '(repeat string)
Barry Warsaw5ed843f1999-07-28 22:06:06 +0000110 :group 'python
111 :tag "JPython Command Args")
Barry Warsawa2398801998-04-09 23:28:20 +0000112
Barry Warsawc72c11c1997-08-09 06:42:08 +0000113(defcustom py-indent-offset 4
Barry Warsaw41a05c71998-08-10 16:33:12 +0000114 "*Amount of offset per level of indentation.
115`\\[py-guess-indent-offset]' can usually guess a good value when
116you're editing someone else's Python code."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000117 :type 'integer
118 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000119
Barry Warsawfd4c9e82001-06-18 23:40:35 +0000120(defcustom py-continuation-offset 4
Barry Warsaw40fb4522001-07-06 20:07:13 +0000121 "*Additional amount of offset to give for some continuation lines.
Barry Warsawfd4c9e82001-06-18 23:40:35 +0000122Continuation lines are those that immediately follow a backslash
Barry Warsaw40fb4522001-07-06 20:07:13 +0000123terminated line. Only those continuation lines for a block opening
124statement are given this extra offset."
Barry Warsawfd4c9e82001-06-18 23:40:35 +0000125 :type 'integer
126 :group 'python)
127
Barry Warsaw742a5111998-03-13 17:29:15 +0000128(defcustom py-smart-indentation t
129 "*Should `python-mode' try to automagically set some indentation variables?
130When this variable is non-nil, two things happen when a buffer is set
131to `python-mode':
132
Barry Warsawc0d2d511999-06-03 22:18:59 +0000133 1. `py-indent-offset' is guessed from existing code in the buffer.
Barry Warsaw639eea61998-03-16 18:12:13 +0000134 Only guessed values between 2 and 8 are considered. If a valid
Barry Warsaw742a5111998-03-13 17:29:15 +0000135 guess can't be made (perhaps because you are visiting a new
Barry Warsaw639eea61998-03-16 18:12:13 +0000136 file), then the value in `py-indent-offset' is used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000137
Barry Warsaw639eea61998-03-16 18:12:13 +0000138 2. `indent-tabs-mode' is turned off if `py-indent-offset' does not
139 equal `tab-width' (`indent-tabs-mode' is never turned on by
140 Python mode). This means that for newly written code, tabs are
141 only inserted in indentation if one tab is one indentation
142 level, otherwise only spaces are used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000143
Barry Warsaw8046bef1998-03-13 20:04:52 +0000144Note that both these settings occur *after* `python-mode-hook' is run,
145so if you want to defeat the automagic configuration, you must also
146set `py-smart-indentation' to nil in your `python-mode-hook'."
Barry Warsaw742a5111998-03-13 17:29:15 +0000147 :type 'boolean
148 :group 'python)
149
Barry Warsawc72c11c1997-08-09 06:42:08 +0000150(defcustom py-align-multiline-strings-p t
151 "*Flag describing how multi-line triple quoted strings are aligned.
Barry Warsaw095e9c61995-09-19 20:01:42 +0000152When this flag is non-nil, continuation lines are lined up under the
153preceding line's indentation. When this flag is nil, continuation
Barry Warsawc72c11c1997-08-09 06:42:08 +0000154lines are aligned to column zero."
155 :type '(choice (const :tag "Align under preceding line" t)
156 (const :tag "Align to column zero" nil))
157 :group 'python)
Barry Warsaw095e9c61995-09-19 20:01:42 +0000158
Barry Warsaw218eb751998-09-22 19:51:47 +0000159(defcustom py-block-comment-prefix "##"
Barry Warsaw867a32a1996-03-07 18:30:26 +0000160 "*String used by \\[comment-region] to comment out a block of code.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000161This should follow the convention for non-indenting comment lines so
162that the indentation commands won't get confused (i.e., the string
163should be of the form `#x...' where `x' is not a blank or a tab, and
Barry Warsaw218eb751998-09-22 19:51:47 +0000164`...' is arbitrary). However, this string should not end in whitespace."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000165 :type 'string
166 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000167
Barry Warsawc72c11c1997-08-09 06:42:08 +0000168(defcustom py-honor-comment-indentation t
Barry Warsaw6d627751996-03-06 18:41:38 +0000169 "*Controls how comment lines influence subsequent indentation.
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000170
Barry Warsaw6d627751996-03-06 18:41:38 +0000171When nil, all comment lines are skipped for indentation purposes, and
Barry Warsawc72c11c1997-08-09 06:42:08 +0000172if possible, a faster algorithm is used (i.e. X/Emacs 19 and beyond).
Barry Warsaw6d627751996-03-06 18:41:38 +0000173
174When t, lines that begin with a single `#' are a hint to subsequent
175line indentation. If the previous line is such a comment line (as
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000176opposed to one that starts with `py-block-comment-prefix'), then its
Barry Warsaw6d627751996-03-06 18:41:38 +0000177indentation is used as a hint for this line's indentation. Lines that
178begin with `py-block-comment-prefix' are ignored for indentation
179purposes.
180
Barry Warsawd36cfe42002-03-15 16:46:46 +0000181When not nil or t, comment lines that begin with a single `#' are used
182as indentation hints, unless the comment character is in column zero."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000183 :type '(choice
184 (const :tag "Skip all comment lines (fast)" nil)
185 (const :tag "Single # `sets' indentation for next line" t)
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000186 (const :tag "Single # `sets' indentation except at column zero"
187 other)
Barry Warsawc72c11c1997-08-09 06:42:08 +0000188 )
189 :group 'python)
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000190
Barry Warsaw516b6201997-08-09 06:43:20 +0000191(defcustom py-temp-directory
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000192 (let ((ok '(lambda (x)
193 (and x
194 (setq x (expand-file-name x)) ; always true
195 (file-directory-p x)
196 (file-writable-p x)
197 x))))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000198 (or (funcall ok (getenv "TMPDIR"))
199 (funcall ok "/usr/tmp")
200 (funcall ok "/tmp")
Barry Warsawd1648372002-03-18 18:53:56 +0000201 (funcall ok "/var/tmp")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000202 (funcall ok ".")
203 (error
Barry Warsaw6c6db0a1998-02-25 16:33:56 +0000204 "Couldn't find a usable temp directory -- set `py-temp-directory'")))
Barry Warsawd1648372002-03-18 18:53:56 +0000205 "*Directory used for temporary files created by a *Python* process.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000206By default, the first directory from this list that exists and that you
Barry Warsawd1648372002-03-18 18:53:56 +0000207can write into: the value (if any) of the environment variable TMPDIR,
208/usr/tmp, /tmp, /var/tmp, or the current directory."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000209 :type 'string
210 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000211
Barry Warsaw516b6201997-08-09 06:43:20 +0000212(defcustom py-beep-if-tab-change t
Barry Warsaw41a05c71998-08-10 16:33:12 +0000213 "*Ring the bell if `tab-width' is changed.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000214If a comment of the form
215
216 \t# vi:set tabsize=<number>:
217
218is found before the first code line when the file is entered, and the
219current value of (the general Emacs variable) `tab-width' does not
220equal <number>, `tab-width' is set to <number>, a message saying so is
221displayed in the echo area, and if `py-beep-if-tab-change' is non-nil
Barry Warsawc72c11c1997-08-09 06:42:08 +0000222the Emacs bell is also rung as a warning."
223 :type 'boolean
224 :group 'python)
225
Barry Warsaw9981d221997-12-03 05:25:48 +0000226(defcustom py-jump-on-exception t
227 "*Jump to innermost exception frame in *Python Output* buffer.
Barry Warsaw12c92941998-08-10 21:44:37 +0000228When this variable is non-nil and an exception occurs when running
Barry Warsaw9981d221997-12-03 05:25:48 +0000229Python code synchronously in a subprocess, jump immediately to the
Barry Warsaw12c92941998-08-10 21:44:37 +0000230source code of the innermost traceback frame."
Barry Warsaw3bfed5b1998-05-19 16:25:04 +0000231 :type 'boolean
232 :group 'python)
233
234(defcustom py-ask-about-save t
235 "If not nil, ask about which buffers to save before executing some code.
236Otherwise, all modified buffers are saved without asking."
237 :type 'boolean
238 :group 'python)
Barry Warsaw9981d221997-12-03 05:25:48 +0000239
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000240(defcustom py-backspace-function 'backward-delete-char-untabify
241 "*Function called by `py-electric-backspace' when deleting backwards."
242 :type 'function
243 :group 'python)
244
245(defcustom py-delete-function 'delete-char
246 "*Function called by `py-electric-delete' when deleting forwards."
247 :type 'function
248 :group 'python)
249
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000250(defcustom py-imenu-show-method-args-p nil
251 "*Controls echoing of arguments of functions & methods in the Imenu buffer.
252When non-nil, arguments are printed."
253 :type 'boolean
254 :group 'python)
255(make-variable-buffer-local 'py-indent-offset)
256
Barry Warsaw4f577d22001-04-11 20:23:17 +0000257(defcustom py-pdbtrack-do-tracking-p t
258 "*Controls whether the pdbtrack feature is enabled or not.
259When non-nil, pdbtrack is enabled in all comint-based buffers,
260e.g. shell buffers and the *Python* buffer. When using pdb to debug a
261Python program, pdbtrack notices the pdb prompt and displays the
262source file and line that the program is stopped at, much the same way
263as gud-mode does for debugging C programs with gdb."
264 :type 'boolean
265 :group 'python)
266(make-variable-buffer-local 'py-pdbtrack-do-tracking-p)
267
268(defcustom py-pdbtrack-minor-mode-string " PDB"
269 "*String to use in the minor mode list when pdbtrack is enabled."
270 :type 'string
271 :group 'python)
272
Barry Warsaw88491612002-04-25 21:31:47 +0000273(defcustom py-import-check-point-max
274 20000
275 "Maximum number of characters to search for a Java-ish import statement.
276When `python-mode' tries to calculate the shell to use (either a
277CPython or a JPython shell), it looks at the so-called `shebang' line
278-- i.e. #! line. If that's not available, it looks at some of the
279file heading imports to see if they look Java-like."
280 :type 'integer
281 :group 'python
282 )
283
284(defcustom py-jpython-packages
285 '("java" "javax" "org" "com")
286 "Imported packages that imply `jpython-mode'."
287 :type '(repeat string)
288 :group 'python)
289
Barry Warsawc0ecb531998-01-20 21:43:34 +0000290;; Not customizable
291(defvar py-master-file nil
292 "If non-nil, execute the named file instead of the buffer's file.
Barry Warsaw50b3eb61998-02-25 15:57:47 +0000293The intent is to allow you to set this variable in the file's local
Barry Warsawc0ecb531998-01-20 21:43:34 +0000294variable section, e.g.:
295
296 # Local Variables:
297 # py-master-file: \"master.py\"
298 # End:
299
Barry Warsaw41a05c71998-08-10 16:33:12 +0000300so that typing \\[py-execute-buffer] in that buffer executes the named
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000301master file instead of the buffer's file. If the file name has a
302relative path, the value of variable `default-directory' for the
303buffer is prepended to come up with a file name.")
Barry Warsawc0ecb531998-01-20 21:43:34 +0000304(make-variable-buffer-local 'py-master-file)
305
Barry Warsaw29a90f02002-04-22 21:48:20 +0000306(defcustom py-pychecker-command "pychecker"
307 "*Shell command used to run Pychecker."
308 :type 'string
309 :group 'python
310 :tag "Pychecker Command")
311
312(defcustom py-pychecker-command-args '("--stdlib")
313 "*List of string arguments to be passed to pychecker."
314 :type '(repeat string)
315 :group 'python
316 :tag "Pychecker Command Args")
317
Barry Warsaw88491612002-04-25 21:31:47 +0000318(defvar py-shell-alist
319 '(("jpython" . 'jpython)
320 ("jython" . 'jpython)
321 ("python" . 'cpython))
322 "*Alist of interpreters and python shells. Used by `py-choose-shell'
323to select the appropriate python interpreter mode for a file.")
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000324
Barry Warsawc72c11c1997-08-09 06:42:08 +0000325
326;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
327;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT
328
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000329(defconst py-emacs-features
330 (let (features)
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000331 features)
Barry Warsawc12c62e1997-09-04 04:18:07 +0000332 "A list of features extant in the Emacs you are using.
Barry Warsaw6ae21ad1997-11-06 14:36:49 +0000333There are many flavors of Emacs out there, with different levels of
334support for features needed by `python-mode'.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000335
Barry Warsaw29a90f02002-04-22 21:48:20 +0000336;; Face for None, True, False, self, and Ellipsis
337(defvar py-pseudo-keyword-face 'py-pseudo-keyword-face
338 "Face for pseudo keywords in Python mode, like self, True, False, Ellipsis.")
339(make-face 'py-pseudo-keyword-face)
340
341(defun py-font-lock-mode-hook ()
342 (or (face-differs-from-default-p 'py-pseudo-keyword-face)
343 (copy-face 'font-lock-keyword-face 'py-pseudo-keyword-face)))
344(add-hook 'font-lock-mode-hook 'py-font-lock-mode-hook)
345
Barry Warsawfb07f401997-02-24 03:37:22 +0000346(defvar python-font-lock-keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000347 (let ((kw1 (mapconcat 'identity
348 '("and" "assert" "break" "class"
349 "continue" "def" "del" "elif"
350 "else" "except" "exec" "for"
351 "from" "global" "if" "import"
352 "in" "is" "lambda" "not"
353 "or" "pass" "print" "raise"
Barry Warsawe275c422001-06-19 18:24:42 +0000354 "return" "while" "yield"
Barry Warsawb8f11661997-11-06 14:35:15 +0000355 )
356 "\\|"))
357 (kw2 (mapconcat 'identity
358 '("else:" "except:" "finally:" "try:")
359 "\\|"))
360 )
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000361 (list
Barry Warsawef3c8911997-11-05 18:55:50 +0000362 ;; keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000363 (cons (concat "\\b\\(" kw1 "\\)\\b[ \n\t(]") 1)
364 ;; block introducing keywords with immediately following colons.
365 ;; Yes "except" is in both lists.
366 (cons (concat "\\b\\(" kw2 "\\)[ \n\t(]") 1)
Barry Warsawe0c182f2000-12-27 17:41:47 +0000367 ;; `as' but only in "import foo as bar"
368 '("[ \t]*\\(\\bfrom\\b.*\\)?\\bimport\\b.*\\b\\(as\\)\\b" . 2)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000369 ;; classes
370 '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
371 1 font-lock-type-face)
372 ;; functions
373 '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
374 1 font-lock-function-name-face)
Barry Warsaw29a90f02002-04-22 21:48:20 +0000375 ;; pseudo-keywords
376 '("\\b\\(self\\|None\\|True\\|False\\|Ellipsis\\)\\b"
377 1 py-pseudo-keyword-face)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000378 ))
Barry Warsaw62d9d6e1996-03-06 20:32:27 +0000379 "Additional expressions to highlight in Python mode.")
Barry Warsawfb07f401997-02-24 03:37:22 +0000380(put 'python-mode 'font-lock-defaults '(python-font-lock-keywords))
381
Barry Warsawe467bfb1997-11-26 05:40:58 +0000382;; have to bind py-file-queue before installing the kill-emacs-hook
Barry Warsaw7ae77681994-12-12 20:38:05 +0000383(defvar py-file-queue nil
384 "Queue of Python temp files awaiting execution.
385Currently-active file is at the head of the list.")
386
Barry Warsaw4f577d22001-04-11 20:23:17 +0000387(defvar py-pdbtrack-is-tracking-p nil)
Barry Warsaw29a90f02002-04-22 21:48:20 +0000388(defvar py-pychecker-history nil)
Barry Warsaw4f577d22001-04-11 20:23:17 +0000389
390
Barry Warsawc72c11c1997-08-09 06:42:08 +0000391
392;; Constants
393
Barry Warsawc72c11c1997-08-09 06:42:08 +0000394(defconst py-stringlit-re
395 (concat
Barry Warsaw751f4931998-05-19 16:06:21 +0000396 ;; These fail if backslash-quote ends the string (not worth
397 ;; fixing?). They precede the short versions so that the first two
398 ;; quotes don't look like an empty short string.
399 ;;
400 ;; (maybe raw), long single quoted triple quoted strings (SQTQ),
401 ;; with potential embedded single quotes
402 "[rR]?'''[^']*\\(\\('[^']\\|''[^']\\)[^']*\\)*'''"
403 "\\|"
404 ;; (maybe raw), long double quoted triple quoted strings (DQTQ),
405 ;; with potential embedded double quotes
406 "[rR]?\"\"\"[^\"]*\\(\\(\"[^\"]\\|\"\"[^\"]\\)[^\"]*\\)*\"\"\""
407 "\\|"
408 "[rR]?'\\([^'\n\\]\\|\\\\.\\)*'" ; single-quoted
Barry Warsawc72c11c1997-08-09 06:42:08 +0000409 "\\|" ; or
Barry Warsaw751f4931998-05-19 16:06:21 +0000410 "[rR]?\"\\([^\"\n\\]\\|\\\\.\\)*\"" ; double-quoted
Barry Warsaw41a05c71998-08-10 16:33:12 +0000411 )
412 "Regular expression matching a Python string literal.")
Barry Warsaw751f4931998-05-19 16:06:21 +0000413
Barry Warsawc72c11c1997-08-09 06:42:08 +0000414(defconst py-continued-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000415 ;; This is tricky because a trailing backslash does not mean
416 ;; continuation if it's in a comment
Barry Warsawc72c11c1997-08-09 06:42:08 +0000417 (concat
418 "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*"
Barry Warsaw41a05c71998-08-10 16:33:12 +0000419 "\\\\$")
420 "Regular expression matching Python backslash continuation lines.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000421
Barry Warsaw41a05c71998-08-10 16:33:12 +0000422(defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)"
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000423 "Regular expression matching a blank or comment line.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000424
Barry Warsawc72c11c1997-08-09 06:42:08 +0000425(defconst py-outdent-re
426 (concat "\\(" (mapconcat 'identity
427 '("else:"
428 "except\\(\\s +.*\\)?:"
429 "finally:"
430 "elif\\s +.*:")
431 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000432 "\\)")
433 "Regular expression matching statements to be dedented one level.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000434
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000435(defconst py-block-closing-keywords-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000436 "\\(return\\|raise\\|break\\|continue\\|pass\\)"
437 "Regular expression matching keywords which typically close a block.")
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000438
Barry Warsawc72c11c1997-08-09 06:42:08 +0000439(defconst py-no-outdent-re
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000440 (concat
441 "\\("
442 (mapconcat 'identity
443 (list "try:"
444 "except\\(\\s +.*\\)?:"
445 "while\\s +.*:"
446 "for\\s +.*:"
447 "if\\s +.*:"
448 "elif\\s +.*:"
449 (concat py-block-closing-keywords-re "[ \t\n]")
450 )
451 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000452 "\\)")
453 "Regular expression matching lines not to dedent after.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000454
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000455(defconst py-defun-start-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000456 "^\\([ \t]*\\)def[ \t]+\\([a-zA-Z_0-9]+\\)\\|\\(^[a-zA-Z_0-9]+\\)[ \t]*="
457 ;; If you change this, you probably have to change py-current-defun
458 ;; as well. This is only used by py-current-defun to find the name
459 ;; for add-log.el.
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000460 "Regular expression matching a function, method, or variable assignment.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000461
Barry Warsaw41a05c71998-08-10 16:33:12 +0000462(defconst py-class-start-re "^class[ \t]*\\([a-zA-Z_0-9]+\\)"
463 ;; If you change this, you probably have to change py-current-defun
464 ;; as well. This is only used by py-current-defun to find the name
465 ;; for add-log.el.
466 "Regular expression for finding a class name.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000467
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000468(defconst py-traceback-line-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000469 "[ \t]+File \"\\([^\"]+\\)\", line \\([0-9]+\\)"
470 "Regular expression that describes tracebacks.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000471
Barry Warsaw4f577d22001-04-11 20:23:17 +0000472;; pdbtrack contants
473(defconst py-pdbtrack-stack-entry-regexp
474 "> \\([^(]+\\)(\\([0-9]+\\))[?a-zA-Z0-9_]+()"
475 "Regular expression pdbtrack uses to find a stack trace entry.")
476
477(defconst py-pdbtrack-input-prompt "\n[(<]?pdb[>)]? "
478 "Regular expression pdbtrack uses to recognize a pdb prompt.")
479
480(defconst py-pdbtrack-track-range 10000
481 "Max number of characters from end of buffer to search for stack entry.")
482
Barry Warsawc72c11c1997-08-09 06:42:08 +0000483
484
Barry Warsawc72c11c1997-08-09 06:42:08 +0000485;; Major mode boilerplate
486
Barry Warsaw7ae77681994-12-12 20:38:05 +0000487;; define a mode-specific abbrev table for those who use such things
488(defvar python-mode-abbrev-table nil
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000489 "Abbrev table in use in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000490(define-abbrev-table 'python-mode-abbrev-table nil)
491
Barry Warsaw7ae77681994-12-12 20:38:05 +0000492(defvar python-mode-hook nil
493 "*Hook called by `python-mode'.")
494
Barry Warsaw88491612002-04-25 21:31:47 +0000495(defvar jpython-mode-hook nil
496 "*Hook called by `jpython-mode'. `jpython-mode' also calls
497`python-mode-hook'.")
498
Barry Warsaw56bd2ed2002-04-25 15:44:17 +0000499(defvar py-shell-hook nil
500 "*Hook called by `py-shell'.")
501
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000502;; In previous version of python-mode.el, the hook was incorrectly
503;; called py-mode-hook, and was not defvar'd. Deprecate its use.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000504(and (fboundp 'make-obsolete-variable)
505 (make-obsolete-variable 'py-mode-hook 'python-mode-hook))
506
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000507(defvar py-mode-map ()
508 "Keymap used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000509(if py-mode-map
Barry Warsawc72c11c1997-08-09 06:42:08 +0000510 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000511 (setq py-mode-map (make-sparse-keymap))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000512 ;; electric keys
513 (define-key py-mode-map ":" 'py-electric-colon)
514 ;; indentation level modifiers
515 (define-key py-mode-map "\C-c\C-l" 'py-shift-region-left)
516 (define-key py-mode-map "\C-c\C-r" 'py-shift-region-right)
517 (define-key py-mode-map "\C-c<" 'py-shift-region-left)
518 (define-key py-mode-map "\C-c>" 'py-shift-region-right)
519 ;; subprocess commands
520 (define-key py-mode-map "\C-c\C-c" 'py-execute-buffer)
Barry Warsaw820273d1998-05-19 15:54:45 +0000521 (define-key py-mode-map "\C-c\C-m" 'py-execute-import-or-reload)
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000522 (define-key py-mode-map "\C-c\C-s" 'py-execute-string)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000523 (define-key py-mode-map "\C-c|" 'py-execute-region)
Barry Warsaw820273d1998-05-19 15:54:45 +0000524 (define-key py-mode-map "\e\C-x" 'py-execute-def-or-class)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000525 (define-key py-mode-map "\C-c!" 'py-shell)
Barry Warsawa2398801998-04-09 23:28:20 +0000526 (define-key py-mode-map "\C-c\C-t" 'py-toggle-shells)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000527 ;; Caution! Enter here at your own risk. We are trying to support
528 ;; several behaviors and it gets disgusting. :-( This logic ripped
529 ;; largely from CC Mode.
530 ;;
531 ;; In XEmacs 19, Emacs 19, and Emacs 20, we use this to bind
532 ;; backwards deletion behavior to DEL, which both Delete and
533 ;; Backspace get translated to. There's no way to separate this
534 ;; behavior in a clean way, so deal with it! Besides, it's been
535 ;; this way since the dawn of time.
536 (if (not (boundp 'delete-key-deletes-forward))
537 (define-key py-mode-map "\177" 'py-electric-backspace)
538 ;; However, XEmacs 20 actually achieved enlightenment. It is
539 ;; possible to sanely define both backward and forward deletion
540 ;; behavior under X separately (TTYs are forever beyond hope, but
541 ;; who cares? XEmacs 20 does the right thing with these too).
542 (define-key py-mode-map [delete] 'py-electric-delete)
543 (define-key py-mode-map [backspace] 'py-electric-backspace))
Barry Warsaw8c4a8de1997-11-26 20:30:33 +0000544 ;; Separate M-BS from C-M-h. The former should remain
545 ;; backward-kill-word.
546 (define-key py-mode-map [(control meta h)] 'py-mark-def-or-class)
Barry Warsaw2518c671997-11-05 00:51:08 +0000547 (define-key py-mode-map "\C-c\C-k" 'py-mark-block)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000548 ;; Miscellaneous
549 (define-key py-mode-map "\C-c:" 'py-guess-indent-offset)
550 (define-key py-mode-map "\C-c\t" 'py-indent-region)
Barry Warsaw4f577d22001-04-11 20:23:17 +0000551 (define-key py-mode-map "\C-c\C-d" 'py-pdbtrack-toggle-stack-tracking)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000552 (define-key py-mode-map "\C-c\C-n" 'py-next-statement)
553 (define-key py-mode-map "\C-c\C-p" 'py-previous-statement)
554 (define-key py-mode-map "\C-c\C-u" 'py-goto-block-up)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000555 (define-key py-mode-map "\C-c#" 'py-comment-region)
556 (define-key py-mode-map "\C-c?" 'py-describe-mode)
Barry Warsaw04949552002-04-22 22:05:49 +0000557 (define-key py-mode-map [f1] 'py-help-at-point)
Barry Warsawa7cc43b2002-04-22 17:15:19 +0000558 (define-key py-mode-map "\C-c\C-h" 'py-help-at-point)
Barry Warsawab0e86c1998-05-19 15:31:46 +0000559 (define-key py-mode-map "\e\C-a" 'py-beginning-of-def-or-class)
560 (define-key py-mode-map "\e\C-e" 'py-end-of-def-or-class)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000561 (define-key py-mode-map "\C-c-" 'py-up-exception)
562 (define-key py-mode-map "\C-c=" 'py-down-exception)
Barry Warsawf8ddb6a1999-01-18 21:49:39 +0000563 ;; stuff that is `standard' but doesn't interface well with
564 ;; python-mode, which forces us to rebind to special commands
565 (define-key py-mode-map "\C-xnd" 'py-narrow-to-defun)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000566 ;; information
567 (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report)
568 (define-key py-mode-map "\C-c\C-v" 'py-version)
Barry Warsaw29a90f02002-04-22 21:48:20 +0000569 (define-key py-mode-map "\C-c\C-w" 'py-pychecker-run)
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000570 ;; shadow global bindings for newline-and-indent w/ the py- version.
571 ;; BAW - this is extremely bad form, but I'm not going to change it
572 ;; for now.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000573 (mapcar #'(lambda (key)
574 (define-key py-mode-map key 'py-newline-and-indent))
575 (where-is-internal 'newline-and-indent))
Barry Warsawf19feb81999-01-21 17:06:11 +0000576 ;; Force RET to be py-newline-and-indent even if it didn't get
577 ;; mapped by the above code. motivation: Emacs' default binding for
578 ;; RET is `newline' and C-j is `newline-and-indent'. Most Pythoneers
579 ;; expect RET to do a `py-newline-and-indent' and any Emacsers who
580 ;; dislike this are probably knowledgeable enough to do a rebind.
581 ;; However, we do *not* change C-j since many Emacsers have already
582 ;; swapped RET and C-j and they don't want C-j bound to `newline' to
583 ;; change.
584 (define-key py-mode-map "\C-m" 'py-newline-and-indent)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000585 )
586
587(defvar py-mode-output-map nil
Barry Warsaw41a05c71998-08-10 16:33:12 +0000588 "Keymap used in *Python Output* buffers.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000589(if py-mode-output-map
590 nil
591 (setq py-mode-output-map (make-sparse-keymap))
592 (define-key py-mode-output-map [button2] 'py-mouseto-exception)
593 (define-key py-mode-output-map "\C-c\C-c" 'py-goto-exception)
594 ;; TBD: Disable all self-inserting keys. This is bogus, we should
595 ;; really implement this as *Python Output* buffer being read-only
596 (mapcar #' (lambda (key)
597 (define-key py-mode-output-map key
598 #'(lambda () (interactive) (beep))))
599 (where-is-internal 'self-insert-command))
Barry Warsaw850437a1995-03-08 21:50:28 +0000600 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000601
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +0000602(defvar py-shell-map nil
603 "Keymap used in *Python* shell buffers.")
604(if py-shell-map
605 nil
606 (setq py-shell-map (copy-keymap comint-mode-map))
607 (define-key py-shell-map [tab] 'tab-to-tab-stop)
608 (define-key py-shell-map "\C-c-" 'py-up-exception)
609 (define-key py-shell-map "\C-c=" 'py-down-exception)
610 )
611
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000612(defvar py-mode-syntax-table nil
613 "Syntax table used in `python-mode' buffers.")
Barry Warsawa7cc43b2002-04-22 17:15:19 +0000614(when (not py-mode-syntax-table)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000615 (setq py-mode-syntax-table (make-syntax-table))
Barry Warsawc72c11c1997-08-09 06:42:08 +0000616 (modify-syntax-entry ?\( "()" py-mode-syntax-table)
617 (modify-syntax-entry ?\) ")(" py-mode-syntax-table)
618 (modify-syntax-entry ?\[ "(]" py-mode-syntax-table)
619 (modify-syntax-entry ?\] ")[" py-mode-syntax-table)
620 (modify-syntax-entry ?\{ "(}" py-mode-syntax-table)
621 (modify-syntax-entry ?\} "){" py-mode-syntax-table)
622 ;; Add operator symbols misassigned in the std 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 (modify-syntax-entry ?\* "." py-mode-syntax-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 ;; For historical reasons, underscore is word class instead of
635 ;; symbol class. GNU conventions say it should be symbol class, but
636 ;; there's a natural conflict between what major mode authors want
637 ;; and what users expect from `forward-word' and `backward-word'.
638 ;; Guido and I have hashed this out and have decided to keep
639 ;; underscore in word class. If you're tempted to change it, try
640 ;; binding M-f and M-b to py-forward-into-nomenclature and
Barry Warsawaa384fd1999-02-16 23:36:16 +0000641 ;; py-backward-into-nomenclature instead. This doesn't help in all
642 ;; situations where you'd want the different behavior
643 ;; (e.g. backward-kill-word).
Barry Warsawc72c11c1997-08-09 06:42:08 +0000644 (modify-syntax-entry ?\_ "w" py-mode-syntax-table)
645 ;; Both single quote and double quote are string delimiters
646 (modify-syntax-entry ?\' "\"" py-mode-syntax-table)
647 (modify-syntax-entry ?\" "\"" py-mode-syntax-table)
648 ;; backquote is open and close paren
649 (modify-syntax-entry ?\` "$" py-mode-syntax-table)
650 ;; comment delimiters
651 (modify-syntax-entry ?\# "<" py-mode-syntax-table)
652 (modify-syntax-entry ?\n ">" py-mode-syntax-table)
653 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000654
Barry Warsawa7cc43b2002-04-22 17:15:19 +0000655;; An auxiliary syntax table which places underscore and dot in the
656;; symbol class for simplicity
657(defvar py-dotted-expression-syntax-table nil
658 "Syntax table used to identify Python dotted expressions.")
659(when (not py-dotted-expression-syntax-table)
660 (setq py-dotted-expression-syntax-table
661 (copy-syntax-table py-mode-syntax-table))
662 (modify-syntax-entry ?_ "_" py-dotted-expression-syntax-table)
663 (modify-syntax-entry ?. "_" py-dotted-expression-syntax-table))
664
Barry Warsawb3e81d51996-09-04 15:12:42 +0000665
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000666
Barry Warsawbc3760b1998-09-14 16:16:18 +0000667;; Utilities
Barry Warsawbc3760b1998-09-14 16:16:18 +0000668(defmacro py-safe (&rest body)
669 "Safely execute BODY, return nil if an error occurred."
670 (` (condition-case nil
671 (progn (,@ body))
672 (error nil))))
673
674(defsubst py-keep-region-active ()
675 "Keep the region active in XEmacs."
676 ;; Ignore byte-compiler warnings you might see. Also note that
677 ;; FSF's Emacs 19 does it differently; its policy doesn't require us
678 ;; to take explicit action.
679 (and (boundp 'zmacs-region-stays)
680 (setq zmacs-region-stays t)))
681
682(defsubst py-point (position)
683 "Returns the value of point at certain commonly referenced POSITIONs.
684POSITION can be one of the following symbols:
685
686 bol -- beginning of line
687 eol -- end of line
688 bod -- beginning of def or class
689 eod -- end of def or class
690 bob -- beginning of buffer
691 eob -- end of buffer
692 boi -- back to indentation
693 bos -- beginning of statement
694
695This function does not modify point or mark."
696 (let ((here (point)))
697 (cond
698 ((eq position 'bol) (beginning-of-line))
699 ((eq position 'eol) (end-of-line))
700 ((eq position 'bod) (py-beginning-of-def-or-class))
701 ((eq position 'eod) (py-end-of-def-or-class))
702 ;; Kind of funny, I know, but useful for py-up-exception.
703 ((eq position 'bob) (beginning-of-buffer))
704 ((eq position 'eob) (end-of-buffer))
705 ((eq position 'boi) (back-to-indentation))
706 ((eq position 'bos) (py-goto-initial-line))
707 (t (error "Unknown buffer position requested: %s" position))
708 )
709 (prog1
710 (point)
711 (goto-char here))))
712
713(defsubst py-highlight-line (from to file line)
714 (cond
715 ((fboundp 'make-extent)
716 ;; XEmacs
717 (let ((e (make-extent from to)))
718 (set-extent-property e 'mouse-face 'highlight)
719 (set-extent-property e 'py-exc-info (cons file line))
720 (set-extent-property e 'keymap py-mode-output-map)))
721 (t
722 ;; Emacs -- Please port this!
723 )
724 ))
725
726(defun py-in-literal (&optional lim)
727 "Return non-nil if point is in a Python literal (a comment or string).
728Optional argument LIM indicates the beginning of the containing form,
729i.e. the limit on how far back to scan."
730 ;; This is the version used for non-XEmacs, which has a nicer
731 ;; interface.
732 ;;
733 ;; WARNING: Watch out for infinite recursion.
734 (let* ((lim (or lim (py-point 'bod)))
735 (state (parse-partial-sexp lim (point))))
736 (cond
737 ((nth 3 state) 'string)
738 ((nth 4 state) 'comment)
739 (t nil))))
740
741;; XEmacs has a built-in function that should make this much quicker.
742;; In this case, lim is ignored
743(defun py-fast-in-literal (&optional lim)
744 "Fast version of `py-in-literal', used only by XEmacs.
745Optional LIM is ignored."
746 ;; don't have to worry about context == 'block-comment
747 (buffer-syntactic-context))
748
749(if (fboundp 'buffer-syntactic-context)
750 (defalias 'py-in-literal 'py-fast-in-literal))
751
752
753
Barry Warsaw42f707f1996-07-29 21:05:05 +0000754;; Menu definitions, only relevent if you have the easymenu.el package
755;; (standard in the latest Emacs 19 and XEmacs 19 distributions).
Barry Warsaw5490a061996-08-06 15:43:33 +0000756(defvar py-menu nil
757 "Menu for Python Mode.
Barry Warsawc72c11c1997-08-09 06:42:08 +0000758This menu will get created automatically if you have the `easymenu'
759package. Note that the latest X/Emacs releases contain this package.")
Barry Warsaw5490a061996-08-06 15:43:33 +0000760
Barry Warsawc72c11c1997-08-09 06:42:08 +0000761(and (py-safe (require 'easymenu) t)
762 (easy-menu-define
763 py-menu py-mode-map "Python Mode menu"
764 '("Python"
765 ["Comment Out Region" py-comment-region (mark)]
766 ["Uncomment Region" (py-comment-region (point) (mark) '(4)) (mark)]
767 "-"
768 ["Mark current block" py-mark-block t]
Barry Warsaw2518c671997-11-05 00:51:08 +0000769 ["Mark current def" py-mark-def-or-class t]
770 ["Mark current class" (py-mark-def-or-class t) t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000771 "-"
772 ["Shift region left" py-shift-region-left (mark)]
773 ["Shift region right" py-shift-region-right (mark)]
774 "-"
Barry Warsaw820273d1998-05-19 15:54:45 +0000775 ["Import/reload file" py-execute-import-or-reload t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000776 ["Execute buffer" py-execute-buffer t]
777 ["Execute region" py-execute-region (mark)]
Barry Warsaw820273d1998-05-19 15:54:45 +0000778 ["Execute def or class" py-execute-def-or-class (mark)]
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000779 ["Execute string" py-execute-string t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000780 ["Start interpreter..." py-shell t]
781 "-"
782 ["Go to start of block" py-goto-block-up t]
Barry Warsawab0e86c1998-05-19 15:31:46 +0000783 ["Go to start of class" (py-beginning-of-def-or-class t) t]
784 ["Move to end of class" (py-end-of-def-or-class t) t]
785 ["Move to start of def" py-beginning-of-def-or-class t]
786 ["Move to end of def" py-end-of-def-or-class t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000787 "-"
788 ["Describe mode" py-describe-mode t]
789 )))
Barry Warsaw42f707f1996-07-29 21:05:05 +0000790
Barry Warsaw81437461996-08-01 19:48:02 +0000791
792
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000793;; Imenu definitions
794(defvar py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000795 (concat ; <<classes>>
796 "\\(" ;
797 "^[ \t]*" ; newline and maybe whitespace
798 "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name
799 ; possibly multiple superclasses
Barry Warsaw3179fe01998-04-04 21:36:53 +0000800 "\\([ \t]*\\((\\([a-zA-Z0-9_,. \t\n]\\)*)\\)?\\)"
Barry Warsaw81437461996-08-01 19:48:02 +0000801 "[ \t]*:" ; and the final :
802 "\\)" ; >>classes<<
803 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000804 "Regexp for Python classes for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000805 )
806
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000807(defvar py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000808 (concat ; <<methods and functions>>
809 "\\(" ;
810 "^[ \t]*" ; new line and maybe whitespace
811 "\\(def[ \t]+" ; function definitions start with def
812 "\\([a-zA-Z0-9_]+\\)" ; name is here
813 ; function arguments...
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000814;; "[ \t]*(\\([-+/a-zA-Z0-9_=,\* \t\n.()\"'#]*\\))"
815 "[ \t]*(\\([^:#]*\\))"
Barry Warsaw81437461996-08-01 19:48:02 +0000816 "\\)" ; end of def
817 "[ \t]*:" ; and then the :
818 "\\)" ; >>methods and functions<<
819 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000820 "Regexp for Python methods/functions for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000821 )
822
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000823(defvar py-imenu-method-no-arg-parens '(2 8)
824 "Indices into groups of the Python regexp for use with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000825
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000826Using these values will result in smaller Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000827functions are not listed.
828
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000829See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000830information.")
831
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000832(defvar py-imenu-method-arg-parens '(2 7)
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000833 "Indices into groups of the Python regexp for use with imenu.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000834Using these values will result in large Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000835functions are listed.
836
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000837See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000838information.")
839
840;; Note that in this format, this variable can still be used with the
841;; imenu--generic-function. Otherwise, there is no real reason to have
842;; it.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000843(defvar py-imenu-generic-expression
Barry Warsaw81437461996-08-01 19:48:02 +0000844 (cons
845 (concat
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000846 py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000847 "\\|" ; or...
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000848 py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000849 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000850 py-imenu-method-no-arg-parens)
851 "Generic Python expression which may be used directly with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000852Used by setting the variable `imenu-generic-expression' to this value.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000853Also, see the function \\[py-imenu-create-index] for a better
854alternative for finding the index.")
Barry Warsaw81437461996-08-01 19:48:02 +0000855
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000856;; These next two variables are used when searching for the Python
Barry Warsaw81437461996-08-01 19:48:02 +0000857;; class/definitions. Just saving some time in accessing the
858;; generic-python-expression, really.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000859(defvar py-imenu-generic-regexp nil)
860(defvar py-imenu-generic-parens nil)
Barry Warsaw81437461996-08-01 19:48:02 +0000861
862
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000863(defun py-imenu-create-index-function ()
864 "Python interface function for the Imenu package.
865Finds all Python classes and functions/methods. Calls function
866\\[py-imenu-create-index-engine]. See that function for the details
867of how this works."
868 (setq py-imenu-generic-regexp (car py-imenu-generic-expression)
869 py-imenu-generic-parens (if py-imenu-show-method-args-p
870 py-imenu-method-arg-parens
871 py-imenu-method-no-arg-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000872 (goto-char (point-min))
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000873 ;; Warning: When the buffer has no classes or functions, this will
874 ;; return nil, which seems proper according to the Imenu API, but
875 ;; causes an error in the XEmacs port of Imenu. Sigh.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000876 (py-imenu-create-index-engine nil))
Barry Warsaw81437461996-08-01 19:48:02 +0000877
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000878(defun py-imenu-create-index-engine (&optional start-indent)
879 "Function for finding Imenu definitions in Python.
Barry Warsaw81437461996-08-01 19:48:02 +0000880
881Finds all definitions (classes, methods, or functions) in a Python
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000882file for the Imenu package.
Barry Warsaw81437461996-08-01 19:48:02 +0000883
884Returns a possibly nested alist of the form
885
886 (INDEX-NAME . INDEX-POSITION)
887
888The second element of the alist may be an alist, producing a nested
889list as in
890
891 (INDEX-NAME . INDEX-ALIST)
892
893This function should not be called directly, as it calls itself
894recursively and requires some setup. Rather this is the engine for
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000895the function \\[py-imenu-create-index-function].
Barry Warsaw81437461996-08-01 19:48:02 +0000896
897It works recursively by looking for all definitions at the current
898indention level. When it finds one, it adds it to the alist. If it
899finds a definition at a greater indentation level, it removes the
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000900previous definition from the alist. In its place it adds all
Barry Warsaw81437461996-08-01 19:48:02 +0000901definitions found at the next indentation level. When it finds a
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000902definition that is less indented then the current level, it returns
903the alist it has created thus far.
Barry Warsaw81437461996-08-01 19:48:02 +0000904
905The optional argument START-INDENT indicates the starting indentation
906at which to continue looking for Python classes, methods, or
907functions. If this is not supplied, the function uses the indentation
908of the first definition found."
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000909 (let (index-alist
910 sub-method-alist
Barry Warsaw81437461996-08-01 19:48:02 +0000911 looking-p
912 def-name prev-name
913 cur-indent def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000914 (class-paren (first py-imenu-generic-parens))
915 (def-paren (second py-imenu-generic-parens)))
Barry Warsaw81437461996-08-01 19:48:02 +0000916 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000917 (re-search-forward py-imenu-generic-regexp (point-max) t))
Barry Warsaw81437461996-08-01 19:48:02 +0000918 (while looking-p
919 (save-excursion
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000920 ;; used to set def-name to this value but generic-extract-name
921 ;; is new to imenu-1.14. this way it still works with
922 ;; imenu-1.11
923 ;;(imenu--generic-extract-name py-imenu-generic-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000924 (let ((cur-paren (if (match-beginning class-paren)
925 class-paren def-paren)))
926 (setq def-name
Barry Warsawc8520351997-11-26 06:14:40 +0000927 (buffer-substring-no-properties (match-beginning cur-paren)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000928 (match-end cur-paren))))
Barry Warsaw93c88cc1998-08-18 02:00:44 +0000929 (save-match-data
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000930 (py-beginning-of-def-or-class 'either))
Barry Warsaw81437461996-08-01 19:48:02 +0000931 (beginning-of-line)
932 (setq cur-indent (current-indentation)))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000933 ;; HACK: want to go to the next correct definition location. We
934 ;; explicitly list them here but it would be better to have them
935 ;; in a list.
Barry Warsaw81437461996-08-01 19:48:02 +0000936 (setq def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000937 (or (match-beginning class-paren)
938 (match-beginning def-paren)))
Barry Warsaw81437461996-08-01 19:48:02 +0000939 ;; if we don't have a starting indent level, take this one
940 (or start-indent
941 (setq start-indent cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000942 ;; if we don't have class name yet, take this one
943 (or prev-name
944 (setq prev-name def-name))
Barry Warsaw81437461996-08-01 19:48:02 +0000945 ;; what level is the next definition on? must be same, deeper
946 ;; or shallower indentation
947 (cond
948 ;; at the same indent level, add it to the list...
949 ((= start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000950 (push (cons def-name def-pos) index-alist))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000951 ;; deeper indented expression, recurse
Barry Warsaw81437461996-08-01 19:48:02 +0000952 ((< start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000953 ;; the point is currently on the expression we're supposed to
954 ;; start on, so go back to the last expression. The recursive
955 ;; call will find this place again and add it to the correct
956 ;; list
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000957 (re-search-backward py-imenu-generic-regexp (point-min) 'move)
958 (setq sub-method-alist (py-imenu-create-index-engine cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000959 (if sub-method-alist
960 ;; we put the last element on the index-alist on the start
961 ;; of the submethod alist so the user can still get to it.
962 (let ((save-elmt (pop index-alist)))
Barry Warsawc8520351997-11-26 06:14:40 +0000963 (push (cons prev-name
Barry Warsaw81437461996-08-01 19:48:02 +0000964 (cons save-elmt sub-method-alist))
965 index-alist))))
Barry Warsaw81437461996-08-01 19:48:02 +0000966 ;; found less indented expression, we're done.
967 (t
968 (setq looking-p nil)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000969 (re-search-backward py-imenu-generic-regexp (point-min) t)))
970 ;; end-cond
Barry Warsaw81437461996-08-01 19:48:02 +0000971 (setq prev-name def-name)
972 (and looking-p
973 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000974 (re-search-forward py-imenu-generic-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000975 (point-max) 'move))))
976 (nreverse index-alist)))
977
Barry Warsaw88491612002-04-25 21:31:47 +0000978
979
980(defun py-choose-shell-by-shebang ()
981 "Choose CPython or JPython mode by looking at #! on the first line.
982Returns the appropriate mode function.
983Used by `py-choose-shell', and similar to but distinct from
984`set-auto-mode', though it uses `auto-mode-interpreter-regexp' (if available)."
985 ;; look for an interpreter specified in the first line
986 ;; similar to set-auto-mode (files.el)
987 (let* ((re (if (boundp 'auto-mode-interpreter-regexp)
988 auto-mode-interpreter-regexp
989 ;; stolen from Emacs 21.2
990 "#![ \t]?\\([^ \t\n]*/bin/env[ \t]\\)?\\([^ \t\n]+\\)"))
991 (interpreter (save-excursion
992 (goto-char (point-min))
993 (if (looking-at re)
994 (match-string 2)
995 "")))
996 elt)
997 ;; Map interpreter name to a mode.
998 (setq elt (assoc (file-name-nondirectory interpreter)
999 py-shell-alist))
1000 (and elt (caddr elt))))
1001
1002
1003
1004(defun py-choose-shell-by-import ()
1005 "Choose CPython or JPython mode based imports.
1006If a file imports any packages in `py-jpython-packages', within
1007`py-import-check-point-max' characters from the start of the file,
1008return `jpython', otherwise return nil."
1009 (let (mode)
1010 (save-excursion
1011 (goto-char (point-min))
1012 (while (and (not mode)
1013 (search-forward-regexp
1014 "^\\(\\(from\\)\\|\\(import\\)\\) \\([^ \t\n.]+\\)"
1015 py-import-check-point-max t))
1016 (setq mode (and (member (match-string 4) py-jpython-packages)
1017 'jpython
1018 ))))
1019 mode))
1020
1021
1022(defun py-choose-shell ()
1023 "Choose CPython or JPython mode. Returns the appropriate mode function.
1024This does the following:
1025 - look for an interpreter with `py-choose-shell-by-shebang'
1026 - examine imports using `py-choose-shell-by-import'
1027 - default to the variable `py-default-interpreter'"
1028 (interactive)
1029 (or (py-choose-shell-by-shebang)
1030 (py-choose-shell-by-import)
1031 py-default-interpreter
1032; 'cpython ;; don't use to py-default-interpreter, because default
1033; ;; is only way to choose CPython
1034 ))
1035
Barry Warsaw42f707f1996-07-29 21:05:05 +00001036
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001037;;;###autoload
Barry Warsaw7ae77681994-12-12 20:38:05 +00001038(defun python-mode ()
1039 "Major mode for editing Python files.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001040To submit a problem report, enter `\\[py-submit-bug-report]' from a
1041`python-mode' buffer. Do `\\[py-describe-mode]' for detailed
1042documentation. To see what version of `python-mode' you are running,
1043enter `\\[py-version]'.
1044
1045This mode knows about Python indentation, tokens, comments and
1046continuation lines. Paragraphs are separated by blank lines only.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001047
1048COMMANDS
1049\\{py-mode-map}
1050VARIABLES
1051
Barry Warsaw42f707f1996-07-29 21:05:05 +00001052py-indent-offset\t\tindentation increment
Barry Warsaw41a05c71998-08-10 16:33:12 +00001053py-block-comment-prefix\t\tcomment string used by `comment-region'
Barry Warsaw42f707f1996-07-29 21:05:05 +00001054py-python-command\t\tshell command to invoke Python interpreter
Barry Warsaw42f707f1996-07-29 21:05:05 +00001055py-temp-directory\t\tdirectory used for temp files (if needed)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001056py-beep-if-tab-change\t\tring the bell if `tab-width' is changed"
Barry Warsaw7ae77681994-12-12 20:38:05 +00001057 (interactive)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001058 ;; set up local variables
Barry Warsaw7ae77681994-12-12 20:38:05 +00001059 (kill-all-local-variables)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001060 (make-local-variable 'font-lock-defaults)
1061 (make-local-variable 'paragraph-separate)
1062 (make-local-variable 'paragraph-start)
1063 (make-local-variable 'require-final-newline)
1064 (make-local-variable 'comment-start)
Barry Warsaw5c8bef11996-12-17 21:56:10 +00001065 (make-local-variable 'comment-end)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001066 (make-local-variable 'comment-start-skip)
1067 (make-local-variable 'comment-column)
Barry Warsaw003932a1998-07-07 15:11:24 +00001068 (make-local-variable 'comment-indent-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001069 (make-local-variable 'indent-region-function)
1070 (make-local-variable 'indent-line-function)
Barry Warsawb3e81d51996-09-04 15:12:42 +00001071 (make-local-variable 'add-log-current-defun-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +00001072 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +00001073 (set-syntax-table py-mode-syntax-table)
Barry Warsaw003932a1998-07-07 15:11:24 +00001074 (setq major-mode 'python-mode
1075 mode-name "Python"
1076 local-abbrev-table python-mode-abbrev-table
1077 font-lock-defaults '(python-font-lock-keywords)
1078 paragraph-separate "^[ \t]*$"
1079 paragraph-start "^[ \t]*$"
1080 require-final-newline t
1081 comment-start "# "
1082 comment-end ""
1083 comment-start-skip "# *"
1084 comment-column 40
1085 comment-indent-function 'py-comment-indent-function
1086 indent-region-function 'py-indent-region
1087 indent-line-function 'py-indent-line
Barry Warsawb3e81d51996-09-04 15:12:42 +00001088 ;; tell add-log.el how to find the current function/method/variable
1089 add-log-current-defun-function 'py-current-defun
Barry Warsawb1f89511996-09-03 16:38:30 +00001090 )
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001091 (use-local-map py-mode-map)
Barry Warsaw42f707f1996-07-29 21:05:05 +00001092 ;; add the menu
1093 (if py-menu
1094 (easy-menu-add py-menu))
Barry Warsaw57697af1995-09-14 20:01:14 +00001095 ;; Emacs 19 requires this
Barry Warsawc72c11c1997-08-09 06:42:08 +00001096 (if (boundp 'comment-multi-line)
Barry Warsaw57697af1995-09-14 20:01:14 +00001097 (setq comment-multi-line nil))
Barry Warsaw6839d3a1998-10-28 00:10:45 +00001098 ;; Install Imenu if available
Barry Warsaw742a5111998-03-13 17:29:15 +00001099 (when (py-safe (require 'imenu))
Barry Warsaw6839d3a1998-10-28 00:10:45 +00001100 (setq imenu-create-index-function #'py-imenu-create-index-function)
1101 (setq imenu-generic-expression py-imenu-generic-expression)
Barry Warsaw742a5111998-03-13 17:29:15 +00001102 (if (fboundp 'imenu-add-to-menubar)
1103 (imenu-add-to-menubar (format "%s-%s" "IM" mode-name)))
1104 )
1105 ;; Run the mode hook. Note that py-mode-hook is deprecated.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001106 (if python-mode-hook
1107 (run-hooks 'python-mode-hook)
Barry Warsaw742a5111998-03-13 17:29:15 +00001108 (run-hooks 'py-mode-hook))
1109 ;; Now do the automagical guessing
1110 (if py-smart-indentation
1111 (let ((offset py-indent-offset))
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001112 ;; It's okay if this fails to guess a good value
Barry Warsaw742a5111998-03-13 17:29:15 +00001113 (if (and (py-safe (py-guess-indent-offset))
1114 (<= py-indent-offset 8)
1115 (>= py-indent-offset 2))
1116 (setq offset py-indent-offset))
1117 (setq py-indent-offset offset)
Barry Warsaw639eea61998-03-16 18:12:13 +00001118 ;; Only turn indent-tabs-mode off if tab-width !=
1119 ;; py-indent-offset. Never turn it on, because the user must
1120 ;; have explicitly turned it off.
1121 (if (/= tab-width py-indent-offset)
1122 (setq indent-tabs-mode nil))
Barry Warsaw11f21561999-07-28 21:59:43 +00001123 ))
1124 ;; Set the default shell if not already set
1125 (when (null py-which-shell)
Barry Warsaw88491612002-04-25 21:31:47 +00001126 (py-toggle-shells (py-choose-shell))))
1127
1128
1129(defun jpython-mode ()
1130 "Major mode for editing JPython/Jython files.
1131This is a simple wrapper around `python-mode'.
1132It runs `jpython-mode-hook' then calls `python-mode.'
1133It is added to `interpreter-mode-alist' and `py-choose-shell'.
1134"
1135 (interactive)
1136 (python-mode)
1137 (py-toggle-shells 'jpython)
1138 (when jpython-mode-hook
1139 (run-hooks 'jpython-mode-hook)))
1140
1141
1142;; It's handy to add recognition of Python files to the
1143;; interpreter-mode-alist and to auto-mode-alist. With the former, we
1144;; can specify different `derived-modes' based on the #! line, but
1145;; with the latter, we can't. So we just won't add them if they're
1146;; already added.
1147(let ((modes '(("jpython" . jpython-mode)
1148 ("jython" . jpython-mode)
1149 ("python" . python-mode))))
1150 (while modes
1151 (when (not (assoc (car modes) interpreter-mode-alist))
Barry Warsawcf22c822002-04-25 21:46:33 +00001152 (push (car modes) interpreter-mode-alist))
Barry Warsaw88491612002-04-25 21:31:47 +00001153 (setq modes (cdr modes))))
1154
1155(when (not (or (rassq 'python-mode auto-mode-alist)
1156 (rassq 'jpython-mode auto-mode-alist)))
1157 (push '("\\.py$" . python-mode) auto-mode-alist))
1158
Barry Warsaw7ae77681994-12-12 20:38:05 +00001159
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001160
Barry Warsawb91b7431995-03-14 15:55:20 +00001161;; electric characters
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001162(defun py-outdent-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00001163 "Returns non-nil if the current line should dedent one level."
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001164 (save-excursion
1165 (and (progn (back-to-indentation)
1166 (looking-at py-outdent-re))
Barry Warsaw1a1c6bb1999-01-09 17:22:38 +00001167 ;; short circuit infloop on illegal construct
1168 (not (bobp))
Barry Warsawf06777d1998-01-21 05:36:18 +00001169 (progn (forward-line -1)
1170 (py-goto-initial-line)
1171 (back-to-indentation)
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001172 (while (or (looking-at py-blank-or-comment-re)
1173 (bobp))
1174 (backward-to-indentation 1))
1175 (not (looking-at py-no-outdent-re)))
1176 )))
1177
Barry Warsawb91b7431995-03-14 15:55:20 +00001178(defun py-electric-colon (arg)
1179 "Insert a colon.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001180In certain cases the line is dedented appropriately. If a numeric
1181argument ARG is provided, that many colons are inserted
1182non-electrically. Electric behavior is inhibited inside a string or
1183comment."
Barry Warsawb91b7431995-03-14 15:55:20 +00001184 (interactive "P")
1185 (self-insert-command (prefix-numeric-value arg))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001186 ;; are we in a string or comment?
1187 (if (save-excursion
1188 (let ((pps (parse-partial-sexp (save-excursion
Barry Warsawab0e86c1998-05-19 15:31:46 +00001189 (py-beginning-of-def-or-class)
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001190 (point))
1191 (point))))
1192 (not (or (nth 3 pps) (nth 4 pps)))))
1193 (save-excursion
1194 (let ((here (point))
1195 (outdent 0)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001196 (indent (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001197 (if (and (not arg)
1198 (py-outdent-p)
1199 (= indent (save-excursion
Barry Warsawa7661821996-08-02 16:22:43 +00001200 (py-next-statement -1)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001201 (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001202 )
1203 (setq outdent py-indent-offset))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001204 ;; Don't indent, only dedent. This assumes that any lines
1205 ;; that are already dedented relative to
1206 ;; py-compute-indentation were put there on purpose. It's
1207 ;; highly annoying to have `:' indent for you. Use TAB, C-c
1208 ;; C-l or C-c C-r to adjust. TBD: Is there a better way to
1209 ;; determine this???
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001210 (if (< (current-indentation) indent) nil
1211 (goto-char here)
1212 (beginning-of-line)
1213 (delete-horizontal-space)
1214 (indent-to (- indent outdent))
1215 )))))
Barry Warsawb91b7431995-03-14 15:55:20 +00001216
1217
Barry Warsawa97a3f31997-11-04 18:47:06 +00001218;; Python subprocess utilities and filters
1219(defun py-execute-file (proc filename)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001220 "Send to Python interpreter process PROC \"execfile('FILENAME')\".
1221Make that process's buffer visible and force display. Also make
1222comint believe the user typed this string so that
1223`kill-output-from-shell' does The Right Thing."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001224 (let ((curbuf (current-buffer))
1225 (procbuf (process-buffer proc))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001226; (comint-scroll-to-bottom-on-output t)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001227 (msg (format "## working on region in file %s...\n" filename))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001228 (cmd (format "execfile(r'%s')\n" filename)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001229 (unwind-protect
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001230 (save-excursion
Barry Warsawa97a3f31997-11-04 18:47:06 +00001231 (set-buffer procbuf)
1232 (goto-char (point-max))
1233 (move-marker (process-mark proc) (point))
1234 (funcall (process-filter proc) proc msg))
1235 (set-buffer curbuf))
1236 (process-send-string proc cmd)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001237
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001238(defun py-comint-output-filter-function (string)
1239 "Watch output for Python prompt and exec next file waiting in queue.
1240This function is appropriate for `comint-output-filter-functions'."
Barry Warsaw014e0e21998-11-17 19:24:47 +00001241 ;; TBD: this should probably use split-string
Barry Warsaw4f94c731998-09-25 19:40:10 +00001242 (when (and (or (string-equal string ">>> ")
Barry Warsaw4f94c731998-09-25 19:40:10 +00001243 (and (>= (length string) 5)
1244 (string-equal (substring string -5) "\n>>> ")))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001245 py-file-queue)
Barry Warsaw17afa132002-04-26 15:49:52 +00001246 (pop-to-buffer (current-buffer))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001247 (py-safe (delete-file (car py-file-queue)))
1248 (setq py-file-queue (cdr py-file-queue))
1249 (if py-file-queue
1250 (let ((pyproc (get-buffer-process (current-buffer))))
1251 (py-execute-file pyproc (car py-file-queue))))
1252 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001253
Barry Warsaw4f577d22001-04-11 20:23:17 +00001254(defun py-pdbtrack-overlay-arrow (activation)
1255 "Activate or de arrow at beginning-of-line in current buffer."
1256 ;; This was derived/simplified from edebug-overlay-arrow
1257 (cond (activation
1258 (setq overlay-arrow-position (make-marker))
1259 (setq overlay-arrow-string "=>")
1260 (set-marker overlay-arrow-position (py-point 'bol) (current-buffer))
1261 (setq py-pdbtrack-is-tracking-p t))
1262 (overlay-arrow-position
1263 (setq overlay-arrow-position nil)
1264 (setq py-pdbtrack-is-tracking-p nil))
1265 ))
1266
1267(defun py-pdbtrack-track-stack-file (text)
1268 "Show the file indicated by the pdb stack entry line, in a separate window.
1269
1270Activity is disabled if the buffer-local variable
1271`py-pdbtrack-do-tracking-p' is nil.
1272
1273We depend on the pdb input prompt matching `py-pdbtrack-input-prompt'
1274at the beginning of the line."
1275 ;; Instead of trying to piece things together from partial text
1276 ;; (which can be almost useless depending on Emacs version), we
1277 ;; monitor to the point where we have the next pdb prompt, and then
1278 ;; check all text from comint-last-input-end to process-mark.
1279 ;;
1280 ;; KLM: It might be nice to provide an optional override, so this
1281 ;; routine could be fed debugger output strings as the text
1282 ;; argument, for deliberate application elsewhere.
1283 ;;
1284 ;; KLM: We're very conservative about clearing the overlay arrow, to
1285 ;; minimize residue. This means, for instance, that executing other
1286 ;; pdb commands wipes out the highlight.
1287 (let* ((origbuf (current-buffer))
1288 (currproc (get-buffer-process origbuf)))
1289 (if (not (and currproc py-pdbtrack-do-tracking-p))
1290 (py-pdbtrack-overlay-arrow nil)
1291 (let* (;(origdir default-directory)
1292 (procmark (process-mark currproc))
1293 (block (buffer-substring (max comint-last-input-end
1294 (- procmark
1295 py-pdbtrack-track-range))
1296 procmark))
1297 fname lineno)
1298 (if (not (string-match (concat py-pdbtrack-input-prompt "$") block))
1299 (py-pdbtrack-overlay-arrow nil)
1300 (if (not (string-match
1301 (concat ".*" py-pdbtrack-stack-entry-regexp ".*")
1302 block))
1303 (py-pdbtrack-overlay-arrow nil)
1304 (setq fname (match-string 1 block)
1305 lineno (match-string 2 block))
1306 (if (file-exists-p fname)
1307 (progn
1308 (find-file-other-window fname)
1309 (goto-line (string-to-int lineno))
Barry Warsawc8c1a5b2001-04-11 22:27:41 +00001310 (message "pdbtrack: line %s, file %s" lineno fname)
Barry Warsaw4f577d22001-04-11 20:23:17 +00001311 (py-pdbtrack-overlay-arrow t)
1312 (pop-to-buffer origbuf t) )
1313 (if (= (elt fname 0) ?\<)
Barry Warsawc8c1a5b2001-04-11 22:27:41 +00001314 (message "pdbtrack: (Non-file source: '%s')" fname)
1315 (message "pdbtrack: File not found: %s" fname))
Barry Warsaw4f577d22001-04-11 20:23:17 +00001316 )))))))
1317
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001318(defun py-postprocess-output-buffer (buf)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001319 "Highlight exceptions found in BUF.
1320If an exception occurred return t, otherwise return nil. BUF must exist."
Barry Warsawf9b99f41998-03-26 16:08:59 +00001321 (let (line file bol err-p)
Barry Warsaw9981d221997-12-03 05:25:48 +00001322 (save-excursion
1323 (set-buffer buf)
1324 (beginning-of-buffer)
1325 (while (re-search-forward py-traceback-line-re nil t)
1326 (setq file (match-string 1)
1327 line (string-to-int (match-string 2))
1328 bol (py-point 'bol))
Barry Warsawf9b99f41998-03-26 16:08:59 +00001329 (py-highlight-line bol (py-point 'eol) file line)))
1330 (when (and py-jump-on-exception line)
1331 (beep)
1332 (py-jump-to-exception file line)
1333 (setq err-p t))
1334 err-p))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001335
Barry Warsaw9981d221997-12-03 05:25:48 +00001336
Barry Warsawa97a3f31997-11-04 18:47:06 +00001337
1338;;; Subprocess commands
1339
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001340;; only used when (memq 'broken-temp-names py-emacs-features)
1341(defvar py-serial-number 0)
1342(defvar py-exception-buffer nil)
1343(defconst py-output-buffer "*Python Output*")
Barry Warsawa2398801998-04-09 23:28:20 +00001344(make-variable-buffer-local 'py-output-buffer)
1345
1346;; for toggling between CPython and JPython
Barry Warsawaa384fd1999-02-16 23:36:16 +00001347(defvar py-which-shell nil)
Barry Warsawa2398801998-04-09 23:28:20 +00001348(defvar py-which-args py-python-command-args)
1349(defvar py-which-bufname "Python")
1350(make-variable-buffer-local 'py-which-shell)
1351(make-variable-buffer-local 'py-which-args)
1352(make-variable-buffer-local 'py-which-bufname)
1353
1354(defun py-toggle-shells (arg)
1355 "Toggles between the CPython and JPython shells.
Barry Warsaw11f21561999-07-28 21:59:43 +00001356
Barry Warsaw41a05c71998-08-10 16:33:12 +00001357With positive argument ARG (interactively \\[universal-argument]),
1358uses the CPython shell, with negative ARG uses the JPython shell, and
Barry Warsaw11f21561999-07-28 21:59:43 +00001359with a zero argument, toggles the shell.
1360
1361Programmatically, ARG can also be one of the symbols `cpython' or
1362`jpython', equivalent to positive arg and negative arg respectively."
Barry Warsawa2398801998-04-09 23:28:20 +00001363 (interactive "P")
1364 ;; default is to toggle
1365 (if (null arg)
1366 (setq arg 0))
Barry Warsaw11f21561999-07-28 21:59:43 +00001367 ;; preprocess arg
1368 (cond
1369 ((equal arg 0)
1370 ;; toggle
1371 (if (string-equal py-which-bufname "Python")
1372 (setq arg -1)
1373 (setq arg 1)))
1374 ((equal arg 'cpython) (setq arg 1))
1375 ((equal arg 'jpython) (setq arg -1)))
Barry Warsawa2398801998-04-09 23:28:20 +00001376 (let (msg)
1377 (cond
1378 ((< 0 arg)
1379 ;; set to CPython
1380 (setq py-which-shell py-python-command
1381 py-which-args py-python-command-args
1382 py-which-bufname "Python"
1383 msg "CPython"
1384 mode-name "Python"))
1385 ((> 0 arg)
1386 (setq py-which-shell py-jpython-command
1387 py-which-args py-jpython-command-args
1388 py-which-bufname "JPython"
1389 msg "JPython"
1390 mode-name "JPython"))
1391 )
Barry Warsawea609c11998-04-10 16:08:26 +00001392 (message "Using the %s shell" msg)
Barry Warsawa2398801998-04-09 23:28:20 +00001393 (setq py-output-buffer (format "*%s Output*" py-which-bufname))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001394
Barry Warsawa97a3f31997-11-04 18:47:06 +00001395;;;###autoload
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001396(defun py-shell (&optional argprompt)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001397 "Start an interactive Python interpreter in another window.
1398This is like Shell mode, except that Python is running in the window
1399instead of a shell. See the `Interactive Shell' and `Shell Mode'
1400sections of the Emacs manual for details, especially for the key
1401bindings active in the `*Python*' buffer.
1402
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001403With optional \\[universal-argument], the user is prompted for the
1404flags to pass to the Python interpreter. This has no effect when this
1405command is used to switch to an existing process, only when a new
1406process is started. If you use this, you will probably want to ensure
1407that the current arguments are retained (they will be included in the
1408prompt). This argument is ignored when this function is called
1409programmatically, or when running in Emacs 19.34 or older.
1410
Barry Warsawa2398801998-04-09 23:28:20 +00001411Note: You can toggle between using the CPython interpreter and the
1412JPython interpreter by hitting \\[py-toggle-shells]. This toggles
1413buffer local variables which control whether all your subshell
1414interactions happen to the `*JPython*' or `*Python*' buffers (the
1415latter is the name used for the CPython buffer).
1416
Barry Warsawa97a3f31997-11-04 18:47:06 +00001417Warning: Don't use an interactive Python if you change sys.ps1 or
1418sys.ps2 from their default values, or if you're running code that
1419prints `>>> ' or `... ' at the start of a line. `python-mode' can't
1420distinguish your output from Python's output, and assumes that `>>> '
1421at the start of a line is a prompt from Python. Similarly, the Emacs
1422Shell mode code assumes that both `>>> ' and `... ' at the start of a
1423line are Python prompts. Bad things can happen if you fool either
1424mode.
1425
1426Warning: If you do any editing *in* the process buffer *while* the
1427buffer is accepting output from Python, do NOT attempt to `undo' the
1428changes. Some of the output (nowhere near the parts you changed!) may
1429be lost if you do. This appears to be an Emacs bug, an unfortunate
1430interaction between undo and process filters; the same problem exists in
1431non-Python process buffers using the default (Emacs-supplied) process
1432filter."
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001433 (interactive "P")
Barry Warsaw50765ab1999-08-10 21:49:00 +00001434 ;; Set the default shell if not already set
1435 (when (null py-which-shell)
1436 (py-toggle-shells py-default-interpreter))
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001437 (let ((args py-which-args))
1438 (when (and argprompt
1439 (interactive-p)
1440 (fboundp 'split-string))
1441 ;; TBD: Perhaps force "-i" in the final list?
1442 (setq args (split-string
1443 (read-string (concat py-which-bufname
1444 " arguments: ")
1445 (concat
1446 (mapconcat 'identity py-which-args " ") " ")
1447 ))))
1448 (switch-to-buffer-other-window
1449 (apply 'make-comint py-which-bufname py-which-shell nil args))
1450 (make-local-variable 'comint-prompt-regexp)
1451 (setq comint-prompt-regexp "^>>> \\|^[.][.][.] \\|^(pdb) ")
1452 (add-hook 'comint-output-filter-functions
1453 'py-comint-output-filter-function)
Barry Warsaw4f577d22001-04-11 20:23:17 +00001454 ;; pdbtrack
1455 (add-hook 'comint-output-filter-functions 'py-pdbtrack-track-stack-file)
1456 (setq py-pdbtrack-do-tracking-p t)
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001457 (set-syntax-table py-mode-syntax-table)
1458 (use-local-map py-shell-map)
Barry Warsaw56bd2ed2002-04-25 15:44:17 +00001459 (run-hooks 'py-shell-hook)
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001460 ))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001461
Barry Warsawa97a3f31997-11-04 18:47:06 +00001462(defun py-clear-queue ()
1463 "Clear the queue of temporary files waiting to execute."
1464 (interactive)
1465 (let ((n (length py-file-queue)))
1466 (mapcar 'delete-file py-file-queue)
1467 (setq py-file-queue nil)
1468 (message "%d pending files de-queued." n)))
1469
Barry Warsaw820273d1998-05-19 15:54:45 +00001470
Barry Warsawa97a3f31997-11-04 18:47:06 +00001471(defun py-execute-region (start end &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001472 "Execute the region in a Python interpreter.
1473
Barry Warsawa97a3f31997-11-04 18:47:06 +00001474The region is first copied into a temporary file (in the directory
1475`py-temp-directory'). If there is no Python interpreter shell
1476running, this file is executed synchronously using
Barry Warsaw41a05c71998-08-10 16:33:12 +00001477`shell-command-on-region'. If the program is long running, use
1478\\[universal-argument] to run the command asynchronously in its own
1479buffer.
1480
1481When this function is used programmatically, arguments START and END
1482specify the region to execute, and optional third argument ASYNC, if
1483non-nil, specifies to run the command asynchronously in its own
1484buffer.
Barry Warsawa97a3f31997-11-04 18:47:06 +00001485
1486If the Python interpreter shell is running, the region is execfile()'d
1487in that shell. If you try to execute regions too quickly,
1488`python-mode' will queue them up and execute them one at a time when
1489it sees a `>>> ' prompt from Python. Each time this happens, the
1490process buffer is popped into a window (if it's not already in some
1491window) so you can see it, and a comment of the form
1492
1493 \t## working on region in file <name>...
1494
1495is inserted at the end. See also the command `py-clear-queue'."
1496 (interactive "r\nP")
Barry Warsaw4aab68e2002-04-25 19:17:42 +00001497 ;; Skip ahead to the first non-blank line
1498 (goto-char start)
1499 (beginning-of-line)
1500 (while (and (looking-at "\\s *$")
1501 (< (point) end))
1502 (forward-line 1))
1503 (setq start (point))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001504 (or (< start end)
1505 (error "Region is empty"))
Barry Warsaw014e0e21998-11-17 19:24:47 +00001506 (let* ((proc (get-process py-which-bufname))
Barry Warsaw5e21cb01997-11-05 18:41:11 +00001507 (temp (if (memq 'broken-temp-names py-emacs-features)
Barry Warsaw1b344241998-08-07 22:24:16 +00001508 (let
1509 ((sn py-serial-number)
1510 (pid (and (fboundp 'emacs-pid) (emacs-pid))))
1511 (setq py-serial-number (1+ py-serial-number))
1512 (if pid
1513 (format "python-%d-%d" sn pid)
1514 (format "python-%d" sn)))
Barry Warsaw2f32fbb1998-02-25 16:45:43 +00001515 (make-temp-name "python-")))
Barry Warsawb2d5e622002-04-22 15:29:27 +00001516 (file (concat (expand-file-name temp py-temp-directory) ".py"))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001517 (cur (current-buffer))
Barry Warsawb2d5e622002-04-22 15:29:27 +00001518 (buf (get-buffer-create file))
1519 shell)
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001520 ;; Write the contents of the buffer, watching out for indented regions.
1521 (save-excursion
1522 (goto-char start)
Barry Warsaw99eadf42000-06-23 20:24:25 +00001523 (let ((needs-if (/= (py-point 'bol) (py-point 'boi))))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001524 (set-buffer buf)
Barry Warsawb2d5e622002-04-22 15:29:27 +00001525 (python-mode)
Barry Warsaw99eadf42000-06-23 20:24:25 +00001526 (when needs-if
1527 (insert "if 1:\n"))
Barry Warsawa0113cd2002-04-22 16:23:29 +00001528 (insert-buffer-substring cur start end)
1529 ;; Set the shell either to the #! line command, or to the
1530 ;; py-which-shell buffer local variable.
Barry Warsaw88491612002-04-25 21:31:47 +00001531 (setq shell (or (py-choose-shell-by-shebang)
1532 (py-choose-shell-by-import)
1533 py-which-shell))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001534 (cond
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001535 ;; always run the code in its own asynchronous subprocess
Barry Warsawa97a3f31997-11-04 18:47:06 +00001536 (async
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001537 ;; User explicitly wants this to run in its own async subprocess
1538 (save-excursion
1539 (set-buffer buf)
1540 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsaw34d83171998-11-20 03:04:07 +00001541 (let* ((buf (generate-new-buffer-name py-output-buffer))
1542 ;; TBD: a horrible hack, but why create new Custom variables?
1543 (arg (if (string-equal py-which-bufname "Python")
1544 "-u" "")))
Barry Warsawb2d5e622002-04-22 15:29:27 +00001545 (start-process py-which-bufname buf shell arg file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001546 (pop-to-buffer buf)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001547 (py-postprocess-output-buffer buf)
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001548 ;; TBD: clean up the temporary file!
Barry Warsawa97a3f31997-11-04 18:47:06 +00001549 ))
1550 ;; if the Python interpreter shell is running, queue it up for
1551 ;; execution there.
1552 (proc
1553 ;; use the existing python shell
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001554 (save-excursion
1555 (set-buffer buf)
1556 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001557 (if (not py-file-queue)
1558 (py-execute-file proc file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001559 (message "File %s queued for execution" file))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001560 (setq py-file-queue (append py-file-queue (list file)))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001561 (setq py-exception-buffer (cons file (current-buffer))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001562 (t
Barry Warsawa0113cd2002-04-22 16:23:29 +00001563 ;; TBD: a horrible hack, but why create new Custom variables?
1564 (let ((cmd (concat shell (if (string-equal py-which-bufname "JPython")
1565 " -" ""))))
Barry Warsaw34d83171998-11-20 03:04:07 +00001566 ;; otherwise either run it synchronously in a subprocess
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001567 (save-excursion
1568 (set-buffer buf)
1569 (shell-command-on-region (point-min) (point-max)
1570 cmd py-output-buffer))
Barry Warsaw34d83171998-11-20 03:04:07 +00001571 ;; shell-command-on-region kills the output buffer if it never
1572 ;; existed and there's no output from the command
1573 (if (not (get-buffer py-output-buffer))
1574 (message "No output.")
1575 (setq py-exception-buffer (current-buffer))
1576 (let ((err-p (py-postprocess-output-buffer py-output-buffer)))
1577 (pop-to-buffer py-output-buffer)
1578 (if err-p
1579 (pop-to-buffer py-exception-buffer)))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001580 ))
Barry Warsaw29a90f02002-04-22 21:48:20 +00001581 ))
Barry Warsaw71534602001-02-20 23:07:56 +00001582 ;; Clean up after ourselves.
1583 (kill-buffer buf)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001584
Barry Warsaw820273d1998-05-19 15:54:45 +00001585
1586;; Code execution commands
Barry Warsawa97a3f31997-11-04 18:47:06 +00001587(defun py-execute-buffer (&optional async)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001588 "Send the contents of the buffer to a Python interpreter.
Barry Warsawc0ecb531998-01-20 21:43:34 +00001589If the file local variable `py-master-file' is non-nil, execute the
1590named file instead of the buffer's file.
1591
Barry Warsaw7ae77681994-12-12 20:38:05 +00001592If there is a *Python* process buffer it is used. If a clipping
1593restriction is in effect, only the accessible portion of the buffer is
1594sent. A trailing newline will be supplied if needed.
1595
Barry Warsaw41a05c71998-08-10 16:33:12 +00001596See the `\\[py-execute-region]' docs for an account of some
1597subtleties, including the use of the optional ASYNC argument."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001598 (interactive "P")
Barry Warsawc0ecb531998-01-20 21:43:34 +00001599 (if py-master-file
1600 (let* ((filename (expand-file-name py-master-file))
1601 (buffer (or (get-file-buffer filename)
1602 (find-file-noselect filename))))
1603 (set-buffer buffer)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001604 (py-execute-region (point-min) (point-max) async))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001605
Barry Warsaw820273d1998-05-19 15:54:45 +00001606(defun py-execute-import-or-reload (&optional async)
1607 "Import the current buffer's file in a Python interpreter.
1608
1609If the file has already been imported, then do reload instead to get
Barry Warsaw7c29b231998-07-07 17:45:38 +00001610the latest version.
1611
1612If the file's name does not end in \".py\", then do execfile instead.
1613
1614If the current buffer is not visiting a file, do `py-execute-buffer'
1615instead.
1616
1617If the file local variable `py-master-file' is non-nil, import or
1618reload the named file instead of the buffer's file. The file may be
1619saved based on the value of `py-execute-import-or-reload-save-p'.
Barry Warsaw820273d1998-05-19 15:54:45 +00001620
Barry Warsaw41a05c71998-08-10 16:33:12 +00001621See the `\\[py-execute-region]' docs for an account of some
1622subtleties, including the use of the optional ASYNC argument.
Barry Warsaw820273d1998-05-19 15:54:45 +00001623
Barry Warsaw7c29b231998-07-07 17:45:38 +00001624This may be preferable to `\\[py-execute-buffer]' because:
Barry Warsaw820273d1998-05-19 15:54:45 +00001625
1626 - Definitions stay in their module rather than appearing at top
1627 level, where they would clutter the global namespace and not affect
1628 uses of qualified names (MODULE.NAME).
1629
1630 - The Python debugger gets line number information about the functions."
1631 (interactive "P")
1632 ;; Check file local variable py-master-file
1633 (if py-master-file
1634 (let* ((filename (expand-file-name py-master-file))
1635 (buffer (or (get-file-buffer filename)
1636 (find-file-noselect filename))))
1637 (set-buffer buffer)))
1638 (let ((file (buffer-file-name (current-buffer))))
1639 (if file
1640 (progn
Barry Warsaw3bfed5b1998-05-19 16:25:04 +00001641 ;; Maybe save some buffers
1642 (save-some-buffers (not py-ask-about-save) nil)
Barry Warsaw820273d1998-05-19 15:54:45 +00001643 (py-execute-string
1644 (if (string-match "\\.py$" file)
1645 (let ((f (file-name-sans-extension
1646 (file-name-nondirectory file))))
1647 (format "if globals().has_key('%s'):\n reload(%s)\nelse:\n import %s\n"
1648 f f f))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001649 (format "execfile(r'%s')\n" file))
Barry Warsaw820273d1998-05-19 15:54:45 +00001650 async))
1651 ;; else
1652 (py-execute-buffer async))))
1653
1654
1655(defun py-execute-def-or-class (&optional async)
1656 "Send the current function or class definition to a Python interpreter.
1657
1658If there is a *Python* process buffer it is used.
1659
Barry Warsaw41a05c71998-08-10 16:33:12 +00001660See the `\\[py-execute-region]' docs for an account of some
1661subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001662 (interactive "P")
1663 (save-excursion
1664 (py-mark-def-or-class)
1665 ;; mark is before point
1666 (py-execute-region (mark) (point) async)))
1667
1668
1669(defun py-execute-string (string &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001670 "Send the argument STRING to a Python interpreter.
Barry Warsaw820273d1998-05-19 15:54:45 +00001671
1672If there is a *Python* process buffer it is used.
1673
Barry Warsaw41a05c71998-08-10 16:33:12 +00001674See the `\\[py-execute-region]' docs for an account of some
1675subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001676 (interactive "sExecute Python command: ")
1677 (save-excursion
1678 (set-buffer (get-buffer-create
1679 (generate-new-buffer-name " *Python Command*")))
1680 (insert string)
1681 (py-execute-region (point-min) (point-max) async)))
1682
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001683
1684
1685(defun py-jump-to-exception (file line)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001686 "Jump to the Python code in FILE at LINE."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001687 (let ((buffer (cond ((string-equal file "<stdin>")
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001688 (if (consp py-exception-buffer)
1689 (cdr py-exception-buffer)
1690 py-exception-buffer))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001691 ((and (consp py-exception-buffer)
1692 (string-equal file (car py-exception-buffer)))
1693 (cdr py-exception-buffer))
1694 ((py-safe (find-file-noselect file)))
1695 ;; could not figure out what file the exception
1696 ;; is pointing to, so prompt for it
1697 (t (find-file (read-file-name "Exception file: "
1698 nil
1699 file t))))))
1700 (pop-to-buffer buffer)
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001701 ;; Force Python mode
Barry Warsaw820273d1998-05-19 15:54:45 +00001702 (if (not (eq major-mode 'python-mode))
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001703 (python-mode))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001704 (goto-line line)
1705 (message "Jumping to exception in file %s on line %d" file line)))
1706
1707(defun py-mouseto-exception (event)
Barry Warsaw12c92941998-08-10 21:44:37 +00001708 "Jump to the code which caused the Python exception at EVENT.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001709EVENT is usually a mouse click."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001710 (interactive "e")
1711 (cond
1712 ((fboundp 'event-point)
1713 ;; XEmacs
1714 (let* ((point (event-point event))
1715 (buffer (event-buffer event))
1716 (e (and point buffer (extent-at point buffer 'py-exc-info)))
1717 (info (and e (extent-property e 'py-exc-info))))
1718 (message "Event point: %d, info: %s" point info)
1719 (and info
1720 (py-jump-to-exception (car info) (cdr info)))
1721 ))
1722 ;; Emacs -- Please port this!
1723 ))
1724
1725(defun py-goto-exception ()
1726 "Go to the line indicated by the traceback."
1727 (interactive)
1728 (let (file line)
1729 (save-excursion
1730 (beginning-of-line)
1731 (if (looking-at py-traceback-line-re)
1732 (setq file (match-string 1)
1733 line (string-to-int (match-string 2)))))
1734 (if (not file)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001735 (error "Not on a traceback line"))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001736 (py-jump-to-exception file line)))
1737
1738(defun py-find-next-exception (start buffer searchdir errwhere)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001739 "Find the next Python exception and jump to the code that caused it.
1740START is the buffer position in BUFFER from which to begin searching
1741for an exception. SEARCHDIR is a function, either
1742`re-search-backward' or `re-search-forward' indicating the direction
1743to search. ERRWHERE is used in an error message if the limit (top or
1744bottom) of the trackback stack is encountered."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001745 (let (file line)
1746 (save-excursion
1747 (set-buffer buffer)
1748 (goto-char (py-point start))
1749 (if (funcall searchdir py-traceback-line-re nil t)
1750 (setq file (match-string 1)
1751 line (string-to-int (match-string 2)))))
1752 (if (and file line)
1753 (py-jump-to-exception file line)
1754 (error "%s of traceback" errwhere))))
1755
1756(defun py-down-exception (&optional bottom)
1757 "Go to the next line down in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001758With \\[univeral-argument] (programmatically, optional argument
1759BOTTOM), jump to the bottom (innermost) exception in the exception
1760stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001761 (interactive "P")
1762 (let* ((proc (get-process "Python"))
1763 (buffer (if proc "*Python*" py-output-buffer)))
1764 (if bottom
1765 (py-find-next-exception 'eob buffer 're-search-backward "Bottom")
1766 (py-find-next-exception 'eol buffer 're-search-forward "Bottom"))))
1767
1768(defun py-up-exception (&optional top)
1769 "Go to the previous line up in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001770With \\[universal-argument] (programmatically, optional argument TOP)
1771jump to the top (outermost) exception in the exception stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001772 (interactive "P")
1773 (let* ((proc (get-process "Python"))
1774 (buffer (if proc "*Python*" py-output-buffer)))
1775 (if top
1776 (py-find-next-exception 'bob buffer 're-search-forward "Top")
Barry Warsawffbc17d1997-11-27 20:08:14 +00001777 (py-find-next-exception 'bol buffer 're-search-backward "Top"))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001778
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001779
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001780;; Electric deletion
1781(defun py-electric-backspace (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001782 "Delete preceding character or levels of indentation.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001783Deletion is performed by calling the function in `py-backspace-function'
Barry Warsawb0539931996-12-17 22:05:07 +00001784with a single argument (the number of characters to delete).
Barry Warsaw7ae77681994-12-12 20:38:05 +00001785
Barry Warsaw41a05c71998-08-10 16:33:12 +00001786If point is at the leftmost column, delete the preceding newline.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001787
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001788Otherwise, if point is at the leftmost non-whitespace character of a
1789line that is neither a continuation line nor a non-indenting comment
1790line, or if point is at the end of a blank line, this command reduces
1791the indentation to match that of the line that opened the current
1792block of code. The line that opened the block is displayed in the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001793echo area to help you keep track of where you are. With
1794\\[universal-argument] dedents that many blocks (but not past column
1795zero).
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001796
1797Otherwise the preceding character is deleted, converting a tab to
1798spaces if needed so that only a single column position is deleted.
Barry Warsawfa2def21999-05-24 21:43:37 +00001799\\[universal-argument] specifies how many characters to delete;
1800default is 1.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001801
1802When used programmatically, argument ARG specifies the number of
1803blocks to dedent, or the number of characters to delete, as indicated
1804above."
Barry Warsaw03970731996-07-03 23:12:52 +00001805 (interactive "*p")
Barry Warsaw7ae77681994-12-12 20:38:05 +00001806 (if (or (/= (current-indentation) (current-column))
1807 (bolp)
1808 (py-continuation-line-p)
Barry Warsawfa2def21999-05-24 21:43:37 +00001809; (not py-honor-comment-indentation)
1810; (looking-at "#[^ \t\n]") ; non-indenting #
1811 )
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001812 (funcall py-backspace-function arg)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001813 ;; else indent the same as the colon line that opened the block
Barry Warsaw7ae77681994-12-12 20:38:05 +00001814 ;; force non-blank so py-goto-block-up doesn't ignore it
1815 (insert-char ?* 1)
1816 (backward-char)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001817 (let ((base-indent 0) ; indentation of base line
1818 (base-text "") ; and text of base line
1819 (base-found-p nil))
Barry Warsaw03970731996-07-03 23:12:52 +00001820 (save-excursion
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001821 (while (< 0 arg)
Barry Warsaw03970731996-07-03 23:12:52 +00001822 (condition-case nil ; in case no enclosing block
1823 (progn
1824 (py-goto-block-up 'no-mark)
1825 (setq base-indent (current-indentation)
1826 base-text (py-suck-up-leading-text)
1827 base-found-p t))
1828 (error nil))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001829 (setq arg (1- arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001830 (delete-char 1) ; toss the dummy character
1831 (delete-horizontal-space)
1832 (indent-to base-indent)
1833 (if base-found-p
1834 (message "Closes block: %s" base-text)))))
1835
Barry Warsawfc8a01f1995-03-09 16:07:29 +00001836
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001837(defun py-electric-delete (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001838 "Delete preceding or following character or levels of whitespace.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001839
1840The behavior of this function depends on the variable
1841`delete-key-deletes-forward'. If this variable is nil (or does not
Barry Warsaw41a05c71998-08-10 16:33:12 +00001842exist, as in older Emacsen and non-XEmacs versions), then this
1843function behaves identically to \\[c-electric-backspace].
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001844
1845If `delete-key-deletes-forward' is non-nil and is supported in your
1846Emacs, then deletion occurs in the forward direction, by calling the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001847function in `py-delete-function'.
1848
1849\\[universal-argument] (programmatically, argument ARG) specifies the
1850number of characters to delete (default is 1)."
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001851 (interactive "*p")
Barry Warsaw1d7b0fa1999-01-15 02:12:31 +00001852 (if (or (and (fboundp 'delete-forward-p) ;XEmacs 21
1853 (delete-forward-p))
1854 (and (boundp 'delete-key-deletes-forward) ;XEmacs 20
1855 delete-key-deletes-forward))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001856 (funcall py-delete-function arg)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001857 (py-electric-backspace arg)))
1858
1859;; required for pending-del and delsel modes
1860(put 'py-electric-backspace 'delete-selection 'supersede) ;delsel
1861(put 'py-electric-backspace 'pending-delete 'supersede) ;pending-del
1862(put 'py-electric-delete 'delete-selection 'supersede) ;delsel
1863(put 'py-electric-delete 'pending-delete 'supersede) ;pending-del
1864
1865
1866
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001867(defun py-indent-line (&optional arg)
1868 "Fix the indentation of the current line according to Python rules.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001869With \\[universal-argument] (programmatically, the optional argument
1870ARG non-nil), ignore dedenting rules for block closing statements
1871(e.g. return, raise, break, continue, pass)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001872
1873This function is normally bound to `indent-line-function' so
1874\\[indent-for-tab-command] will call it."
1875 (interactive "P")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001876 (let* ((ci (current-indentation))
1877 (move-to-indentation-p (<= (current-column) ci))
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001878 (need (py-compute-indentation (not arg))))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001879 ;; see if we need to dedent
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001880 (if (py-outdent-p)
Barry Warsaw0012c1e1995-03-14 16:32:55 +00001881 (setq need (- need py-indent-offset)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001882 (if (/= ci need)
1883 (save-excursion
1884 (beginning-of-line)
1885 (delete-horizontal-space)
1886 (indent-to need)))
1887 (if move-to-indentation-p (back-to-indentation))))
1888
1889(defun py-newline-and-indent ()
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001890 "Strives to act like the Emacs `newline-and-indent'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001891This is just `strives to' because correct indentation can't be computed
1892from scratch for Python code. In general, deletes the whitespace before
1893point, inserts a newline, and takes an educated guess as to how you want
1894the new line indented."
1895 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001896 (let ((ci (current-indentation)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001897 (if (< ci (current-column)) ; if point beyond indentation
1898 (newline-and-indent)
1899 ;; else try to act like newline-and-indent "normally" acts
1900 (beginning-of-line)
1901 (insert-char ?\n 1)
1902 (move-to-column ci))))
1903
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001904(defun py-compute-indentation (honor-block-close-p)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001905 "Compute Python indentation.
1906When HONOR-BLOCK-CLOSE-P is non-nil, statements such as `return',
1907`raise', `break', `continue', and `pass' force one level of
1908dedenting."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001909 (save-excursion
Barry Warsawf64b4051998-02-12 16:52:14 +00001910 (beginning-of-line)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001911 (let* ((bod (py-point 'bod))
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001912 (pps (parse-partial-sexp bod (point)))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001913 (boipps (parse-partial-sexp bod (py-point 'boi)))
1914 placeholder)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001915 (cond
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001916 ;; are we inside a multi-line string or comment?
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001917 ((or (and (nth 3 pps) (nth 3 boipps))
1918 (and (nth 4 pps) (nth 4 boipps)))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001919 (save-excursion
1920 (if (not py-align-multiline-strings-p) 0
1921 ;; skip back over blank & non-indenting comment lines
1922 ;; note: will skip a blank or non-indenting comment line
1923 ;; that happens to be a continuation line too
1924 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move)
1925 (back-to-indentation)
1926 (current-column))))
1927 ;; are we on a continuation line?
1928 ((py-continuation-line-p)
1929 (let ((startpos (point))
1930 (open-bracket-pos (py-nesting-level))
Barry Warsawce60bc71996-08-01 18:17:14 +00001931 endpos searching found state)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001932 (if open-bracket-pos
1933 (progn
1934 ;; align with first item in list; else a normal
1935 ;; indent beyond the line with the open bracket
1936 (goto-char (1+ open-bracket-pos)) ; just beyond bracket
1937 ;; is the first list item on the same line?
1938 (skip-chars-forward " \t")
1939 (if (null (memq (following-char) '(?\n ?# ?\\)))
1940 ; yes, so line up with it
1941 (current-column)
1942 ;; first list item on another line, or doesn't exist yet
1943 (forward-line 1)
1944 (while (and (< (point) startpos)
1945 (looking-at "[ \t]*[#\n\\\\]")) ; skip noise
1946 (forward-line 1))
Barry Warsaw92166d91998-04-01 21:59:41 +00001947 (if (and (< (point) startpos)
1948 (/= startpos
1949 (save-excursion
1950 (goto-char (1+ open-bracket-pos))
Barry Warsaw77d1fce1998-04-16 20:04:59 +00001951 (forward-comment (point-max))
Barry Warsaw92166d91998-04-01 21:59:41 +00001952 (point))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001953 ;; again mimic the first list item
1954 (current-indentation)
1955 ;; else they're about to enter the first item
1956 (goto-char open-bracket-pos)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001957 (setq placeholder (point))
1958 (py-goto-initial-line)
1959 (py-goto-beginning-of-tqs
1960 (save-excursion (nth 3 (parse-partial-sexp
1961 placeholder (point)))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001962 (+ (current-indentation) py-indent-offset))))
1963
1964 ;; else on backslash continuation line
1965 (forward-line -1)
1966 (if (py-continuation-line-p) ; on at least 3rd line in block
1967 (current-indentation) ; so just continue the pattern
1968 ;; else started on 2nd line in block, so indent more.
1969 ;; if base line is an assignment with a start on a RHS,
1970 ;; indent to 2 beyond the leftmost "="; else skip first
1971 ;; chunk of non-whitespace characters on base line, + 1 more
1972 ;; column
1973 (end-of-line)
Barry Warsawfd4c9e82001-06-18 23:40:35 +00001974 (setq endpos (point)
1975 searching t)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001976 (back-to-indentation)
1977 (setq startpos (point))
1978 ;; look at all "=" from left to right, stopping at first
1979 ;; one not nested in a list or string
1980 (while searching
1981 (skip-chars-forward "^=" endpos)
1982 (if (= (point) endpos)
1983 (setq searching nil)
1984 (forward-char 1)
1985 (setq state (parse-partial-sexp startpos (point)))
1986 (if (and (zerop (car state)) ; not in a bracket
1987 (null (nth 3 state))) ; & not in a string
1988 (progn
1989 (setq searching nil) ; done searching in any case
1990 (setq found
1991 (not (or
1992 (eq (following-char) ?=)
1993 (memq (char-after (- (point) 2))
1994 '(?< ?> ?!)))))))))
1995 (if (or (not found) ; not an assignment
1996 (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash>
1997 (progn
1998 (goto-char startpos)
1999 (skip-chars-forward "^ \t\n")))
Barry Warsaw40fb4522001-07-06 20:07:13 +00002000 ;; if this is a continuation for a block opening
2001 ;; statement, add some extra offset.
2002 (+ (current-column) (if (py-statement-opens-block-p)
2003 py-continuation-offset 0)
2004 1)
Barry Warsawfd4c9e82001-06-18 23:40:35 +00002005 ))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002006
2007 ;; not on a continuation line
Barry Warsawa7891711996-08-01 15:53:09 +00002008 ((bobp) (current-indentation))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002009
Barry Warsawa7891711996-08-01 15:53:09 +00002010 ;; Dfn: "Indenting comment line". A line containing only a
2011 ;; comment, but which is treated like a statement for
2012 ;; indentation calculation purposes. Such lines are only
2013 ;; treated specially by the mode; they are not treated
2014 ;; specially by the Python interpreter.
2015
2016 ;; The rules for indenting comment lines are a line where:
2017 ;; - the first non-whitespace character is `#', and
2018 ;; - the character following the `#' is whitespace, and
Barry Warsaw41a05c71998-08-10 16:33:12 +00002019 ;; - the line is dedented with respect to (i.e. to the left
Barry Warsawa7891711996-08-01 15:53:09 +00002020 ;; of) the indentation of the preceding non-blank line.
2021
2022 ;; The first non-blank line following an indenting comment
2023 ;; line is given the same amount of indentation as the
2024 ;; indenting comment line.
2025
2026 ;; All other comment-only lines are ignored for indentation
2027 ;; purposes.
2028
2029 ;; Are we looking at a comment-only line which is *not* an
Barry Warsaw145ab1c1998-05-19 14:49:49 +00002030 ;; indenting comment line? If so, we assume that it's been
Barry Warsawa7891711996-08-01 15:53:09 +00002031 ;; placed at the desired indentation, so leave it alone.
2032 ;; Indenting comment lines are aligned as statements down
2033 ;; below.
2034 ((and (looking-at "[ \t]*#[^ \t\n]")
2035 ;; NOTE: this test will not be performed in older Emacsen
2036 (fboundp 'forward-comment)
2037 (<= (current-indentation)
2038 (save-excursion
2039 (forward-comment (- (point-max)))
2040 (current-indentation))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002041 (current-indentation))
2042
2043 ;; else indentation based on that of the statement that
2044 ;; precedes us; use the first line of that statement to
2045 ;; establish the base, in case the user forced a non-std
2046 ;; indentation for the continuation lines (if any)
2047 (t
Barry Warsawc01c5c81995-09-14 18:49:11 +00002048 ;; skip back over blank & non-indenting comment lines note:
2049 ;; will skip a blank or non-indenting comment line that
Barry Warsawfd0fb381996-03-04 17:15:40 +00002050 ;; happens to be a continuation line too. use fast Emacs 19
2051 ;; function if it's there.
Barry Warsaw6d627751996-03-06 18:41:38 +00002052 (if (and (eq py-honor-comment-indentation nil)
Barry Warsaw33d6ec01996-03-05 16:28:07 +00002053 (fboundp 'forward-comment))
Barry Warsawfd0fb381996-03-04 17:15:40 +00002054 (forward-comment (- (point-max)))
Barry Warsaw218eb751998-09-22 19:51:47 +00002055 (let ((prefix-re (concat py-block-comment-prefix "[ \t]*"))
2056 done)
Barry Warsaw6d627751996-03-06 18:41:38 +00002057 (while (not done)
Barry Warsaw12c92941998-08-10 21:44:37 +00002058 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#\\)" nil 'move)
2059 (setq done (or (bobp)
2060 (and (eq py-honor-comment-indentation t)
2061 (save-excursion
2062 (back-to-indentation)
Barry Warsaw218eb751998-09-22 19:51:47 +00002063 (not (looking-at prefix-re))
Barry Warsaw12c92941998-08-10 21:44:37 +00002064 ))
2065 (and (not (eq py-honor-comment-indentation t))
2066 (save-excursion
2067 (back-to-indentation)
Barry Warsawd36cfe42002-03-15 16:46:46 +00002068 (and (not (looking-at prefix-re))
2069 (or (looking-at "[^#]")
2070 (not (zerop (current-column)))
2071 ))
2072 ))
Barry Warsaw12c92941998-08-10 21:44:37 +00002073 ))
Barry Warsaw6d627751996-03-06 18:41:38 +00002074 )))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002075 ;; if we landed inside a string, go to the beginning of that
2076 ;; string. this handles triple quoted, multi-line spanning
2077 ;; strings.
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002078 (py-goto-beginning-of-tqs (nth 3 (parse-partial-sexp bod (point))))
Barry Warsawc210e691998-01-20 22:52:56 +00002079 ;; now skip backward over continued lines
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002080 (setq placeholder (point))
Barry Warsaw095e9c61995-09-19 20:01:42 +00002081 (py-goto-initial-line)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002082 ;; we may *now* have landed in a TQS, so find the beginning of
2083 ;; this string.
2084 (py-goto-beginning-of-tqs
2085 (save-excursion (nth 3 (parse-partial-sexp
2086 placeholder (point)))))
Barry Warsawf831d811996-07-31 20:42:59 +00002087 (+ (current-indentation)
2088 (if (py-statement-opens-block-p)
2089 py-indent-offset
Barry Warsaw7cb505c1996-10-23 20:44:59 +00002090 (if (and honor-block-close-p (py-statement-closes-block-p))
Barry Warsawf831d811996-07-31 20:42:59 +00002091 (- py-indent-offset)
2092 0)))
2093 )))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002094
2095(defun py-guess-indent-offset (&optional global)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002096 "Guess a good value for, and change, `py-indent-offset'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00002097
2098By default, make a buffer-local copy of `py-indent-offset' with the
2099new value, so that other Python buffers are not affected. With
2100\\[universal-argument] (programmatically, optional argument GLOBAL),
2101change the global value of `py-indent-offset'. This affects all
2102Python buffers (that don't have their own buffer-local copy), both
2103those currently existing and those created later in the Emacs session.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002104
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002105Some people use a different value for `py-indent-offset' than you use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002106There's no excuse for such foolishness, but sometimes you have to deal
2107with their ugly code anyway. This function examines the file and sets
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002108`py-indent-offset' to what it thinks it was when they created the
2109mess.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002110
2111Specifically, it searches forward from the statement containing point,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002112looking for a line that opens a block of code. `py-indent-offset' is
2113set to the difference in indentation between that line and the Python
Barry Warsaw7ae77681994-12-12 20:38:05 +00002114statement following it. If the search doesn't succeed going forward,
2115it's tried again going backward."
2116 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002117 (let (new-value
2118 (start (point))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002119 (restart (point))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002120 (found nil)
2121 colon-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002122 (py-goto-initial-line)
2123 (while (not (or found (eobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002124 (when (and (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2125 (not (py-in-literal restart)))
2126 (setq restart (point))
2127 (py-goto-initial-line)
2128 (if (py-statement-opens-block-p)
2129 (setq found t)
2130 (goto-char restart))))
2131 (unless found
Barry Warsaw7ae77681994-12-12 20:38:05 +00002132 (goto-char start)
2133 (py-goto-initial-line)
2134 (while (not (or found (bobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002135 (setq found (and
2136 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2137 (or (py-goto-initial-line) t) ; always true -- side effect
2138 (py-statement-opens-block-p)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002139 (setq colon-indent (current-indentation)
2140 found (and found (zerop (py-next-statement 1)))
2141 new-value (- (current-indentation) colon-indent))
2142 (goto-char start)
Barry Warsawe908b6b1998-03-19 22:48:02 +00002143 (if (not found)
2144 (error "Sorry, couldn't guess a value for py-indent-offset")
2145 (funcall (if global 'kill-local-variable 'make-local-variable)
2146 'py-indent-offset)
2147 (setq py-indent-offset new-value)
Barry Warsawd35c2551998-09-25 00:08:38 +00002148 (or noninteractive
2149 (message "%s value of py-indent-offset set to %d"
2150 (if global "Global" "Local")
2151 py-indent-offset)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00002152 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002153
Barry Warsaw003932a1998-07-07 15:11:24 +00002154(defun py-comment-indent-function ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002155 "Python version of `comment-indent-function'."
2156 ;; This is required when filladapt is turned off. Without it, when
2157 ;; filladapt is not used, comments which start in column zero
2158 ;; cascade one character to the right
Barry Warsaw003932a1998-07-07 15:11:24 +00002159 (save-excursion
2160 (beginning-of-line)
2161 (let ((eol (py-point 'eol)))
2162 (and comment-start-skip
2163 (re-search-forward comment-start-skip eol t)
2164 (setq eol (match-beginning 0)))
2165 (goto-char eol)
2166 (skip-chars-backward " \t")
2167 (max comment-column (+ (current-column) (if (bolp) 0 1)))
2168 )))
2169
Barry Warsawf8ddb6a1999-01-18 21:49:39 +00002170(defun py-narrow-to-defun (&optional class)
2171 "Make text outside current defun invisible.
2172The defun visible is the one that contains point or follows point.
2173Optional CLASS is passed directly to `py-beginning-of-def-or-class'."
2174 (interactive "P")
2175 (save-excursion
2176 (widen)
2177 (py-end-of-def-or-class class)
2178 (let ((end (point)))
2179 (py-beginning-of-def-or-class class)
2180 (narrow-to-region (point) end))))
2181
Barry Warsaw003932a1998-07-07 15:11:24 +00002182
Barry Warsaw7ae77681994-12-12 20:38:05 +00002183(defun py-shift-region (start end count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002184 "Indent lines from START to END by COUNT spaces."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002185 (save-excursion
Barry Warsaw41a05c71998-08-10 16:33:12 +00002186 (goto-char end)
2187 (beginning-of-line)
2188 (setq end (point))
2189 (goto-char start)
2190 (beginning-of-line)
2191 (setq start (point))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002192 (indent-rigidly start end count)))
2193
2194(defun py-shift-region-left (start end &optional count)
2195 "Shift region of Python code to the left.
2196The lines from the line containing the start of the current region up
2197to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002198shifted to the left, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002199
2200If a prefix argument is given, the region is instead shifted by that
Barry Warsaw41a05c71998-08-10 16:33:12 +00002201many columns. With no active region, dedent only the current line.
2202You cannot dedent the region if any line is already at column zero."
Barry Warsawdea4a291996-07-03 22:59:12 +00002203 (interactive
2204 (let ((p (point))
2205 (m (mark))
2206 (arg current-prefix-arg))
2207 (if m
2208 (list (min p m) (max p m) arg)
2209 (list p (save-excursion (forward-line 1) (point)) arg))))
2210 ;; if any line is at column zero, don't shift the region
2211 (save-excursion
2212 (goto-char start)
2213 (while (< (point) end)
2214 (back-to-indentation)
Barry Warsaw71e315b1996-07-23 15:03:16 +00002215 (if (and (zerop (current-column))
2216 (not (looking-at "\\s *$")))
Barry Warsaw41a05c71998-08-10 16:33:12 +00002217 (error "Region is at left edge"))
Barry Warsawdea4a291996-07-03 22:59:12 +00002218 (forward-line 1)))
2219 (py-shift-region start end (- (prefix-numeric-value
2220 (or count py-indent-offset))))
2221 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002222
2223(defun py-shift-region-right (start end &optional count)
2224 "Shift region of Python code to the right.
2225The lines from the line containing the start of the current region up
2226to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002227shifted to the right, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002228
2229If a prefix argument is given, the region is instead shifted by that
Barry Warsawdea4a291996-07-03 22:59:12 +00002230many columns. With no active region, indent only the current line."
2231 (interactive
2232 (let ((p (point))
2233 (m (mark))
2234 (arg current-prefix-arg))
2235 (if m
2236 (list (min p m) (max p m) arg)
2237 (list p (save-excursion (forward-line 1) (point)) arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002238 (py-shift-region start end (prefix-numeric-value
Barry Warsawdea4a291996-07-03 22:59:12 +00002239 (or count py-indent-offset)))
2240 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002241
2242(defun py-indent-region (start end &optional indent-offset)
2243 "Reindent a region of Python code.
Barry Warsaw867a32a1996-03-07 18:30:26 +00002244
Barry Warsaw7ae77681994-12-12 20:38:05 +00002245The lines from the line containing the start of the current region up
2246to (but not including) the line containing the end of the region are
2247reindented. If the first line of the region has a non-whitespace
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002248character in the first column, the first line is left alone and the
2249rest of the region is reindented with respect to it. Else the entire
Barry Warsaw867a32a1996-03-07 18:30:26 +00002250region is reindented with respect to the (closest code or indenting
2251comment) statement immediately preceding the region.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002252
2253This is useful when code blocks are moved or yanked, when enclosing
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002254control structures are introduced or removed, or to reformat code
2255using a new value for the indentation offset.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002256
2257If a numeric prefix argument is given, it will be used as the value of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002258the indentation offset. Else the value of `py-indent-offset' will be
Barry Warsaw7ae77681994-12-12 20:38:05 +00002259used.
2260
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002261Warning: The region must be consistently indented before this function
Barry Warsaw7ae77681994-12-12 20:38:05 +00002262is called! This function does not compute proper indentation from
2263scratch (that's impossible in Python), it merely adjusts the existing
2264indentation to be correct in context.
2265
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002266Warning: This function really has no idea what to do with
2267non-indenting comment lines, and shifts them as if they were indenting
2268comment lines. Fixing this appears to require telepathy.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002269
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002270Special cases: whitespace is deleted from blank lines; continuation
2271lines are shifted by the same amount their initial line was shifted,
2272in order to preserve their relative indentation with respect to their
Barry Warsaw7ae77681994-12-12 20:38:05 +00002273initial line; and comment lines beginning in column 1 are ignored."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002274 (interactive "*r\nP") ; region; raw prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002275 (save-excursion
2276 (goto-char end) (beginning-of-line) (setq end (point-marker))
2277 (goto-char start) (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002278 (let ((py-indent-offset (prefix-numeric-value
2279 (or indent-offset py-indent-offset)))
2280 (indents '(-1)) ; stack of active indent levels
2281 (target-column 0) ; column to which to indent
2282 (base-shifted-by 0) ; amount last base line was shifted
2283 (indent-base (if (looking-at "[ \t\n]")
Barry Warsaw7cb505c1996-10-23 20:44:59 +00002284 (py-compute-indentation t)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002285 0))
2286 ci)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002287 (while (< (point) end)
2288 (setq ci (current-indentation))
2289 ;; figure out appropriate target column
2290 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002291 ((or (eq (following-char) ?#) ; comment in column 1
2292 (looking-at "[ \t]*$")) ; entirely blank
2293 (setq target-column 0))
2294 ((py-continuation-line-p) ; shift relative to base line
2295 (setq target-column (+ ci base-shifted-by)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002296 (t ; new base line
2297 (if (> ci (car indents)) ; going deeper; push it
2298 (setq indents (cons ci indents))
2299 ;; else we should have seen this indent before
2300 (setq indents (memq ci indents)) ; pop deeper indents
2301 (if (null indents)
2302 (error "Bad indentation in region, at line %d"
2303 (save-restriction
2304 (widen)
2305 (1+ (count-lines 1 (point)))))))
2306 (setq target-column (+ indent-base
2307 (* py-indent-offset
2308 (- (length indents) 2))))
2309 (setq base-shifted-by (- target-column ci))))
2310 ;; shift as needed
2311 (if (/= ci target-column)
2312 (progn
2313 (delete-horizontal-space)
2314 (indent-to target-column)))
2315 (forward-line 1))))
2316 (set-marker end nil))
2317
Barry Warsawa7891711996-08-01 15:53:09 +00002318(defun py-comment-region (beg end &optional arg)
2319 "Like `comment-region' but uses double hash (`#') comment starter."
2320 (interactive "r\nP")
Barry Warsaw3fcaf611996-08-01 20:11:51 +00002321 (let ((comment-start py-block-comment-prefix))
Barry Warsawa7891711996-08-01 15:53:09 +00002322 (comment-region beg end arg)))
2323
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002324
2325;; Functions for moving point
Barry Warsaw7ae77681994-12-12 20:38:05 +00002326(defun py-previous-statement (count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002327 "Go to the start of the COUNTth preceding Python statement.
2328By default, goes to the previous statement. If there is no such
2329statement, goes to the first statement. Return count of statements
2330left to move. `Statements' do not include blank, comment, or
2331continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002332 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002333 (if (< count 0) (py-next-statement (- count))
2334 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002335 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002336 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002337 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002338 (> count 0)
2339 (zerop (forward-line -1))
2340 (py-goto-statement-at-or-above))
2341 (setq count (1- count)))
2342 (if (> count 0) (goto-char start)))
2343 count))
2344
2345(defun py-next-statement (count)
2346 "Go to the start of next Python statement.
2347If the statement at point is the i'th Python statement, goes to the
2348start of statement i+COUNT. If there is no such statement, goes to the
2349last statement. Returns count of statements left to move. `Statements'
2350do not include blank, comment, or continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002351 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002352 (if (< count 0) (py-previous-statement (- count))
2353 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002354 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002355 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002356 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002357 (> count 0)
2358 (py-goto-statement-below))
2359 (setq count (1- count)))
2360 (if (> count 0) (goto-char start)))
2361 count))
2362
2363(defun py-goto-block-up (&optional nomark)
2364 "Move up to start of current block.
2365Go to the statement that starts the smallest enclosing block; roughly
2366speaking, this will be the closest preceding statement that ends with a
2367colon and is indented less than the statement you started on. If
2368successful, also sets the mark to the starting point.
2369
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002370`\\[py-mark-block]' can be used afterward to mark the whole code
2371block, if desired.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002372
2373If called from a program, the mark will not be set if optional argument
2374NOMARK is not nil."
2375 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002376 (let ((start (point))
2377 (found nil)
2378 initial-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002379 (py-goto-initial-line)
2380 ;; if on blank or non-indenting comment line, use the preceding stmt
2381 (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2382 (progn
2383 (py-goto-statement-at-or-above)
2384 (setq found (py-statement-opens-block-p))))
2385 ;; search back for colon line indented less
2386 (setq initial-indent (current-indentation))
2387 (if (zerop initial-indent)
2388 ;; force fast exit
2389 (goto-char (point-min)))
2390 (while (not (or found (bobp)))
2391 (setq found
2392 (and
2393 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2394 (or (py-goto-initial-line) t) ; always true -- side effect
2395 (< (current-indentation) initial-indent)
2396 (py-statement-opens-block-p))))
2397 (if found
2398 (progn
2399 (or nomark (push-mark start))
2400 (back-to-indentation))
2401 (goto-char start)
2402 (error "Enclosing block not found"))))
2403
Barry Warsawab0e86c1998-05-19 15:31:46 +00002404(defun py-beginning-of-def-or-class (&optional class count)
2405 "Move point to start of `def' or `class'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002406
2407Searches back for the closest preceding `def'. If you supply a prefix
Barry Warsawab0e86c1998-05-19 15:31:46 +00002408arg, looks for a `class' instead. The docs below assume the `def'
2409case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002410Programmatically, if CLASS is `either', then moves to either `class'
2411or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002412
Barry Warsawab0e86c1998-05-19 15:31:46 +00002413When second optional argument is given programmatically, move to the
2414COUNTth start of `def'.
2415
2416If point is in a `def' statement already, and after the `d', simply
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002417moves point to the start of the statement.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002418
Barry Warsawab0e86c1998-05-19 15:31:46 +00002419Otherwise (i.e. when point is not in a `def' statement, or at or
2420before the `d' of a `def' statement), searches for the closest
2421preceding `def' statement, and leaves point at its start. If no such
2422statement can be found, leaves point at the start of the buffer.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002423
Barry Warsawab0e86c1998-05-19 15:31:46 +00002424Returns t iff a `def' statement is found by these rules.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002425
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002426Note that doing this command repeatedly will take you closer to the
2427start of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002428
Barry Warsaw7c29b231998-07-07 17:45:38 +00002429To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002430 (interactive "P") ; raw prefix arg
Barry Warsaw6839d3a1998-10-28 00:10:45 +00002431 (setq count (or count 1))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002432 (let ((at-or-before-p (<= (current-column) (current-indentation)))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002433 (start-of-line (goto-char (py-point 'bol)))
2434 (start-of-stmt (goto-char (py-point 'bos)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002435 (start-re (cond ((eq class 'either) "^[ \t]*\\(class\\|def\\)\\>")
2436 (class "^[ \t]*class\\>")
2437 (t "^[ \t]*def\\>")))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002438 )
2439 ;; searching backward
2440 (if (and (< 0 count)
2441 (or (/= start-of-stmt start-of-line)
2442 (not at-or-before-p)))
2443 (end-of-line))
2444 ;; search forward
2445 (if (and (> 0 count)
2446 (zerop (current-column))
2447 (looking-at start-re))
2448 (end-of-line))
Barry Warsawddc46961999-07-27 21:40:02 +00002449 (if (re-search-backward start-re nil 'move count)
2450 (goto-char (match-beginning 0)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002451
Barry Warsawab0e86c1998-05-19 15:31:46 +00002452;; Backwards compatibility
2453(defalias 'beginning-of-python-def-or-class 'py-beginning-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002454
Barry Warsawab0e86c1998-05-19 15:31:46 +00002455(defun py-end-of-def-or-class (&optional class count)
2456 "Move point beyond end of `def' or `class' body.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002457
Barry Warsawab0e86c1998-05-19 15:31:46 +00002458By default, looks for an appropriate `def'. If you supply a prefix
2459arg, looks for a `class' instead. The docs below assume the `def'
2460case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002461Programmatically, if CLASS is `either', then moves to either `class'
2462or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002463
Barry Warsawab0e86c1998-05-19 15:31:46 +00002464When second optional argument is given programmatically, move to the
2465COUNTth end of `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002466
Barry Warsawab0e86c1998-05-19 15:31:46 +00002467If point is in a `def' statement already, this is the `def' we use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002468
Barry Warsawab0e86c1998-05-19 15:31:46 +00002469Else, if the `def' found by `\\[py-beginning-of-def-or-class]'
2470contains the statement you started on, that's the `def' we use.
2471
2472Otherwise, we search forward for the closest following `def', and use that.
2473
2474If a `def' can be found by these rules, point is moved to the start of
2475the line immediately following the `def' block, and the position of the
2476start of the `def' is returned.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002477
2478Else point is moved to the end of the buffer, and nil is returned.
2479
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002480Note that doing this command repeatedly will take you closer to the
2481end of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002482
Barry Warsaw7c29b231998-07-07 17:45:38 +00002483To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002484 (interactive "P") ; raw prefix arg
Barry Warsawab0e86c1998-05-19 15:31:46 +00002485 (if (and count (/= count 1))
2486 (py-beginning-of-def-or-class (- 1 count)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002487 (let ((start (progn (py-goto-initial-line) (point)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002488 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2489 (class "class")
2490 (t "def")))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002491 (state 'not-found))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002492 ;; move point to start of appropriate def/class
2493 (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one
2494 (setq state 'at-beginning)
Barry Warsawab0e86c1998-05-19 15:31:46 +00002495 ;; else see if py-beginning-of-def-or-class hits container
2496 (if (and (py-beginning-of-def-or-class class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002497 (progn (py-goto-beyond-block)
2498 (> (point) start)))
2499 (setq state 'at-end)
2500 ;; else search forward
2501 (goto-char start)
2502 (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move)
2503 (progn (setq state 'at-beginning)
2504 (beginning-of-line)))))
2505 (cond
2506 ((eq state 'at-beginning) (py-goto-beyond-block) t)
2507 ((eq state 'at-end) t)
2508 ((eq state 'not-found) nil)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002509 (t (error "Internal error in `py-end-of-def-or-class'")))))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002510
2511;; Backwards compabitility
Barry Warsaw820273d1998-05-19 15:54:45 +00002512(defalias 'end-of-python-def-or-class 'py-end-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002513
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002514
2515;; Functions for marking regions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002516(defun py-mark-block (&optional extend just-move)
2517 "Mark following block of lines. With prefix arg, mark structure.
2518Easier to use than explain. It sets the region to an `interesting'
2519block of succeeding lines. If point is on a blank line, it goes down to
2520the next non-blank line. That will be the start of the region. The end
2521of the region depends on the kind of line at the start:
2522
2523 - If a comment, the region will include all succeeding comment lines up
2524 to (but not including) the next non-comment line (if any).
2525
2526 - Else if a prefix arg is given, and the line begins one of these
2527 structures:
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002528
2529 if elif else try except finally for while def class
2530
Barry Warsaw7ae77681994-12-12 20:38:05 +00002531 the region will be set to the body of the structure, including
2532 following blocks that `belong' to it, but excluding trailing blank
2533 and comment lines. E.g., if on a `try' statement, the `try' block
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002534 and all (if any) of the following `except' and `finally' blocks
2535 that belong to the `try' structure will be in the region. Ditto
2536 for if/elif/else, for/else and while/else structures, and (a bit
2537 degenerate, since they're always one-block structures) def and
2538 class blocks.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002539
2540 - Else if no prefix argument is given, and the line begins a Python
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002541 block (see list above), and the block is not a `one-liner' (i.e.,
2542 the statement ends with a colon, not with code), the region will
2543 include all succeeding lines up to (but not including) the next
2544 code statement (if any) that's indented no more than the starting
2545 line, except that trailing blank and comment lines are excluded.
2546 E.g., if the starting line begins a multi-statement `def'
2547 structure, the region will be set to the full function definition,
2548 but without any trailing `noise' lines.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002549
2550 - Else the region will include all succeeding lines up to (but not
2551 including) the next blank line, or code or indenting-comment line
2552 indented strictly less than the starting line. Trailing indenting
2553 comment lines are included in this case, but not trailing blank
2554 lines.
2555
2556A msg identifying the location of the mark is displayed in the echo
2557area; or do `\\[exchange-point-and-mark]' to flip down to the end.
2558
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002559If called from a program, optional argument EXTEND plays the role of
2560the prefix arg, and if optional argument JUST-MOVE is not nil, just
2561moves to the end of the block (& does not set mark or display a msg)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002562 (interactive "P") ; raw prefix arg
2563 (py-goto-initial-line)
2564 ;; skip over blank lines
2565 (while (and
2566 (looking-at "[ \t]*$") ; while blank line
2567 (not (eobp))) ; & somewhere to go
2568 (forward-line 1))
2569 (if (eobp)
2570 (error "Hit end of buffer without finding a non-blank stmt"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002571 (let ((initial-pos (point))
2572 (initial-indent (current-indentation))
2573 last-pos ; position of last stmt in region
2574 (followers
2575 '((if elif else) (elif elif else) (else)
2576 (try except finally) (except except) (finally)
2577 (for else) (while else)
2578 (def) (class) ) )
2579 first-symbol next-symbol)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002580
2581 (cond
2582 ;; if comment line, suck up the following comment lines
2583 ((looking-at "[ \t]*#")
2584 (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment
2585 (re-search-backward "^[ \t]*#") ; and back to last comment in block
2586 (setq last-pos (point)))
2587
2588 ;; else if line is a block line and EXTEND given, suck up
2589 ;; the whole structure
2590 ((and extend
2591 (setq first-symbol (py-suck-up-first-keyword) )
2592 (assq first-symbol followers))
2593 (while (and
2594 (or (py-goto-beyond-block) t) ; side effect
2595 (forward-line -1) ; side effect
2596 (setq last-pos (point)) ; side effect
2597 (py-goto-statement-below)
2598 (= (current-indentation) initial-indent)
2599 (setq next-symbol (py-suck-up-first-keyword))
2600 (memq next-symbol (cdr (assq first-symbol followers))))
2601 (setq first-symbol next-symbol)))
2602
2603 ;; else if line *opens* a block, search for next stmt indented <=
2604 ((py-statement-opens-block-p)
2605 (while (and
2606 (setq last-pos (point)) ; always true -- side effect
2607 (py-goto-statement-below)
2608 (> (current-indentation) initial-indent))
2609 nil))
2610
2611 ;; else plain code line; stop at next blank line, or stmt or
2612 ;; indenting comment line indented <
2613 (t
2614 (while (and
2615 (setq last-pos (point)) ; always true -- side effect
2616 (or (py-goto-beyond-final-line) t)
2617 (not (looking-at "[ \t]*$")) ; stop at blank line
2618 (or
2619 (>= (current-indentation) initial-indent)
2620 (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting #
2621 nil)))
2622
2623 ;; skip to end of last stmt
2624 (goto-char last-pos)
2625 (py-goto-beyond-final-line)
2626
2627 ;; set mark & display
2628 (if just-move
2629 () ; just return
2630 (push-mark (point) 'no-msg)
2631 (forward-line -1)
2632 (message "Mark set after: %s" (py-suck-up-leading-text))
2633 (goto-char initial-pos))))
2634
Barry Warsaw2518c671997-11-05 00:51:08 +00002635(defun py-mark-def-or-class (&optional class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002636 "Set region to body of def (or class, with prefix arg) enclosing point.
2637Pushes the current mark, then point, on the mark ring (all language
2638modes do this, but although it's handy it's never documented ...).
2639
2640In most Emacs language modes, this function bears at least a
Barry Warsawab0e86c1998-05-19 15:31:46 +00002641hallucinogenic resemblance to `\\[py-end-of-def-or-class]' and
2642`\\[py-beginning-of-def-or-class]'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002643
2644And in earlier versions of Python mode, all 3 were tightly connected.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002645Turned out that was more confusing than useful: the `goto start' and
2646`goto end' commands are usually used to search through a file, and
2647people expect them to act a lot like `search backward' and `search
2648forward' string-search commands. But because Python `def' and `class'
2649can nest to arbitrary levels, finding the smallest def containing
2650point cannot be done via a simple backward search: the def containing
2651point may not be the closest preceding def, or even the closest
2652preceding def that's indented less. The fancy algorithm required is
2653appropriate for the usual uses of this `mark' command, but not for the
2654`goto' variations.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002655
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002656So the def marked by this command may not be the one either of the
2657`goto' commands find: If point is on a blank or non-indenting comment
2658line, moves back to start of the closest preceding code statement or
2659indenting comment line. If this is a `def' statement, that's the def
2660we use. Else searches for the smallest enclosing `def' block and uses
2661that. Else signals an error.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002662
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002663When an enclosing def is found: The mark is left immediately beyond
2664the last line of the def block. Point is left at the start of the
2665def, except that: if the def is preceded by a number of comment lines
2666followed by (at most) one optional blank line, point is left at the
2667start of the comments; else if the def is preceded by a blank line,
2668point is left at its start.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002669
2670The intent is to mark the containing def/class and its associated
2671documentation, to make moving and duplicating functions and classes
2672pleasant."
2673 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002674 (let ((start (point))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002675 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2676 (class "class")
2677 (t "def"))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002678 (push-mark start)
2679 (if (not (py-go-up-tree-to-keyword which))
2680 (progn (goto-char start)
Barry Warsaw7c29b231998-07-07 17:45:38 +00002681 (error "Enclosing %s not found"
2682 (if (eq class 'either)
2683 "def or class"
2684 which)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002685 ;; else enclosing def/class found
2686 (setq start (point))
2687 (py-goto-beyond-block)
2688 (push-mark (point))
2689 (goto-char start)
2690 (if (zerop (forward-line -1)) ; if there is a preceding line
2691 (progn
2692 (if (looking-at "[ \t]*$") ; it's blank
2693 (setq start (point)) ; so reset start point
2694 (goto-char start)) ; else try again
2695 (if (zerop (forward-line -1))
2696 (if (looking-at "[ \t]*#") ; a comment
2697 ;; look back for non-comment line
2698 ;; tricky: note that the regexp matches a blank
2699 ;; line, cuz \n is in the 2nd character class
2700 (and
2701 (re-search-backward "^[ \t]*[^ \t#]" nil 'move)
2702 (forward-line 1))
2703 ;; no comment, so go back
Barry Warsaw4da6bd51997-11-26 06:00:26 +00002704 (goto-char start)))))))
2705 (exchange-point-and-mark)
2706 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002707
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002708;; ripped from cc-mode
2709(defun py-forward-into-nomenclature (&optional arg)
2710 "Move forward to end of a nomenclature section or word.
Barry Warsaw41a05c71998-08-10 16:33:12 +00002711With \\[universal-argument] (programmatically, optional argument ARG),
2712do it that many times.
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002713
2714A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2715 (interactive "p")
2716 (let ((case-fold-search nil))
2717 (if (> arg 0)
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002718 (re-search-forward
2719 "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)"
2720 (point-max) t arg)
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002721 (while (and (< arg 0)
2722 (re-search-backward
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002723 "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+"
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002724 (point-min) 0))
2725 (forward-char 1)
2726 (setq arg (1+ arg)))))
2727 (py-keep-region-active))
2728
2729(defun py-backward-into-nomenclature (&optional arg)
2730 "Move backward to beginning of a nomenclature section or word.
2731With optional ARG, move that many times. If ARG is negative, move
2732forward.
2733
2734A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2735 (interactive "p")
2736 (py-forward-into-nomenclature (- arg))
2737 (py-keep-region-active))
2738
2739
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002740
Barry Warsaw4f577d22001-04-11 20:23:17 +00002741;; pdbtrack functions
2742(defun py-pdbtrack-toggle-stack-tracking (arg)
2743 (interactive "P")
2744 (if (not (get-buffer-process (current-buffer)))
2745 (error "No process associated with buffer '%s'" (current-buffer)))
2746 ;; missing or 0 is toggle, >0 turn on, <0 turn off
2747 (if (or (not arg)
2748 (zerop (setq arg (prefix-numeric-value arg))))
2749 (setq py-pdbtrack-do-tracking-p (not py-pdbtrack-do-tracking-p))
2750 (setq py-pdbtrack-do-tracking-p (> arg 0)))
2751 (message "%sabled Python's pdbtrack"
2752 (if py-pdbtrack-do-tracking-p "En" "Dis")))
2753
2754(defun turn-on-pdbtrack ()
2755 (interactive)
2756 (py-pdbtrack-toggle-stack-tracking 1))
2757
2758(defun turn-off-pdbtrack ()
2759 (interactive)
2760 (py-pdbtrack-toggle-stack-tracking 0))
2761
2762
2763
Barry Warsaw29a90f02002-04-22 21:48:20 +00002764;; Pychecker
2765(defun py-pychecker-run (command)
2766 "*Run pychecker (default on the file currently visited)."
2767 (interactive
2768 (let ((default
2769 (format "%s %s %s" py-pychecker-command
2770 (mapconcat 'identity py-pychecker-command-args " ")
2771 (buffer-file-name))))
2772
2773 (list
2774 (read-shell-command "Run pychecker like this: "
2775 default
2776 py-pychecker-history))))
2777 (save-some-buffers (not py-ask-about-save) nil)
2778 (compile command))
2779
2780
2781
2782;; pydoc commands. The guts of this function is stolen from XEmacs's
2783;; symbol-near-point, but without the useless regexp-quote call on the
2784;; results, nor the interactive bit. Also, we've added the temporary
2785;; syntax table setting, which Skip originally had broken out into a
2786;; separate function. Note that Emacs doesn't have the original
2787;; function.
Barry Warsawa7cc43b2002-04-22 17:15:19 +00002788(defun py-symbol-near-point ()
2789 "Return the first textual item to the nearest point."
2790 ;; alg stolen from etag.el
2791 (save-excursion
2792 (with-syntax-table py-dotted-expression-syntax-table
2793 (if (or (bobp) (not (memq (char-syntax (char-before)) '(?w ?_))))
2794 (while (not (looking-at "\\sw\\|\\s_\\|\\'"))
2795 (forward-char 1)))
2796 (while (looking-at "\\sw\\|\\s_")
2797 (forward-char 1))
2798 (if (re-search-backward "\\sw\\|\\s_" nil t)
2799 (progn (forward-char 1)
2800 (buffer-substring (point)
2801 (progn (forward-sexp -1)
2802 (while (looking-at "\\s'")
2803 (forward-char 1))
2804 (point))))
2805 nil))))
2806
2807(defun py-help-at-point ()
2808 "Get help from Python based on the symbol nearest point."
2809 (interactive)
2810 (let* ((sym (py-symbol-near-point))
2811 (base (substring sym 0 (or (search "." sym :from-end t) 0)))
2812 cmd)
2813 (if (not (equal base ""))
2814 (setq cmd (concat "import " base "\n")))
2815 (setq cmd (concat "import pydoc\n"
2816 cmd
Barry Warsaw04949552002-04-22 22:05:49 +00002817 "try: pydoc.help('" sym "')\n"
Barry Warsawa7cc43b2002-04-22 17:15:19 +00002818 "except: print 'No help available on:', \"" sym "\""))
2819 (message cmd)
Barry Warsaw04949552002-04-22 22:05:49 +00002820 (py-execute-string cmd)
2821 (set-buffer "*Python Output*")
2822 ;; BAW: Should we really be leaving the output buffer in help-mode?
2823 (help-mode)))
Barry Warsawa7cc43b2002-04-22 17:15:19 +00002824
2825
2826
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002827;; Documentation functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002828
2829;; dump the long form of the mode blurb; does the usual doc escapes,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002830;; plus lines of the form ^[vc]:name$ to suck variable & command docs
2831;; out of the right places, along with the keys they're on & current
2832;; values
Barry Warsaw7ae77681994-12-12 20:38:05 +00002833(defun py-dump-help-string (str)
2834 (with-output-to-temp-buffer "*Help*"
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002835 (let ((locals (buffer-local-variables))
2836 funckind funcname func funcdoc
2837 (start 0) mstart end
2838 keys )
Barry Warsaw7ae77681994-12-12 20:38:05 +00002839 (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start)
2840 (setq mstart (match-beginning 0) end (match-end 0)
2841 funckind (substring str (match-beginning 1) (match-end 1))
2842 funcname (substring str (match-beginning 2) (match-end 2))
2843 func (intern funcname))
2844 (princ (substitute-command-keys (substring str start mstart)))
2845 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002846 ((equal funckind "c") ; command
2847 (setq funcdoc (documentation func)
2848 keys (concat
2849 "Key(s): "
2850 (mapconcat 'key-description
2851 (where-is-internal func py-mode-map)
2852 ", "))))
2853 ((equal funckind "v") ; variable
Barry Warsaw604cefa1996-09-03 18:17:04 +00002854 (setq funcdoc (documentation-property func 'variable-documentation)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002855 keys (if (assq func locals)
2856 (concat
2857 "Local/Global values: "
2858 (prin1-to-string (symbol-value func))
2859 " / "
2860 (prin1-to-string (default-value func)))
2861 (concat
2862 "Value: "
2863 (prin1-to-string (symbol-value func))))))
2864 (t ; unexpected
2865 (error "Error in py-dump-help-string, tag `%s'" funckind)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002866 (princ (format "\n-> %s:\t%s\t%s\n\n"
2867 (if (equal funckind "c") "Command" "Variable")
2868 funcname keys))
2869 (princ funcdoc)
2870 (terpri)
2871 (setq start end))
2872 (princ (substitute-command-keys (substring str start))))
2873 (print-help-return-message)))
2874
2875(defun py-describe-mode ()
2876 "Dump long form of Python-mode docs."
2877 (interactive)
2878 (py-dump-help-string "Major mode for editing Python files.
2879Knows about Python indentation, tokens, comments and continuation lines.
2880Paragraphs are separated by blank lines only.
2881
2882Major sections below begin with the string `@'; specific function and
2883variable docs begin with `->'.
2884
2885@EXECUTING PYTHON CODE
2886
Barry Warsaw820273d1998-05-19 15:54:45 +00002887\\[py-execute-import-or-reload]\timports or reloads the file in the Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002888\\[py-execute-buffer]\tsends the entire buffer to the Python interpreter
2889\\[py-execute-region]\tsends the current region
Barry Warsaw820273d1998-05-19 15:54:45 +00002890\\[py-execute-def-or-class]\tsends the current function or class definition
2891\\[py-execute-string]\tsends an arbitrary string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002892\\[py-shell]\tstarts a Python interpreter window; this will be used by
Barry Warsaw820273d1998-05-19 15:54:45 +00002893\tsubsequent Python execution commands
2894%c:py-execute-import-or-reload
Barry Warsaw7ae77681994-12-12 20:38:05 +00002895%c:py-execute-buffer
2896%c:py-execute-region
Barry Warsaw820273d1998-05-19 15:54:45 +00002897%c:py-execute-def-or-class
2898%c:py-execute-string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002899%c:py-shell
2900
2901@VARIABLES
2902
2903py-indent-offset\tindentation increment
Barry Warsaw42f707f1996-07-29 21:05:05 +00002904py-block-comment-prefix\tcomment string used by comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002905
2906py-python-command\tshell command to invoke Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002907py-temp-directory\tdirectory used for temp files (if needed)
2908
2909py-beep-if-tab-change\tring the bell if tab-width is changed
2910%v:py-indent-offset
2911%v:py-block-comment-prefix
2912%v:py-python-command
Barry Warsaw7ae77681994-12-12 20:38:05 +00002913%v:py-temp-directory
2914%v:py-beep-if-tab-change
2915
2916@KINDS OF LINES
2917
2918Each physical line in the file is either a `continuation line' (the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002919preceding line ends with a backslash that's not part of a comment, or
2920the paren/bracket/brace nesting level at the start of the line is
2921non-zero, or both) or an `initial line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002922
2923An initial line is in turn a `blank line' (contains nothing except
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002924possibly blanks or tabs), a `comment line' (leftmost non-blank
2925character is `#'), or a `code line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002926
2927Comment Lines
2928
2929Although all comment lines are treated alike by Python, Python mode
2930recognizes two kinds that act differently with respect to indentation.
2931
2932An `indenting comment line' is a comment line with a blank, tab or
2933nothing after the initial `#'. The indentation commands (see below)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002934treat these exactly as if they were code lines: a line following an
Barry Warsaw7ae77681994-12-12 20:38:05 +00002935indenting comment line will be indented like the comment line. All
2936other comment lines (those with a non-whitespace character immediately
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002937following the initial `#') are `non-indenting comment lines', and
2938their indentation is ignored by the indentation commands.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002939
2940Indenting comment lines are by far the usual case, and should be used
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002941whenever possible. Non-indenting comment lines are useful in cases
2942like these:
Barry Warsaw7ae77681994-12-12 20:38:05 +00002943
2944\ta = b # a very wordy single-line comment that ends up being
2945\t #... continued onto another line
2946
2947\tif a == b:
2948##\t\tprint 'panic!' # old code we've `commented out'
2949\t\treturn a
2950
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002951Since the `#...' and `##' comment lines have a non-whitespace
2952character following the initial `#', Python mode ignores them when
2953computing the proper indentation for the next line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002954
2955Continuation Lines and Statements
2956
2957The Python-mode commands generally work on statements instead of on
2958individual lines, where a `statement' is a comment or blank line, or a
2959code line and all of its following continuation lines (if any)
2960considered as a single logical unit. The commands in this mode
2961generally (when it makes sense) automatically move to the start of the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002962statement containing point, even if point happens to be in the middle
2963of some continuation line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002964
2965
2966@INDENTATION
2967
2968Primarily for entering new code:
2969\t\\[indent-for-tab-command]\t indent line appropriately
2970\t\\[py-newline-and-indent]\t insert newline, then indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00002971\t\\[py-electric-backspace]\t reduce indentation, or delete single character
Barry Warsaw7ae77681994-12-12 20:38:05 +00002972
2973Primarily for reindenting existing code:
2974\t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally
2975\t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally
2976
2977\t\\[py-indent-region]\t reindent region to match its context
2978\t\\[py-shift-region-left]\t shift region left by py-indent-offset
2979\t\\[py-shift-region-right]\t shift region right by py-indent-offset
2980
2981Unlike most programming languages, Python uses indentation, and only
2982indentation, to specify block structure. Hence the indentation supplied
2983automatically by Python-mode is just an educated guess: only you know
2984the block structure you intend, so only you can supply correct
2985indentation.
2986
2987The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on
2988the indentation of preceding statements. E.g., assuming
2989py-indent-offset is 4, after you enter
2990\tif a > 0: \\[py-newline-and-indent]
2991the cursor will be moved to the position of the `_' (_ is not a
2992character in the file, it's just used here to indicate the location of
2993the cursor):
2994\tif a > 0:
2995\t _
2996If you then enter `c = d' \\[py-newline-and-indent], the cursor will move
2997to
2998\tif a > 0:
2999\t c = d
3000\t _
3001Python-mode cannot know whether that's what you intended, or whether
3002\tif a > 0:
3003\t c = d
3004\t_
3005was your intent. In general, Python-mode either reproduces the
3006indentation of the (closest code or indenting-comment) preceding
3007statement, or adds an extra py-indent-offset blanks if the preceding
3008statement has `:' as its last significant (non-whitespace and non-
3009comment) character. If the suggested indentation is too much, use
Barry Warsaw27ee1151997-12-03 05:03:44 +00003010\\[py-electric-backspace] to reduce it.
Barry Warsaw7ae77681994-12-12 20:38:05 +00003011
3012Continuation lines are given extra indentation. If you don't like the
3013suggested indentation, change it to something you do like, and Python-
3014mode will strive to indent later lines of the statement in the same way.
3015
3016If a line is a continuation line by virtue of being in an unclosed
3017paren/bracket/brace structure (`list', for short), the suggested
3018indentation depends on whether the current line contains the first item
3019in the list. If it does, it's indented py-indent-offset columns beyond
3020the indentation of the line containing the open bracket. If you don't
3021like that, change it by hand. The remaining items in the list will mimic
3022whatever indentation you give to the first item.
3023
3024If a line is a continuation line because the line preceding it ends with
3025a backslash, the third and following lines of the statement inherit their
3026indentation from the line preceding them. The indentation of the second
3027line in the statement depends on the form of the first (base) line: if
3028the base line is an assignment statement with anything more interesting
3029than the backslash following the leftmost assigning `=', the second line
3030is indented two columns beyond that `='. Else it's indented to two
3031columns beyond the leftmost solid chunk of non-whitespace characters on
3032the base line.
3033
3034Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command]
3035repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block
3036structure you intend.
3037%c:indent-for-tab-command
3038%c:py-newline-and-indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00003039%c:py-electric-backspace
Barry Warsaw7ae77681994-12-12 20:38:05 +00003040
3041
3042The next function may be handy when editing code you didn't write:
3043%c:py-guess-indent-offset
3044
3045
3046The remaining `indent' functions apply to a region of Python code. They
3047assume the block structure (equals indentation, in Python) of the region
3048is correct, and alter the indentation in various ways while preserving
3049the block structure:
3050%c:py-indent-region
3051%c:py-shift-region-left
3052%c:py-shift-region-right
3053
3054@MARKING & MANIPULATING REGIONS OF CODE
3055
3056\\[py-mark-block]\t mark block of lines
Barry Warsaw2518c671997-11-05 00:51:08 +00003057\\[py-mark-def-or-class]\t mark smallest enclosing def
3058\\[universal-argument] \\[py-mark-def-or-class]\t mark smallest enclosing class
Barry Warsaw42f707f1996-07-29 21:05:05 +00003059\\[comment-region]\t comment out region of code
3060\\[universal-argument] \\[comment-region]\t uncomment region of code
Barry Warsaw7ae77681994-12-12 20:38:05 +00003061%c:py-mark-block
Barry Warsaw2518c671997-11-05 00:51:08 +00003062%c:py-mark-def-or-class
Barry Warsaw42f707f1996-07-29 21:05:05 +00003063%c:comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00003064
3065@MOVING POINT
3066
3067\\[py-previous-statement]\t move to statement preceding point
3068\\[py-next-statement]\t move to statement following point
3069\\[py-goto-block-up]\t move up to start of current block
Barry Warsawab0e86c1998-05-19 15:31:46 +00003070\\[py-beginning-of-def-or-class]\t move to start of def
3071\\[universal-argument] \\[py-beginning-of-def-or-class]\t move to start of class
3072\\[py-end-of-def-or-class]\t move to end of def
3073\\[universal-argument] \\[py-end-of-def-or-class]\t move to end of class
Barry Warsaw7ae77681994-12-12 20:38:05 +00003074
3075The first two move to one statement beyond the statement that contains
3076point. A numeric prefix argument tells them to move that many
3077statements instead. Blank lines, comment lines, and continuation lines
3078do not count as `statements' for these commands. So, e.g., you can go
3079to the first code statement in a file by entering
3080\t\\[beginning-of-buffer]\t to move to the top of the file
3081\t\\[py-next-statement]\t to skip over initial comments and blank lines
3082Or do `\\[py-previous-statement]' with a huge prefix argument.
3083%c:py-previous-statement
3084%c:py-next-statement
3085%c:py-goto-block-up
Barry Warsawab0e86c1998-05-19 15:31:46 +00003086%c:py-beginning-of-def-or-class
3087%c:py-end-of-def-or-class
Barry Warsaw7ae77681994-12-12 20:38:05 +00003088
3089@LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE
3090
3091`\\[indent-new-comment-line]' is handy for entering a multi-line comment.
3092
3093`\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the
3094overall class and def structure of a module.
3095
3096`\\[back-to-indentation]' moves point to a line's first non-blank character.
3097
3098`\\[indent-relative]' is handy for creating odd indentation.
3099
3100@OTHER EMACS HINTS
3101
3102If you don't like the default value of a variable, change its value to
3103whatever you do like by putting a `setq' line in your .emacs file.
3104E.g., to set the indentation increment to 4, put this line in your
3105.emacs:
3106\t(setq py-indent-offset 4)
3107To see the value of a variable, do `\\[describe-variable]' and enter the variable
3108name at the prompt.
3109
3110When entering a key sequence like `C-c C-n', it is not necessary to
3111release the CONTROL key after doing the `C-c' part -- it suffices to
3112press the CONTROL key, press and release `c' (while still holding down
3113CONTROL), press and release `n' (while still holding down CONTROL), &
3114then release CONTROL.
3115
3116Entering Python mode calls with no arguments the value of the variable
3117`python-mode-hook', if that value exists and is not nil; for backward
3118compatibility it also tries `py-mode-hook'; see the `Hooks' section of
3119the Elisp manual for details.
3120
3121Obscure: When python-mode is first loaded, it looks for all bindings
3122to newline-and-indent in the global keymap, and shadows them with
3123local bindings to py-newline-and-indent."))
3124
Barry Warsaw56bd2ed2002-04-25 15:44:17 +00003125(require 'info-look)
3126(info-lookup-maybe-add-help
3127 :mode 'python-mode
3128 :regexp "[a-zA-Z0-9_]+"
3129 :doc-spec '(("(python-lib)Module Index")
3130 ("(python-lib)Class-Exception-Object Index")
3131 ("(python-lib)Function-Method-Variable Index")
3132 ("(python-lib)Miscellaneous Index")))
3133
3134
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003135
3136;; Helper functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00003137(defvar py-parse-state-re
3138 (concat
3139 "^[ \t]*\\(if\\|elif\\|else\\|while\\|def\\|class\\)\\>"
3140 "\\|"
3141 "^[^ #\t\n]"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003142
Barry Warsaw7ae77681994-12-12 20:38:05 +00003143(defun py-parse-state ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003144 "Return the parse state at point (see `parse-partial-sexp' docs)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003145 (save-excursion
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00003146 (let ((here (point))
Barry Warsawb2d5e622002-04-22 15:29:27 +00003147 pps done)
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00003148 (while (not done)
3149 ;; back up to the first preceding line (if any; else start of
3150 ;; buffer) that begins with a popular Python keyword, or a
3151 ;; non- whitespace and non-comment character. These are good
3152 ;; places to start parsing to see whether where we started is
3153 ;; at a non-zero nesting level. It may be slow for people who
3154 ;; write huge code blocks or huge lists ... tough beans.
3155 (re-search-backward py-parse-state-re nil 'move)
3156 (beginning-of-line)
Barry Warsawf64b4051998-02-12 16:52:14 +00003157 ;; In XEmacs, we have a much better way to test for whether
3158 ;; we're in a triple-quoted string or not. Emacs does not
Barry Warsaw145ab1c1998-05-19 14:49:49 +00003159 ;; have this built-in function, which is its loss because
Barry Warsawf64b4051998-02-12 16:52:14 +00003160 ;; without scanning from the beginning of the buffer, there's
3161 ;; no accurate way to determine this otherwise.
Barry Warsawb2d5e622002-04-22 15:29:27 +00003162 (save-excursion (setq pps (parse-partial-sexp (point) here)))
3163 ;; make sure we don't land inside a triple-quoted string
3164 (setq done (or (not (nth 3 pps))
3165 (bobp)))
3166 ;; Just go ahead and short circuit the test back to the
3167 ;; beginning of the buffer. This will be slow, but not
3168 ;; nearly as slow as looping through many
3169 ;; re-search-backwards.
3170 (if (not done)
3171 (goto-char (point-min))))
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00003172 pps)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003173
Barry Warsaw7ae77681994-12-12 20:38:05 +00003174(defun py-nesting-level ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003175 "Return the buffer position of the last unclosed enclosing list.
3176If nesting level is zero, return nil."
Barry Warsawf64b4051998-02-12 16:52:14 +00003177 (let ((status (py-parse-state)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003178 (if (zerop (car status))
3179 nil ; not in a nest
3180 (car (cdr status))))) ; char# of open bracket
3181
Barry Warsaw7ae77681994-12-12 20:38:05 +00003182(defun py-backslash-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003183 "Return t iff preceding line ends with backslash that is not in a comment."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003184 (save-excursion
3185 (beginning-of-line)
3186 (and
3187 ;; use a cheap test first to avoid the regexp if possible
3188 ;; use 'eq' because char-after may return nil
3189 (eq (char-after (- (point) 2)) ?\\ )
3190 ;; make sure; since eq test passed, there is a preceding line
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003191 (forward-line -1) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00003192 (looking-at py-continued-re))))
3193
Barry Warsaw7ae77681994-12-12 20:38:05 +00003194(defun py-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003195 "Return t iff current line is a continuation line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003196 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003197 (beginning-of-line)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003198 (or (py-backslash-continuation-line-p)
3199 (py-nesting-level))))
3200
Barry Warsaw9c1696c1998-12-15 04:36:22 +00003201(defun py-goto-beginning-of-tqs (delim)
3202 "Go to the beginning of the triple quoted string we find ourselves in.
3203DELIM is the TQS string delimiter character we're searching backwards
3204for."
Barry Warsaw3c34bb32000-10-27 05:00:25 +00003205 (let ((skip (and delim (make-string 1 delim)))
3206 (continue t))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00003207 (when skip
3208 (save-excursion
Barry Warsaw3c34bb32000-10-27 05:00:25 +00003209 (while continue
3210 (py-safe (search-backward skip))
3211 (setq continue (and (not (bobp))
3212 (= (char-before) ?\\))))
3213 (if (and (= (char-before) delim)
3214 (= (char-before (1- (point))) delim))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00003215 (setq skip (make-string 3 delim))))
3216 ;; we're looking at a triple-quoted string
3217 (py-safe (search-backward skip)))))
3218
Barry Warsaw7ae77681994-12-12 20:38:05 +00003219(defun py-goto-initial-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003220 "Go to the initial line of the current statement.
3221Usually this is the line we're on, but if we're on the 2nd or
3222following lines of a continuation block, we need to go up to the first
3223line of the block."
3224 ;; Tricky: We want to avoid quadratic-time behavior for long
3225 ;; continued blocks, whether of the backslash or open-bracket
3226 ;; varieties, or a mix of the two. The following manages to do that
3227 ;; in the usual cases.
3228 ;;
3229 ;; Also, if we're sitting inside a triple quoted string, this will
3230 ;; drop us at the line that begins the string.
Barry Warsaw9ec9fbc1998-01-21 05:15:57 +00003231 (let (open-bracket-pos)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003232 (while (py-continuation-line-p)
3233 (beginning-of-line)
3234 (if (py-backslash-continuation-line-p)
3235 (while (py-backslash-continuation-line-p)
3236 (forward-line -1))
3237 ;; else zip out of nested brackets/braces/parens
3238 (while (setq open-bracket-pos (py-nesting-level))
3239 (goto-char open-bracket-pos)))))
3240 (beginning-of-line))
3241
Barry Warsaw7ae77681994-12-12 20:38:05 +00003242(defun py-goto-beyond-final-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003243 "Go to the point just beyond the fine line of the current statement.
3244Usually this is the start of the next line, but if this is a
3245multi-line statement we need to skip over the continuation lines."
3246 ;; Tricky: Again we need to be clever to avoid quadratic time
3247 ;; behavior.
3248 ;;
3249 ;; XXX: Not quite the right solution, but deals with multi-line doc
3250 ;; strings
Barry Warsaw751f4931998-05-19 16:06:21 +00003251 (if (looking-at (concat "[ \t]*\\(" py-stringlit-re "\\)"))
3252 (goto-char (match-end 0)))
3253 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +00003254 (forward-line 1)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003255 (let (state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003256 (while (and (py-continuation-line-p)
3257 (not (eobp)))
3258 ;; skip over the backslash flavor
3259 (while (and (py-backslash-continuation-line-p)
3260 (not (eobp)))
3261 (forward-line 1))
3262 ;; if in nest, zip to the end of the nest
3263 (setq state (py-parse-state))
3264 (if (and (not (zerop (car state)))
3265 (not (eobp)))
3266 (progn
Barry Warsawaffc0ca1997-11-03 16:59:38 +00003267 (parse-partial-sexp (point) (point-max) 0 nil state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003268 (forward-line 1))))))
3269
Barry Warsaw7ae77681994-12-12 20:38:05 +00003270(defun py-statement-opens-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003271 "Return t iff the current statement opens a block.
3272I.e., iff it ends with a colon that is not in a comment. Point should
3273be at the start of a statement."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003274 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003275 (let ((start (point))
3276 (finish (progn (py-goto-beyond-final-line) (1- (point))))
3277 (searching t)
3278 (answer nil)
3279 state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003280 (goto-char start)
3281 (while searching
3282 ;; look for a colon with nothing after it except whitespace, and
3283 ;; maybe a comment
3284 (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$"
3285 finish t)
3286 (if (eq (point) finish) ; note: no `else' clause; just
3287 ; keep searching if we're not at
3288 ; the end yet
3289 ;; sure looks like it opens a block -- but it might
3290 ;; be in a comment
3291 (progn
3292 (setq searching nil) ; search is done either way
3293 (setq state (parse-partial-sexp start
3294 (match-beginning 0)))
3295 (setq answer (not (nth 4 state)))))
3296 ;; search failed: couldn't find another interesting colon
3297 (setq searching nil)))
3298 answer)))
3299
Barry Warsawf831d811996-07-31 20:42:59 +00003300(defun py-statement-closes-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003301 "Return t iff the current statement closes a block.
3302I.e., if the line starts with `return', `raise', `break', `continue',
3303and `pass'. This doesn't catch embedded statements."
Barry Warsawf831d811996-07-31 20:42:59 +00003304 (let ((here (point)))
Barry Warsawa8f99ba1999-05-24 18:37:57 +00003305 (py-goto-initial-line)
Barry Warsawc0d2d511999-06-03 22:18:59 +00003306 (back-to-indentation)
Barry Warsawf831d811996-07-31 20:42:59 +00003307 (prog1
Barry Warsawaffc0ca1997-11-03 16:59:38 +00003308 (looking-at (concat py-block-closing-keywords-re "\\>"))
Barry Warsawf831d811996-07-31 20:42:59 +00003309 (goto-char here))))
3310
Barry Warsaw7ae77681994-12-12 20:38:05 +00003311(defun py-goto-beyond-block ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003312 "Go to point just beyond the final line of block begun by the current line.
3313This is the same as where `py-goto-beyond-final-line' goes unless
3314we're on colon line, in which case we go to the end of the block.
3315Assumes point is at the beginning of the line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003316 (if (py-statement-opens-block-p)
3317 (py-mark-block nil 'just-move)
3318 (py-goto-beyond-final-line)))
3319
Barry Warsaw7ae77681994-12-12 20:38:05 +00003320(defun py-goto-statement-at-or-above ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003321 "Go to the start of the first statement at or preceding point.
3322Return t if there is such a statement, otherwise nil. `Statement'
3323does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003324 (py-goto-initial-line)
3325 (if (looking-at py-blank-or-comment-re)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003326 ;; skip back over blank & comment lines
3327 ;; note: will skip a blank or comment line that happens to be
3328 ;; a continuation line too
3329 (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t)
3330 (progn (py-goto-initial-line) t)
3331 nil)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003332 t))
3333
Barry Warsaw7ae77681994-12-12 20:38:05 +00003334(defun py-goto-statement-below ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003335 "Go to start of the first statement following the statement containing point.
3336Return t if there is such a statement, otherwise nil. `Statement'
3337does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003338 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003339 (let ((start (point)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003340 (py-goto-beyond-final-line)
3341 (while (and
3342 (looking-at py-blank-or-comment-re)
3343 (not (eobp)))
3344 (forward-line 1))
3345 (if (eobp)
3346 (progn (goto-char start) nil)
3347 t)))
3348
Barry Warsaw7ae77681994-12-12 20:38:05 +00003349(defun py-go-up-tree-to-keyword (key)
Barry Warsaw41a05c71998-08-10 16:33:12 +00003350 "Go to begining of statement starting with KEY, at or preceding point.
3351
3352KEY is a regular expression describing a Python keyword. Skip blank
3353lines and non-indenting comments. If the statement found starts with
3354KEY, then stop, otherwise go back to first enclosing block starting
3355with KEY. If successful, leave point at the start of the KEY line and
3356return t. Otherwise, leav point at an undefined place and return nil."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003357 ;; skip blanks and non-indenting #
3358 (py-goto-initial-line)
3359 (while (and
3360 (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
3361 (zerop (forward-line -1))) ; go back
3362 nil)
3363 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003364 (let* ((re (concat "[ \t]*" key "\\b"))
3365 (case-fold-search nil) ; let* so looking-at sees this
3366 (found (looking-at re))
3367 (dead nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003368 (while (not (or found dead))
3369 (condition-case nil ; in case no enclosing block
3370 (py-goto-block-up 'no-mark)
3371 (error (setq dead t)))
3372 (or dead (setq found (looking-at re))))
3373 (beginning-of-line)
3374 found))
3375
Barry Warsaw7ae77681994-12-12 20:38:05 +00003376(defun py-suck-up-leading-text ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003377 "Return string in buffer from start of indentation to end of line.
3378Prefix with \"...\" if leading whitespace was skipped."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003379 (save-excursion
3380 (back-to-indentation)
3381 (concat
3382 (if (bolp) "" "...")
3383 (buffer-substring (point) (progn (end-of-line) (point))))))
3384
Barry Warsaw7ae77681994-12-12 20:38:05 +00003385(defun py-suck-up-first-keyword ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003386 "Return first keyword on the line as a Lisp symbol.
3387`Keyword' is defined (essentially) as the regular expression
3388([a-z]+). Returns nil if none was found."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003389 (let ((case-fold-search nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003390 (if (looking-at "[ \t]*\\([a-z]+\\)\\b")
3391 (intern (buffer-substring (match-beginning 1) (match-end 1)))
3392 nil)))
3393
Barry Warsawb3e81d51996-09-04 15:12:42 +00003394(defun py-current-defun ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003395 "Python value for `add-log-current-defun-function'.
3396This tells add-log.el how to find the current function/method/variable."
Barry Warsawb3e81d51996-09-04 15:12:42 +00003397 (save-excursion
3398 (if (re-search-backward py-defun-start-re nil t)
3399 (or (match-string 3)
3400 (let ((method (match-string 2)))
3401 (if (and (not (zerop (length (match-string 1))))
3402 (re-search-backward py-class-start-re nil t))
3403 (concat (match-string 1) "." method)
3404 method)))
3405 nil)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003406
3407
Barry Warsawfec75d61995-07-05 23:26:15 +00003408(defconst py-help-address "python-mode@python.org"
Barry Warsaw850437a1995-03-08 21:50:28 +00003409 "Address accepting submission of bug reports.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003410
Barry Warsaw850437a1995-03-08 21:50:28 +00003411(defun py-version ()
3412 "Echo the current version of `python-mode' in the minibuffer."
3413 (interactive)
3414 (message "Using `python-mode' version %s" py-version)
3415 (py-keep-region-active))
3416
3417;; only works under Emacs 19
3418;(eval-when-compile
3419; (require 'reporter))
3420
3421(defun py-submit-bug-report (enhancement-p)
3422 "Submit via mail a bug report on `python-mode'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00003423With \\[universal-argument] (programmatically, argument ENHANCEMENT-P
3424non-nil) just submit an enhancement request."
Barry Warsaw850437a1995-03-08 21:50:28 +00003425 (interactive
3426 (list (not (y-or-n-p
Barry Warsaw41a05c71998-08-10 16:33:12 +00003427 "Is this a bug report (hit `n' to send other comments)? "))))
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003428 (let ((reporter-prompt-for-summary-p (if enhancement-p
3429 "(Very) brief summary: "
3430 t)))
Barry Warsaw850437a1995-03-08 21:50:28 +00003431 (require 'reporter)
3432 (reporter-submit-bug-report
3433 py-help-address ;address
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003434 (concat "python-mode " py-version) ;pkgname
Barry Warsaw850437a1995-03-08 21:50:28 +00003435 ;; varlist
3436 (if enhancement-p nil
3437 '(py-python-command
3438 py-indent-offset
3439 py-block-comment-prefix
Barry Warsaw850437a1995-03-08 21:50:28 +00003440 py-temp-directory
3441 py-beep-if-tab-change))
3442 nil ;pre-hooks
3443 nil ;post-hooks
3444 "Dear Barry,") ;salutation
3445 (if enhancement-p nil
3446 (set-mark (point))
3447 (insert
3448"Please replace this text with a sufficiently large code sample\n\
3449and an exact recipe so that I can reproduce your problem. Failure\n\
3450to do so may mean a greater delay in fixing your bug.\n\n")
3451 (exchange-point-and-mark)
3452 (py-keep-region-active))))
3453
3454
Barry Warsaw47384781997-11-26 05:27:45 +00003455(defun py-kill-emacs-hook ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003456 "Delete files in `py-file-queue'.
3457These are Python temporary files awaiting execution."
Barry Warsaw47384781997-11-26 05:27:45 +00003458 (mapcar #'(lambda (filename)
3459 (py-safe (delete-file filename)))
3460 py-file-queue))
3461
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003462;; arrange to kill temp files when Emacs exists
Barry Warsawc72c11c1997-08-09 06:42:08 +00003463(add-hook 'kill-emacs-hook 'py-kill-emacs-hook)
Barry Warsaw4f577d22001-04-11 20:23:17 +00003464(add-hook 'comint-output-filter-functions 'py-pdbtrack-track-stack-file)
3465
3466;; Add a designator to the minor mode strings
3467(or (assq 'py-pdbtrack-minor-mode-string minor-mode-alist)
3468 (push '(py-pdbtrack-is-tracking-p py-pdbtrack-minor-mode-string)
3469 minor-mode-alist))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003470
3471
3472
3473(provide 'python-mode)
3474;;; python-mode.el ends here