blob: 38a8659da7b639548f499ae16742854eef2e3906 [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 Warsaw71534602001-02-20 23:07:56 +00005;; Author: 1995-2001 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 Warsaw38e21e71998-10-27 22:09:25 +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
30;; This version of python-mode.el has only been tested with XEmacs
31;; 21.1.14 and Emacs 20.7 as these are the latest versions of these
32;; Emacsen as of this writing (11-Apr-2001). I have no intent to test
33;; it with earlier Emacsen, but I will accept patches if they are
34;; small and reasonable. Please use the SourceForge Python project to
35;; submit bugs or patches:
36;;
37;; http://sourceforge.net/projects/python
Barry Warsaw37231521997-12-11 17:23:13 +000038
39;; FOR MORE INFORMATION:
40
Barry Warsaw4f577d22001-04-11 20:23:17 +000041;; There is some information on python-mode.el at
42
Barry Warsawf7039e21998-08-20 22:10:46 +000043;; http://www.python.org/emacs/python-mode/
44;;
Barry Warsaw4f577d22001-04-11 20:23:17 +000045;; but this link is fairly out of date, due to the current difficulty
46;; in updating that site. It does contain links to other packages that
47;; you might find useful, such as pdb interfaces, OO-Browser links,
48;; etc. Eventually, we'll be able to update it much more easily.
Barry Warsaw37231521997-12-11 17:23:13 +000049
50;; BUG REPORTING:
Barry Warsaw7ae77681994-12-12 20:38:05 +000051
Barry Warsaw4f577d22001-04-11 20:23:17 +000052;; As mentioned above, please use the SourceForge Python project for
53;; submitting bug reports or patches. The old recommendation, to use
54;; C-c C-b will still work, but those reports have a higher chance of
55;; getting buried in my mailbox. Please include a complete, but
Barry Warsawaffc0ca1997-11-03 16:59:38 +000056;; concise code sample and a recipe for reproducing the bug. Send
57;; suggestions and other comments to python-mode@python.org.
58
59;; When in a Python mode buffer, do a C-h m for more help. It's
Barry Warsaw37231521997-12-11 17:23:13 +000060;; doubtful that a texinfo manual would be very useful, but if you
61;; want to contribute one, I'll certainly accept it!
Barry Warsawb5e0ecb1995-03-14 18:32:54 +000062
Barry Warsaw7b0f5681995-03-08 21:33:04 +000063;;; Code:
64
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +000065(require 'comint)
Barry Warsawc72c11c1997-08-09 06:42:08 +000066(require 'custom)
Barry Warsaw4f577d22001-04-11 20:23:17 +000067(require 'cl)
Barry Warsawc72c11c1997-08-09 06:42:08 +000068
Barry Warsaw7b0f5681995-03-08 21:33:04 +000069
70;; user definable variables
71;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
Barry Warsaw7ae77681994-12-12 20:38:05 +000072
Barry Warsawc72c11c1997-08-09 06:42:08 +000073(defgroup python nil
74 "Support for the Python programming language, <http://www.python.org/>"
Barry Warsaw5ed843f1999-07-28 22:06:06 +000075 :group 'languages
76 :prefix "py-")
Barry Warsaw7ae77681994-12-12 20:38:05 +000077
Barry Warsawc72c11c1997-08-09 06:42:08 +000078(defcustom py-python-command "python"
79 "*Shell command used to start Python interpreter."
80 :type 'string
81 :group 'python)
82
Barry Warsawa2398801998-04-09 23:28:20 +000083(defcustom py-jpython-command "jpython"
84 "*Shell command used to start the JPython interpreter."
85 :type 'string
Barry Warsaw5ed843f1999-07-28 22:06:06 +000086 :group 'python
87 :tag "JPython Command")
Barry Warsawa2398801998-04-09 23:28:20 +000088
Barry Warsawaa384fd1999-02-16 23:36:16 +000089(defcustom py-default-interpreter 'cpython
90 "*Which Python interpreter is used by default.
91The value for this variable can be either `cpython' or `jpython'.
92
93When the value is `cpython', the variables `py-python-command' and
94`py-python-command-args' are consulted to determine the interpreter
95and arguments to use.
96
97When the value is `jpython', the variables `py-jpython-command' and
98`py-jpython-command-args' are consulted to determine the interpreter
99and arguments to use.
100
Barry Warsaw11f21561999-07-28 21:59:43 +0000101Note that this variable is consulted only the first time that a Python
102mode buffer is visited during an Emacs session. After that, use
Barry Warsawaa384fd1999-02-16 23:36:16 +0000103\\[py-toggle-shells] to change the interpreter shell."
104 :type '(choice (const :tag "Python (a.k.a. CPython)" cpython)
105 (const :tag "JPython" jpython))
106 :group 'python)
107
Barry Warsaw8f972b71998-02-05 20:45:49 +0000108(defcustom py-python-command-args '("-i")
109 "*List of string arguments to be used when starting a Python shell."
110 :type '(repeat string)
111 :group 'python)
112
Barry Warsawa2398801998-04-09 23:28:20 +0000113(defcustom py-jpython-command-args '("-i")
114 "*List of string arguments to be used when starting a JPython shell."
115 :type '(repeat string)
Barry Warsaw5ed843f1999-07-28 22:06:06 +0000116 :group 'python
117 :tag "JPython Command Args")
Barry Warsawa2398801998-04-09 23:28:20 +0000118
Barry Warsawc72c11c1997-08-09 06:42:08 +0000119(defcustom py-indent-offset 4
Barry Warsaw41a05c71998-08-10 16:33:12 +0000120 "*Amount of offset per level of indentation.
121`\\[py-guess-indent-offset]' can usually guess a good value when
122you're editing someone else's Python code."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000123 :type 'integer
124 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000125
Barry Warsaw742a5111998-03-13 17:29:15 +0000126(defcustom py-smart-indentation t
127 "*Should `python-mode' try to automagically set some indentation variables?
128When this variable is non-nil, two things happen when a buffer is set
129to `python-mode':
130
Barry Warsawc0d2d511999-06-03 22:18:59 +0000131 1. `py-indent-offset' is guessed from existing code in the buffer.
Barry Warsaw639eea61998-03-16 18:12:13 +0000132 Only guessed values between 2 and 8 are considered. If a valid
Barry Warsaw742a5111998-03-13 17:29:15 +0000133 guess can't be made (perhaps because you are visiting a new
Barry Warsaw639eea61998-03-16 18:12:13 +0000134 file), then the value in `py-indent-offset' is used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000135
Barry Warsaw639eea61998-03-16 18:12:13 +0000136 2. `indent-tabs-mode' is turned off if `py-indent-offset' does not
137 equal `tab-width' (`indent-tabs-mode' is never turned on by
138 Python mode). This means that for newly written code, tabs are
139 only inserted in indentation if one tab is one indentation
140 level, otherwise only spaces are used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000141
Barry Warsaw8046bef1998-03-13 20:04:52 +0000142Note that both these settings occur *after* `python-mode-hook' is run,
143so if you want to defeat the automagic configuration, you must also
144set `py-smart-indentation' to nil in your `python-mode-hook'."
Barry Warsaw742a5111998-03-13 17:29:15 +0000145 :type 'boolean
146 :group 'python)
147
Barry Warsawc72c11c1997-08-09 06:42:08 +0000148(defcustom py-align-multiline-strings-p t
149 "*Flag describing how multi-line triple quoted strings are aligned.
Barry Warsaw095e9c61995-09-19 20:01:42 +0000150When this flag is non-nil, continuation lines are lined up under the
151preceding line's indentation. When this flag is nil, continuation
Barry Warsawc72c11c1997-08-09 06:42:08 +0000152lines are aligned to column zero."
153 :type '(choice (const :tag "Align under preceding line" t)
154 (const :tag "Align to column zero" nil))
155 :group 'python)
Barry Warsaw095e9c61995-09-19 20:01:42 +0000156
Barry Warsaw218eb751998-09-22 19:51:47 +0000157(defcustom py-block-comment-prefix "##"
Barry Warsaw867a32a1996-03-07 18:30:26 +0000158 "*String used by \\[comment-region] to comment out a block of code.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000159This should follow the convention for non-indenting comment lines so
160that the indentation commands won't get confused (i.e., the string
161should be of the form `#x...' where `x' is not a blank or a tab, and
Barry Warsaw218eb751998-09-22 19:51:47 +0000162`...' is arbitrary). However, this string should not end in whitespace."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000163 :type 'string
164 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000165
Barry Warsawc72c11c1997-08-09 06:42:08 +0000166(defcustom py-honor-comment-indentation t
Barry Warsaw6d627751996-03-06 18:41:38 +0000167 "*Controls how comment lines influence subsequent indentation.
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000168
Barry Warsaw6d627751996-03-06 18:41:38 +0000169When nil, all comment lines are skipped for indentation purposes, and
Barry Warsawc72c11c1997-08-09 06:42:08 +0000170if possible, a faster algorithm is used (i.e. X/Emacs 19 and beyond).
Barry Warsaw6d627751996-03-06 18:41:38 +0000171
172When t, lines that begin with a single `#' are a hint to subsequent
173line indentation. If the previous line is such a comment line (as
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000174opposed to one that starts with `py-block-comment-prefix'), then its
Barry Warsaw6d627751996-03-06 18:41:38 +0000175indentation is used as a hint for this line's indentation. Lines that
176begin with `py-block-comment-prefix' are ignored for indentation
177purposes.
178
179When not nil or t, comment lines that begin with a `#' are used as
Barry Warsawc72c11c1997-08-09 06:42:08 +0000180indentation hints, unless the comment character is in column zero."
181 :type '(choice
182 (const :tag "Skip all comment lines (fast)" nil)
183 (const :tag "Single # `sets' indentation for next line" t)
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000184 (const :tag "Single # `sets' indentation except at column zero"
185 other)
Barry Warsawc72c11c1997-08-09 06:42:08 +0000186 )
187 :group 'python)
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000188
Barry Warsaw516b6201997-08-09 06:43:20 +0000189(defcustom py-temp-directory
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000190 (let ((ok '(lambda (x)
191 (and x
192 (setq x (expand-file-name x)) ; always true
193 (file-directory-p x)
194 (file-writable-p x)
195 x))))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000196 (or (funcall ok (getenv "TMPDIR"))
197 (funcall ok "/usr/tmp")
198 (funcall ok "/tmp")
199 (funcall ok ".")
200 (error
Barry Warsaw6c6db0a1998-02-25 16:33:56 +0000201 "Couldn't find a usable temp directory -- set `py-temp-directory'")))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000202 "*Directory used for temp files created by a *Python* process.
203By default, the first directory from this list that exists and that you
204can write into: the value (if any) of the environment variable TMPDIR,
Barry Warsawc72c11c1997-08-09 06:42:08 +0000205/usr/tmp, /tmp, or the current directory."
206 :type 'string
207 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000208
Barry Warsaw516b6201997-08-09 06:43:20 +0000209(defcustom py-beep-if-tab-change t
Barry Warsaw41a05c71998-08-10 16:33:12 +0000210 "*Ring the bell if `tab-width' is changed.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000211If a comment of the form
212
213 \t# vi:set tabsize=<number>:
214
215is found before the first code line when the file is entered, and the
216current value of (the general Emacs variable) `tab-width' does not
217equal <number>, `tab-width' is set to <number>, a message saying so is
218displayed in the echo area, and if `py-beep-if-tab-change' is non-nil
Barry Warsawc72c11c1997-08-09 06:42:08 +0000219the Emacs bell is also rung as a warning."
220 :type 'boolean
221 :group 'python)
222
Barry Warsaw9981d221997-12-03 05:25:48 +0000223(defcustom py-jump-on-exception t
224 "*Jump to innermost exception frame in *Python Output* buffer.
Barry Warsaw12c92941998-08-10 21:44:37 +0000225When this variable is non-nil and an exception occurs when running
Barry Warsaw9981d221997-12-03 05:25:48 +0000226Python code synchronously in a subprocess, jump immediately to the
Barry Warsaw12c92941998-08-10 21:44:37 +0000227source code of the innermost traceback frame."
Barry Warsaw3bfed5b1998-05-19 16:25:04 +0000228 :type 'boolean
229 :group 'python)
230
231(defcustom py-ask-about-save t
232 "If not nil, ask about which buffers to save before executing some code.
233Otherwise, all modified buffers are saved without asking."
234 :type 'boolean
235 :group 'python)
Barry Warsaw9981d221997-12-03 05:25:48 +0000236
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000237(defcustom py-backspace-function 'backward-delete-char-untabify
238 "*Function called by `py-electric-backspace' when deleting backwards."
239 :type 'function
240 :group 'python)
241
242(defcustom py-delete-function 'delete-char
243 "*Function called by `py-electric-delete' when deleting forwards."
244 :type 'function
245 :group 'python)
246
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000247(defcustom py-imenu-show-method-args-p nil
248 "*Controls echoing of arguments of functions & methods in the Imenu buffer.
249When non-nil, arguments are printed."
250 :type 'boolean
251 :group 'python)
252(make-variable-buffer-local 'py-indent-offset)
253
Barry Warsaw4f577d22001-04-11 20:23:17 +0000254(defcustom py-pdbtrack-do-tracking-p t
255 "*Controls whether the pdbtrack feature is enabled or not.
256When non-nil, pdbtrack is enabled in all comint-based buffers,
257e.g. shell buffers and the *Python* buffer. When using pdb to debug a
258Python program, pdbtrack notices the pdb prompt and displays the
259source file and line that the program is stopped at, much the same way
260as gud-mode does for debugging C programs with gdb."
261 :type 'boolean
262 :group 'python)
263(make-variable-buffer-local 'py-pdbtrack-do-tracking-p)
264
265(defcustom py-pdbtrack-minor-mode-string " PDB"
266 "*String to use in the minor mode list when pdbtrack is enabled."
267 :type 'string
268 :group 'python)
269
Barry Warsawc0ecb531998-01-20 21:43:34 +0000270;; Not customizable
271(defvar py-master-file nil
272 "If non-nil, execute the named file instead of the buffer's file.
Barry Warsaw50b3eb61998-02-25 15:57:47 +0000273The intent is to allow you to set this variable in the file's local
Barry Warsawc0ecb531998-01-20 21:43:34 +0000274variable section, e.g.:
275
276 # Local Variables:
277 # py-master-file: \"master.py\"
278 # End:
279
Barry Warsaw41a05c71998-08-10 16:33:12 +0000280so that typing \\[py-execute-buffer] in that buffer executes the named
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000281master file instead of the buffer's file. If the file name has a
282relative path, the value of variable `default-directory' for the
283buffer is prepended to come up with a file name.")
Barry Warsawc0ecb531998-01-20 21:43:34 +0000284(make-variable-buffer-local 'py-master-file)
285
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000286
Barry Warsawc72c11c1997-08-09 06:42:08 +0000287
288;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
289;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT
290
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000291(defconst py-emacs-features
292 (let (features)
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000293 features)
Barry Warsawc12c62e1997-09-04 04:18:07 +0000294 "A list of features extant in the Emacs you are using.
Barry Warsaw6ae21ad1997-11-06 14:36:49 +0000295There are many flavors of Emacs out there, with different levels of
296support for features needed by `python-mode'.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000297
Barry Warsawfb07f401997-02-24 03:37:22 +0000298(defvar python-font-lock-keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000299 (let ((kw1 (mapconcat 'identity
300 '("and" "assert" "break" "class"
301 "continue" "def" "del" "elif"
302 "else" "except" "exec" "for"
303 "from" "global" "if" "import"
304 "in" "is" "lambda" "not"
305 "or" "pass" "print" "raise"
306 "return" "while"
307 )
308 "\\|"))
309 (kw2 (mapconcat 'identity
310 '("else:" "except:" "finally:" "try:")
311 "\\|"))
312 )
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000313 (list
Barry Warsawef3c8911997-11-05 18:55:50 +0000314 ;; keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000315 (cons (concat "\\b\\(" kw1 "\\)\\b[ \n\t(]") 1)
316 ;; block introducing keywords with immediately following colons.
317 ;; Yes "except" is in both lists.
318 (cons (concat "\\b\\(" kw2 "\\)[ \n\t(]") 1)
Barry Warsawe0c182f2000-12-27 17:41:47 +0000319 ;; `as' but only in "import foo as bar"
320 '("[ \t]*\\(\\bfrom\\b.*\\)?\\bimport\\b.*\\b\\(as\\)\\b" . 2)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000321 ;; classes
322 '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
323 1 font-lock-type-face)
324 ;; functions
325 '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
326 1 font-lock-function-name-face)
327 ))
Barry Warsaw62d9d6e1996-03-06 20:32:27 +0000328 "Additional expressions to highlight in Python mode.")
Barry Warsawfb07f401997-02-24 03:37:22 +0000329(put 'python-mode 'font-lock-defaults '(python-font-lock-keywords))
330
Barry Warsawe467bfb1997-11-26 05:40:58 +0000331;; have to bind py-file-queue before installing the kill-emacs-hook
Barry Warsaw7ae77681994-12-12 20:38:05 +0000332(defvar py-file-queue nil
333 "Queue of Python temp files awaiting execution.
334Currently-active file is at the head of the list.")
335
Barry Warsaw4f577d22001-04-11 20:23:17 +0000336(defvar py-pdbtrack-is-tracking-p nil)
337
338
Barry Warsawc72c11c1997-08-09 06:42:08 +0000339
340;; Constants
341
Barry Warsawc72c11c1997-08-09 06:42:08 +0000342(defconst py-stringlit-re
343 (concat
Barry Warsaw751f4931998-05-19 16:06:21 +0000344 ;; These fail if backslash-quote ends the string (not worth
345 ;; fixing?). They precede the short versions so that the first two
346 ;; quotes don't look like an empty short string.
347 ;;
348 ;; (maybe raw), long single quoted triple quoted strings (SQTQ),
349 ;; with potential embedded single quotes
350 "[rR]?'''[^']*\\(\\('[^']\\|''[^']\\)[^']*\\)*'''"
351 "\\|"
352 ;; (maybe raw), long double quoted triple quoted strings (DQTQ),
353 ;; with potential embedded double quotes
354 "[rR]?\"\"\"[^\"]*\\(\\(\"[^\"]\\|\"\"[^\"]\\)[^\"]*\\)*\"\"\""
355 "\\|"
356 "[rR]?'\\([^'\n\\]\\|\\\\.\\)*'" ; single-quoted
Barry Warsawc72c11c1997-08-09 06:42:08 +0000357 "\\|" ; or
Barry Warsaw751f4931998-05-19 16:06:21 +0000358 "[rR]?\"\\([^\"\n\\]\\|\\\\.\\)*\"" ; double-quoted
Barry Warsaw41a05c71998-08-10 16:33:12 +0000359 )
360 "Regular expression matching a Python string literal.")
Barry Warsaw751f4931998-05-19 16:06:21 +0000361
Barry Warsawc72c11c1997-08-09 06:42:08 +0000362(defconst py-continued-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000363 ;; This is tricky because a trailing backslash does not mean
364 ;; continuation if it's in a comment
Barry Warsawc72c11c1997-08-09 06:42:08 +0000365 (concat
366 "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*"
Barry Warsaw41a05c71998-08-10 16:33:12 +0000367 "\\\\$")
368 "Regular expression matching Python backslash continuation lines.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000369
Barry Warsaw41a05c71998-08-10 16:33:12 +0000370(defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)"
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000371 "Regular expression matching a blank or comment line.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000372
Barry Warsawc72c11c1997-08-09 06:42:08 +0000373(defconst py-outdent-re
374 (concat "\\(" (mapconcat 'identity
375 '("else:"
376 "except\\(\\s +.*\\)?:"
377 "finally:"
378 "elif\\s +.*:")
379 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000380 "\\)")
381 "Regular expression matching statements to be dedented one level.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000382
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000383(defconst py-block-closing-keywords-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000384 "\\(return\\|raise\\|break\\|continue\\|pass\\)"
385 "Regular expression matching keywords which typically close a block.")
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000386
Barry Warsawc72c11c1997-08-09 06:42:08 +0000387(defconst py-no-outdent-re
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000388 (concat
389 "\\("
390 (mapconcat 'identity
391 (list "try:"
392 "except\\(\\s +.*\\)?:"
393 "while\\s +.*:"
394 "for\\s +.*:"
395 "if\\s +.*:"
396 "elif\\s +.*:"
397 (concat py-block-closing-keywords-re "[ \t\n]")
398 )
399 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000400 "\\)")
401 "Regular expression matching lines not to dedent after.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000402
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000403(defconst py-defun-start-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000404 "^\\([ \t]*\\)def[ \t]+\\([a-zA-Z_0-9]+\\)\\|\\(^[a-zA-Z_0-9]+\\)[ \t]*="
405 ;; If you change this, you probably have to change py-current-defun
406 ;; as well. This is only used by py-current-defun to find the name
407 ;; for add-log.el.
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000408 "Regular expression matching a function, method, or variable assignment.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000409
Barry Warsaw41a05c71998-08-10 16:33:12 +0000410(defconst py-class-start-re "^class[ \t]*\\([a-zA-Z_0-9]+\\)"
411 ;; If you change this, you probably have to change py-current-defun
412 ;; as well. This is only used by py-current-defun to find the name
413 ;; for add-log.el.
414 "Regular expression for finding a class name.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000415
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000416(defconst py-traceback-line-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000417 "[ \t]+File \"\\([^\"]+\\)\", line \\([0-9]+\\)"
418 "Regular expression that describes tracebacks.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000419
Barry Warsaw4f577d22001-04-11 20:23:17 +0000420;; pdbtrack contants
421(defconst py-pdbtrack-stack-entry-regexp
422 "> \\([^(]+\\)(\\([0-9]+\\))[?a-zA-Z0-9_]+()"
423 "Regular expression pdbtrack uses to find a stack trace entry.")
424
425(defconst py-pdbtrack-input-prompt "\n[(<]?pdb[>)]? "
426 "Regular expression pdbtrack uses to recognize a pdb prompt.")
427
428(defconst py-pdbtrack-track-range 10000
429 "Max number of characters from end of buffer to search for stack entry.")
430
Barry Warsawc72c11c1997-08-09 06:42:08 +0000431
432
Barry Warsawc72c11c1997-08-09 06:42:08 +0000433;; Major mode boilerplate
434
Barry Warsaw7ae77681994-12-12 20:38:05 +0000435;; define a mode-specific abbrev table for those who use such things
436(defvar python-mode-abbrev-table nil
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000437 "Abbrev table in use in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000438(define-abbrev-table 'python-mode-abbrev-table nil)
439
Barry Warsaw7ae77681994-12-12 20:38:05 +0000440(defvar python-mode-hook nil
441 "*Hook called by `python-mode'.")
442
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000443;; In previous version of python-mode.el, the hook was incorrectly
444;; called py-mode-hook, and was not defvar'd. Deprecate its use.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000445(and (fboundp 'make-obsolete-variable)
446 (make-obsolete-variable 'py-mode-hook 'python-mode-hook))
447
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000448(defvar py-mode-map ()
449 "Keymap used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000450(if py-mode-map
Barry Warsawc72c11c1997-08-09 06:42:08 +0000451 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000452 (setq py-mode-map (make-sparse-keymap))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000453 ;; electric keys
454 (define-key py-mode-map ":" 'py-electric-colon)
455 ;; indentation level modifiers
456 (define-key py-mode-map "\C-c\C-l" 'py-shift-region-left)
457 (define-key py-mode-map "\C-c\C-r" 'py-shift-region-right)
458 (define-key py-mode-map "\C-c<" 'py-shift-region-left)
459 (define-key py-mode-map "\C-c>" 'py-shift-region-right)
460 ;; subprocess commands
461 (define-key py-mode-map "\C-c\C-c" 'py-execute-buffer)
Barry Warsaw820273d1998-05-19 15:54:45 +0000462 (define-key py-mode-map "\C-c\C-m" 'py-execute-import-or-reload)
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000463 (define-key py-mode-map "\C-c\C-s" 'py-execute-string)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000464 (define-key py-mode-map "\C-c|" 'py-execute-region)
Barry Warsaw820273d1998-05-19 15:54:45 +0000465 (define-key py-mode-map "\e\C-x" 'py-execute-def-or-class)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000466 (define-key py-mode-map "\C-c!" 'py-shell)
Barry Warsawa2398801998-04-09 23:28:20 +0000467 (define-key py-mode-map "\C-c\C-t" 'py-toggle-shells)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000468 ;; Caution! Enter here at your own risk. We are trying to support
469 ;; several behaviors and it gets disgusting. :-( This logic ripped
470 ;; largely from CC Mode.
471 ;;
472 ;; In XEmacs 19, Emacs 19, and Emacs 20, we use this to bind
473 ;; backwards deletion behavior to DEL, which both Delete and
474 ;; Backspace get translated to. There's no way to separate this
475 ;; behavior in a clean way, so deal with it! Besides, it's been
476 ;; this way since the dawn of time.
477 (if (not (boundp 'delete-key-deletes-forward))
478 (define-key py-mode-map "\177" 'py-electric-backspace)
479 ;; However, XEmacs 20 actually achieved enlightenment. It is
480 ;; possible to sanely define both backward and forward deletion
481 ;; behavior under X separately (TTYs are forever beyond hope, but
482 ;; who cares? XEmacs 20 does the right thing with these too).
483 (define-key py-mode-map [delete] 'py-electric-delete)
484 (define-key py-mode-map [backspace] 'py-electric-backspace))
Barry Warsaw8c4a8de1997-11-26 20:30:33 +0000485 ;; Separate M-BS from C-M-h. The former should remain
486 ;; backward-kill-word.
487 (define-key py-mode-map [(control meta h)] 'py-mark-def-or-class)
Barry Warsaw2518c671997-11-05 00:51:08 +0000488 (define-key py-mode-map "\C-c\C-k" 'py-mark-block)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000489 ;; Miscellaneous
490 (define-key py-mode-map "\C-c:" 'py-guess-indent-offset)
491 (define-key py-mode-map "\C-c\t" 'py-indent-region)
Barry Warsaw4f577d22001-04-11 20:23:17 +0000492 (define-key py-mode-map "\C-c\C-d" 'py-pdbtrack-toggle-stack-tracking)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000493 (define-key py-mode-map "\C-c\C-n" 'py-next-statement)
494 (define-key py-mode-map "\C-c\C-p" 'py-previous-statement)
495 (define-key py-mode-map "\C-c\C-u" 'py-goto-block-up)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000496 (define-key py-mode-map "\C-c#" 'py-comment-region)
497 (define-key py-mode-map "\C-c?" 'py-describe-mode)
498 (define-key py-mode-map "\C-c\C-hm" 'py-describe-mode)
Barry Warsawab0e86c1998-05-19 15:31:46 +0000499 (define-key py-mode-map "\e\C-a" 'py-beginning-of-def-or-class)
500 (define-key py-mode-map "\e\C-e" 'py-end-of-def-or-class)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000501 (define-key py-mode-map "\C-c-" 'py-up-exception)
502 (define-key py-mode-map "\C-c=" 'py-down-exception)
Barry Warsawf8ddb6a1999-01-18 21:49:39 +0000503 ;; stuff that is `standard' but doesn't interface well with
504 ;; python-mode, which forces us to rebind to special commands
505 (define-key py-mode-map "\C-xnd" 'py-narrow-to-defun)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000506 ;; information
507 (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report)
508 (define-key py-mode-map "\C-c\C-v" 'py-version)
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000509 ;; shadow global bindings for newline-and-indent w/ the py- version.
510 ;; BAW - this is extremely bad form, but I'm not going to change it
511 ;; for now.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000512 (mapcar #'(lambda (key)
513 (define-key py-mode-map key 'py-newline-and-indent))
514 (where-is-internal 'newline-and-indent))
Barry Warsawf19feb81999-01-21 17:06:11 +0000515 ;; Force RET to be py-newline-and-indent even if it didn't get
516 ;; mapped by the above code. motivation: Emacs' default binding for
517 ;; RET is `newline' and C-j is `newline-and-indent'. Most Pythoneers
518 ;; expect RET to do a `py-newline-and-indent' and any Emacsers who
519 ;; dislike this are probably knowledgeable enough to do a rebind.
520 ;; However, we do *not* change C-j since many Emacsers have already
521 ;; swapped RET and C-j and they don't want C-j bound to `newline' to
522 ;; change.
523 (define-key py-mode-map "\C-m" 'py-newline-and-indent)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000524 )
525
526(defvar py-mode-output-map nil
Barry Warsaw41a05c71998-08-10 16:33:12 +0000527 "Keymap used in *Python Output* buffers.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000528(if py-mode-output-map
529 nil
530 (setq py-mode-output-map (make-sparse-keymap))
531 (define-key py-mode-output-map [button2] 'py-mouseto-exception)
532 (define-key py-mode-output-map "\C-c\C-c" 'py-goto-exception)
533 ;; TBD: Disable all self-inserting keys. This is bogus, we should
534 ;; really implement this as *Python Output* buffer being read-only
535 (mapcar #' (lambda (key)
536 (define-key py-mode-output-map key
537 #'(lambda () (interactive) (beep))))
538 (where-is-internal 'self-insert-command))
Barry Warsaw850437a1995-03-08 21:50:28 +0000539 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000540
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +0000541(defvar py-shell-map nil
542 "Keymap used in *Python* shell buffers.")
543(if py-shell-map
544 nil
545 (setq py-shell-map (copy-keymap comint-mode-map))
546 (define-key py-shell-map [tab] 'tab-to-tab-stop)
547 (define-key py-shell-map "\C-c-" 'py-up-exception)
548 (define-key py-shell-map "\C-c=" 'py-down-exception)
549 )
550
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000551(defvar py-mode-syntax-table nil
552 "Syntax table used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000553(if py-mode-syntax-table
Barry Warsawc72c11c1997-08-09 06:42:08 +0000554 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000555 (setq py-mode-syntax-table (make-syntax-table))
Barry Warsawc72c11c1997-08-09 06:42:08 +0000556 (modify-syntax-entry ?\( "()" py-mode-syntax-table)
557 (modify-syntax-entry ?\) ")(" py-mode-syntax-table)
558 (modify-syntax-entry ?\[ "(]" py-mode-syntax-table)
559 (modify-syntax-entry ?\] ")[" py-mode-syntax-table)
560 (modify-syntax-entry ?\{ "(}" py-mode-syntax-table)
561 (modify-syntax-entry ?\} "){" py-mode-syntax-table)
562 ;; Add operator symbols misassigned in the std table
563 (modify-syntax-entry ?\$ "." py-mode-syntax-table)
564 (modify-syntax-entry ?\% "." py-mode-syntax-table)
565 (modify-syntax-entry ?\& "." py-mode-syntax-table)
566 (modify-syntax-entry ?\* "." py-mode-syntax-table)
567 (modify-syntax-entry ?\+ "." py-mode-syntax-table)
568 (modify-syntax-entry ?\- "." py-mode-syntax-table)
569 (modify-syntax-entry ?\/ "." py-mode-syntax-table)
570 (modify-syntax-entry ?\< "." py-mode-syntax-table)
571 (modify-syntax-entry ?\= "." py-mode-syntax-table)
572 (modify-syntax-entry ?\> "." py-mode-syntax-table)
573 (modify-syntax-entry ?\| "." py-mode-syntax-table)
574 ;; For historical reasons, underscore is word class instead of
575 ;; symbol class. GNU conventions say it should be symbol class, but
576 ;; there's a natural conflict between what major mode authors want
577 ;; and what users expect from `forward-word' and `backward-word'.
578 ;; Guido and I have hashed this out and have decided to keep
579 ;; underscore in word class. If you're tempted to change it, try
580 ;; binding M-f and M-b to py-forward-into-nomenclature and
Barry Warsawaa384fd1999-02-16 23:36:16 +0000581 ;; py-backward-into-nomenclature instead. This doesn't help in all
582 ;; situations where you'd want the different behavior
583 ;; (e.g. backward-kill-word).
Barry Warsawc72c11c1997-08-09 06:42:08 +0000584 (modify-syntax-entry ?\_ "w" py-mode-syntax-table)
585 ;; Both single quote and double quote are string delimiters
586 (modify-syntax-entry ?\' "\"" py-mode-syntax-table)
587 (modify-syntax-entry ?\" "\"" py-mode-syntax-table)
588 ;; backquote is open and close paren
589 (modify-syntax-entry ?\` "$" py-mode-syntax-table)
590 ;; comment delimiters
591 (modify-syntax-entry ?\# "<" py-mode-syntax-table)
592 (modify-syntax-entry ?\n ">" py-mode-syntax-table)
593 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000594
Barry Warsawb3e81d51996-09-04 15:12:42 +0000595
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000596
Barry Warsawbc3760b1998-09-14 16:16:18 +0000597;; Utilities
598
599(defmacro py-safe (&rest body)
600 "Safely execute BODY, return nil if an error occurred."
601 (` (condition-case nil
602 (progn (,@ body))
603 (error nil))))
604
605(defsubst py-keep-region-active ()
606 "Keep the region active in XEmacs."
607 ;; Ignore byte-compiler warnings you might see. Also note that
608 ;; FSF's Emacs 19 does it differently; its policy doesn't require us
609 ;; to take explicit action.
610 (and (boundp 'zmacs-region-stays)
611 (setq zmacs-region-stays t)))
612
613(defsubst py-point (position)
614 "Returns the value of point at certain commonly referenced POSITIONs.
615POSITION can be one of the following symbols:
616
617 bol -- beginning of line
618 eol -- end of line
619 bod -- beginning of def or class
620 eod -- end of def or class
621 bob -- beginning of buffer
622 eob -- end of buffer
623 boi -- back to indentation
624 bos -- beginning of statement
625
626This function does not modify point or mark."
627 (let ((here (point)))
628 (cond
629 ((eq position 'bol) (beginning-of-line))
630 ((eq position 'eol) (end-of-line))
631 ((eq position 'bod) (py-beginning-of-def-or-class))
632 ((eq position 'eod) (py-end-of-def-or-class))
633 ;; Kind of funny, I know, but useful for py-up-exception.
634 ((eq position 'bob) (beginning-of-buffer))
635 ((eq position 'eob) (end-of-buffer))
636 ((eq position 'boi) (back-to-indentation))
637 ((eq position 'bos) (py-goto-initial-line))
638 (t (error "Unknown buffer position requested: %s" position))
639 )
640 (prog1
641 (point)
642 (goto-char here))))
643
644(defsubst py-highlight-line (from to file line)
645 (cond
646 ((fboundp 'make-extent)
647 ;; XEmacs
648 (let ((e (make-extent from to)))
649 (set-extent-property e 'mouse-face 'highlight)
650 (set-extent-property e 'py-exc-info (cons file line))
651 (set-extent-property e 'keymap py-mode-output-map)))
652 (t
653 ;; Emacs -- Please port this!
654 )
655 ))
656
657(defun py-in-literal (&optional lim)
658 "Return non-nil if point is in a Python literal (a comment or string).
659Optional argument LIM indicates the beginning of the containing form,
660i.e. the limit on how far back to scan."
661 ;; This is the version used for non-XEmacs, which has a nicer
662 ;; interface.
663 ;;
664 ;; WARNING: Watch out for infinite recursion.
665 (let* ((lim (or lim (py-point 'bod)))
666 (state (parse-partial-sexp lim (point))))
667 (cond
668 ((nth 3 state) 'string)
669 ((nth 4 state) 'comment)
670 (t nil))))
671
672;; XEmacs has a built-in function that should make this much quicker.
673;; In this case, lim is ignored
674(defun py-fast-in-literal (&optional lim)
675 "Fast version of `py-in-literal', used only by XEmacs.
676Optional LIM is ignored."
677 ;; don't have to worry about context == 'block-comment
678 (buffer-syntactic-context))
679
680(if (fboundp 'buffer-syntactic-context)
681 (defalias 'py-in-literal 'py-fast-in-literal))
682
683
684
Barry Warsaw42f707f1996-07-29 21:05:05 +0000685;; Menu definitions, only relevent if you have the easymenu.el package
686;; (standard in the latest Emacs 19 and XEmacs 19 distributions).
Barry Warsaw5490a061996-08-06 15:43:33 +0000687(defvar py-menu nil
688 "Menu for Python Mode.
Barry Warsawc72c11c1997-08-09 06:42:08 +0000689This menu will get created automatically if you have the `easymenu'
690package. Note that the latest X/Emacs releases contain this package.")
Barry Warsaw5490a061996-08-06 15:43:33 +0000691
Barry Warsawc72c11c1997-08-09 06:42:08 +0000692(and (py-safe (require 'easymenu) t)
693 (easy-menu-define
694 py-menu py-mode-map "Python Mode menu"
695 '("Python"
696 ["Comment Out Region" py-comment-region (mark)]
697 ["Uncomment Region" (py-comment-region (point) (mark) '(4)) (mark)]
698 "-"
699 ["Mark current block" py-mark-block t]
Barry Warsaw2518c671997-11-05 00:51:08 +0000700 ["Mark current def" py-mark-def-or-class t]
701 ["Mark current class" (py-mark-def-or-class t) t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000702 "-"
703 ["Shift region left" py-shift-region-left (mark)]
704 ["Shift region right" py-shift-region-right (mark)]
705 "-"
Barry Warsaw820273d1998-05-19 15:54:45 +0000706 ["Import/reload file" py-execute-import-or-reload t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000707 ["Execute buffer" py-execute-buffer t]
708 ["Execute region" py-execute-region (mark)]
Barry Warsaw820273d1998-05-19 15:54:45 +0000709 ["Execute def or class" py-execute-def-or-class (mark)]
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000710 ["Execute string" py-execute-string t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000711 ["Start interpreter..." py-shell t]
712 "-"
713 ["Go to start of block" py-goto-block-up t]
Barry Warsawab0e86c1998-05-19 15:31:46 +0000714 ["Go to start of class" (py-beginning-of-def-or-class t) t]
715 ["Move to end of class" (py-end-of-def-or-class t) t]
716 ["Move to start of def" py-beginning-of-def-or-class t]
717 ["Move to end of def" py-end-of-def-or-class t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000718 "-"
719 ["Describe mode" py-describe-mode t]
720 )))
Barry Warsaw42f707f1996-07-29 21:05:05 +0000721
Barry Warsaw81437461996-08-01 19:48:02 +0000722
723
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000724;; Imenu definitions
725(defvar py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000726 (concat ; <<classes>>
727 "\\(" ;
728 "^[ \t]*" ; newline and maybe whitespace
729 "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name
730 ; possibly multiple superclasses
Barry Warsaw3179fe01998-04-04 21:36:53 +0000731 "\\([ \t]*\\((\\([a-zA-Z0-9_,. \t\n]\\)*)\\)?\\)"
Barry Warsaw81437461996-08-01 19:48:02 +0000732 "[ \t]*:" ; and the final :
733 "\\)" ; >>classes<<
734 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000735 "Regexp for Python classes for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000736 )
737
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000738(defvar py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000739 (concat ; <<methods and functions>>
740 "\\(" ;
741 "^[ \t]*" ; new line and maybe whitespace
742 "\\(def[ \t]+" ; function definitions start with def
743 "\\([a-zA-Z0-9_]+\\)" ; name is here
744 ; function arguments...
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000745;; "[ \t]*(\\([-+/a-zA-Z0-9_=,\* \t\n.()\"'#]*\\))"
746 "[ \t]*(\\([^:#]*\\))"
Barry Warsaw81437461996-08-01 19:48:02 +0000747 "\\)" ; end of def
748 "[ \t]*:" ; and then the :
749 "\\)" ; >>methods and functions<<
750 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000751 "Regexp for Python methods/functions for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000752 )
753
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000754(defvar py-imenu-method-no-arg-parens '(2 8)
755 "Indices into groups of the Python regexp for use with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000756
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000757Using these values will result in smaller Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000758functions are not listed.
759
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000760See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000761information.")
762
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000763(defvar py-imenu-method-arg-parens '(2 7)
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000764 "Indices into groups of the Python regexp for use with imenu.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000765Using these values will result in large Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000766functions are listed.
767
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000768See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000769information.")
770
771;; Note that in this format, this variable can still be used with the
772;; imenu--generic-function. Otherwise, there is no real reason to have
773;; it.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000774(defvar py-imenu-generic-expression
Barry Warsaw81437461996-08-01 19:48:02 +0000775 (cons
776 (concat
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000777 py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000778 "\\|" ; or...
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000779 py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000780 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000781 py-imenu-method-no-arg-parens)
782 "Generic Python expression which may be used directly with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000783Used by setting the variable `imenu-generic-expression' to this value.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000784Also, see the function \\[py-imenu-create-index] for a better
785alternative for finding the index.")
Barry Warsaw81437461996-08-01 19:48:02 +0000786
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000787;; These next two variables are used when searching for the Python
Barry Warsaw81437461996-08-01 19:48:02 +0000788;; class/definitions. Just saving some time in accessing the
789;; generic-python-expression, really.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000790(defvar py-imenu-generic-regexp nil)
791(defvar py-imenu-generic-parens nil)
Barry Warsaw81437461996-08-01 19:48:02 +0000792
793
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000794(defun py-imenu-create-index-function ()
795 "Python interface function for the Imenu package.
796Finds all Python classes and functions/methods. Calls function
797\\[py-imenu-create-index-engine]. See that function for the details
798of how this works."
799 (setq py-imenu-generic-regexp (car py-imenu-generic-expression)
800 py-imenu-generic-parens (if py-imenu-show-method-args-p
801 py-imenu-method-arg-parens
802 py-imenu-method-no-arg-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000803 (goto-char (point-min))
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000804 ;; Warning: When the buffer has no classes or functions, this will
805 ;; return nil, which seems proper according to the Imenu API, but
806 ;; causes an error in the XEmacs port of Imenu. Sigh.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000807 (py-imenu-create-index-engine nil))
Barry Warsaw81437461996-08-01 19:48:02 +0000808
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000809(defun py-imenu-create-index-engine (&optional start-indent)
810 "Function for finding Imenu definitions in Python.
Barry Warsaw81437461996-08-01 19:48:02 +0000811
812Finds all definitions (classes, methods, or functions) in a Python
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000813file for the Imenu package.
Barry Warsaw81437461996-08-01 19:48:02 +0000814
815Returns a possibly nested alist of the form
816
817 (INDEX-NAME . INDEX-POSITION)
818
819The second element of the alist may be an alist, producing a nested
820list as in
821
822 (INDEX-NAME . INDEX-ALIST)
823
824This function should not be called directly, as it calls itself
825recursively and requires some setup. Rather this is the engine for
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000826the function \\[py-imenu-create-index-function].
Barry Warsaw81437461996-08-01 19:48:02 +0000827
828It works recursively by looking for all definitions at the current
829indention level. When it finds one, it adds it to the alist. If it
830finds a definition at a greater indentation level, it removes the
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000831previous definition from the alist. In its place it adds all
Barry Warsaw81437461996-08-01 19:48:02 +0000832definitions found at the next indentation level. When it finds a
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000833definition that is less indented then the current level, it returns
834the alist it has created thus far.
Barry Warsaw81437461996-08-01 19:48:02 +0000835
836The optional argument START-INDENT indicates the starting indentation
837at which to continue looking for Python classes, methods, or
838functions. If this is not supplied, the function uses the indentation
839of the first definition found."
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000840 (let (index-alist
841 sub-method-alist
Barry Warsaw81437461996-08-01 19:48:02 +0000842 looking-p
843 def-name prev-name
844 cur-indent def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000845 (class-paren (first py-imenu-generic-parens))
846 (def-paren (second py-imenu-generic-parens)))
Barry Warsaw81437461996-08-01 19:48:02 +0000847 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000848 (re-search-forward py-imenu-generic-regexp (point-max) t))
Barry Warsaw81437461996-08-01 19:48:02 +0000849 (while looking-p
850 (save-excursion
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000851 ;; used to set def-name to this value but generic-extract-name
852 ;; is new to imenu-1.14. this way it still works with
853 ;; imenu-1.11
854 ;;(imenu--generic-extract-name py-imenu-generic-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000855 (let ((cur-paren (if (match-beginning class-paren)
856 class-paren def-paren)))
857 (setq def-name
Barry Warsawc8520351997-11-26 06:14:40 +0000858 (buffer-substring-no-properties (match-beginning cur-paren)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000859 (match-end cur-paren))))
Barry Warsaw93c88cc1998-08-18 02:00:44 +0000860 (save-match-data
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000861 (py-beginning-of-def-or-class 'either))
Barry Warsaw81437461996-08-01 19:48:02 +0000862 (beginning-of-line)
863 (setq cur-indent (current-indentation)))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000864 ;; HACK: want to go to the next correct definition location. We
865 ;; explicitly list them here but it would be better to have them
866 ;; in a list.
Barry Warsaw81437461996-08-01 19:48:02 +0000867 (setq def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000868 (or (match-beginning class-paren)
869 (match-beginning def-paren)))
Barry Warsaw81437461996-08-01 19:48:02 +0000870 ;; if we don't have a starting indent level, take this one
871 (or start-indent
872 (setq start-indent cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000873 ;; if we don't have class name yet, take this one
874 (or prev-name
875 (setq prev-name def-name))
Barry Warsaw81437461996-08-01 19:48:02 +0000876 ;; what level is the next definition on? must be same, deeper
877 ;; or shallower indentation
878 (cond
879 ;; at the same indent level, add it to the list...
880 ((= start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000881 (push (cons def-name def-pos) index-alist))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000882 ;; deeper indented expression, recurse
Barry Warsaw81437461996-08-01 19:48:02 +0000883 ((< start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000884 ;; the point is currently on the expression we're supposed to
885 ;; start on, so go back to the last expression. The recursive
886 ;; call will find this place again and add it to the correct
887 ;; list
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000888 (re-search-backward py-imenu-generic-regexp (point-min) 'move)
889 (setq sub-method-alist (py-imenu-create-index-engine cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000890 (if sub-method-alist
891 ;; we put the last element on the index-alist on the start
892 ;; of the submethod alist so the user can still get to it.
893 (let ((save-elmt (pop index-alist)))
Barry Warsawc8520351997-11-26 06:14:40 +0000894 (push (cons prev-name
Barry Warsaw81437461996-08-01 19:48:02 +0000895 (cons save-elmt sub-method-alist))
896 index-alist))))
Barry Warsaw81437461996-08-01 19:48:02 +0000897 ;; found less indented expression, we're done.
898 (t
899 (setq looking-p nil)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000900 (re-search-backward py-imenu-generic-regexp (point-min) t)))
901 ;; end-cond
Barry Warsaw81437461996-08-01 19:48:02 +0000902 (setq prev-name def-name)
903 (and looking-p
904 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000905 (re-search-forward py-imenu-generic-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000906 (point-max) 'move))))
907 (nreverse index-alist)))
908
Barry Warsaw42f707f1996-07-29 21:05:05 +0000909
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000910;;;###autoload
Barry Warsaw7ae77681994-12-12 20:38:05 +0000911(defun python-mode ()
912 "Major mode for editing Python files.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000913To submit a problem report, enter `\\[py-submit-bug-report]' from a
914`python-mode' buffer. Do `\\[py-describe-mode]' for detailed
915documentation. To see what version of `python-mode' you are running,
916enter `\\[py-version]'.
917
918This mode knows about Python indentation, tokens, comments and
919continuation lines. Paragraphs are separated by blank lines only.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000920
921COMMANDS
922\\{py-mode-map}
923VARIABLES
924
Barry Warsaw42f707f1996-07-29 21:05:05 +0000925py-indent-offset\t\tindentation increment
Barry Warsaw41a05c71998-08-10 16:33:12 +0000926py-block-comment-prefix\t\tcomment string used by `comment-region'
Barry Warsaw42f707f1996-07-29 21:05:05 +0000927py-python-command\t\tshell command to invoke Python interpreter
Barry Warsaw42f707f1996-07-29 21:05:05 +0000928py-temp-directory\t\tdirectory used for temp files (if needed)
Barry Warsaw41a05c71998-08-10 16:33:12 +0000929py-beep-if-tab-change\t\tring the bell if `tab-width' is changed"
Barry Warsaw7ae77681994-12-12 20:38:05 +0000930 (interactive)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000931 ;; set up local variables
Barry Warsaw7ae77681994-12-12 20:38:05 +0000932 (kill-all-local-variables)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000933 (make-local-variable 'font-lock-defaults)
934 (make-local-variable 'paragraph-separate)
935 (make-local-variable 'paragraph-start)
936 (make-local-variable 'require-final-newline)
937 (make-local-variable 'comment-start)
Barry Warsaw5c8bef11996-12-17 21:56:10 +0000938 (make-local-variable 'comment-end)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000939 (make-local-variable 'comment-start-skip)
940 (make-local-variable 'comment-column)
Barry Warsaw003932a1998-07-07 15:11:24 +0000941 (make-local-variable 'comment-indent-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000942 (make-local-variable 'indent-region-function)
943 (make-local-variable 'indent-line-function)
Barry Warsawb3e81d51996-09-04 15:12:42 +0000944 (make-local-variable 'add-log-current-defun-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000945 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +0000946 (set-syntax-table py-mode-syntax-table)
Barry Warsaw003932a1998-07-07 15:11:24 +0000947 (setq major-mode 'python-mode
948 mode-name "Python"
949 local-abbrev-table python-mode-abbrev-table
950 font-lock-defaults '(python-font-lock-keywords)
951 paragraph-separate "^[ \t]*$"
952 paragraph-start "^[ \t]*$"
953 require-final-newline t
954 comment-start "# "
955 comment-end ""
956 comment-start-skip "# *"
957 comment-column 40
958 comment-indent-function 'py-comment-indent-function
959 indent-region-function 'py-indent-region
960 indent-line-function 'py-indent-line
Barry Warsawb3e81d51996-09-04 15:12:42 +0000961 ;; tell add-log.el how to find the current function/method/variable
962 add-log-current-defun-function 'py-current-defun
Barry Warsawb1f89511996-09-03 16:38:30 +0000963 )
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000964 (use-local-map py-mode-map)
Barry Warsaw42f707f1996-07-29 21:05:05 +0000965 ;; add the menu
966 (if py-menu
967 (easy-menu-add py-menu))
Barry Warsaw57697af1995-09-14 20:01:14 +0000968 ;; Emacs 19 requires this
Barry Warsawc72c11c1997-08-09 06:42:08 +0000969 (if (boundp 'comment-multi-line)
Barry Warsaw57697af1995-09-14 20:01:14 +0000970 (setq comment-multi-line nil))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000971 ;; Install Imenu if available
Barry Warsaw742a5111998-03-13 17:29:15 +0000972 (when (py-safe (require 'imenu))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000973 (setq imenu-create-index-function #'py-imenu-create-index-function)
974 (setq imenu-generic-expression py-imenu-generic-expression)
Barry Warsaw742a5111998-03-13 17:29:15 +0000975 (if (fboundp 'imenu-add-to-menubar)
976 (imenu-add-to-menubar (format "%s-%s" "IM" mode-name)))
977 )
978 ;; Run the mode hook. Note that py-mode-hook is deprecated.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000979 (if python-mode-hook
980 (run-hooks 'python-mode-hook)
Barry Warsaw742a5111998-03-13 17:29:15 +0000981 (run-hooks 'py-mode-hook))
982 ;; Now do the automagical guessing
983 (if py-smart-indentation
984 (let ((offset py-indent-offset))
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000985 ;; It's okay if this fails to guess a good value
Barry Warsaw742a5111998-03-13 17:29:15 +0000986 (if (and (py-safe (py-guess-indent-offset))
987 (<= py-indent-offset 8)
988 (>= py-indent-offset 2))
989 (setq offset py-indent-offset))
990 (setq py-indent-offset offset)
Barry Warsaw639eea61998-03-16 18:12:13 +0000991 ;; Only turn indent-tabs-mode off if tab-width !=
992 ;; py-indent-offset. Never turn it on, because the user must
993 ;; have explicitly turned it off.
994 (if (/= tab-width py-indent-offset)
995 (setq indent-tabs-mode nil))
Barry Warsaw11f21561999-07-28 21:59:43 +0000996 ))
997 ;; Set the default shell if not already set
998 (when (null py-which-shell)
999 (py-toggle-shells py-default-interpreter))
1000 )
Barry Warsaw7ae77681994-12-12 20:38:05 +00001001
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001002
Barry Warsawb91b7431995-03-14 15:55:20 +00001003;; electric characters
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001004(defun py-outdent-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00001005 "Returns non-nil if the current line should dedent one level."
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001006 (save-excursion
1007 (and (progn (back-to-indentation)
1008 (looking-at py-outdent-re))
Barry Warsaw1a1c6bb1999-01-09 17:22:38 +00001009 ;; short circuit infloop on illegal construct
1010 (not (bobp))
Barry Warsawf06777d1998-01-21 05:36:18 +00001011 (progn (forward-line -1)
1012 (py-goto-initial-line)
1013 (back-to-indentation)
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001014 (while (or (looking-at py-blank-or-comment-re)
1015 (bobp))
1016 (backward-to-indentation 1))
1017 (not (looking-at py-no-outdent-re)))
1018 )))
1019
Barry Warsawb91b7431995-03-14 15:55:20 +00001020(defun py-electric-colon (arg)
1021 "Insert a colon.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001022In certain cases the line is dedented appropriately. If a numeric
1023argument ARG is provided, that many colons are inserted
1024non-electrically. Electric behavior is inhibited inside a string or
1025comment."
Barry Warsawb91b7431995-03-14 15:55:20 +00001026 (interactive "P")
1027 (self-insert-command (prefix-numeric-value arg))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001028 ;; are we in a string or comment?
1029 (if (save-excursion
1030 (let ((pps (parse-partial-sexp (save-excursion
Barry Warsawab0e86c1998-05-19 15:31:46 +00001031 (py-beginning-of-def-or-class)
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001032 (point))
1033 (point))))
1034 (not (or (nth 3 pps) (nth 4 pps)))))
1035 (save-excursion
1036 (let ((here (point))
1037 (outdent 0)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001038 (indent (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001039 (if (and (not arg)
1040 (py-outdent-p)
1041 (= indent (save-excursion
Barry Warsawa7661821996-08-02 16:22:43 +00001042 (py-next-statement -1)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001043 (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001044 )
1045 (setq outdent py-indent-offset))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001046 ;; Don't indent, only dedent. This assumes that any lines
1047 ;; that are already dedented relative to
1048 ;; py-compute-indentation were put there on purpose. It's
1049 ;; highly annoying to have `:' indent for you. Use TAB, C-c
1050 ;; C-l or C-c C-r to adjust. TBD: Is there a better way to
1051 ;; determine this???
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001052 (if (< (current-indentation) indent) nil
1053 (goto-char here)
1054 (beginning-of-line)
1055 (delete-horizontal-space)
1056 (indent-to (- indent outdent))
1057 )))))
Barry Warsawb91b7431995-03-14 15:55:20 +00001058
1059
Barry Warsawa97a3f31997-11-04 18:47:06 +00001060;; Python subprocess utilities and filters
1061(defun py-execute-file (proc filename)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001062 "Send to Python interpreter process PROC \"execfile('FILENAME')\".
1063Make that process's buffer visible and force display. Also make
1064comint believe the user typed this string so that
1065`kill-output-from-shell' does The Right Thing."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001066 (let ((curbuf (current-buffer))
1067 (procbuf (process-buffer proc))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001068; (comint-scroll-to-bottom-on-output t)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001069 (msg (format "## working on region in file %s...\n" filename))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001070 (cmd (format "execfile(r'%s')\n" filename)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001071 (unwind-protect
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001072 (save-excursion
Barry Warsawa97a3f31997-11-04 18:47:06 +00001073 (set-buffer procbuf)
1074 (goto-char (point-max))
1075 (move-marker (process-mark proc) (point))
1076 (funcall (process-filter proc) proc msg))
1077 (set-buffer curbuf))
1078 (process-send-string proc cmd)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001079
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001080(defun py-comint-output-filter-function (string)
1081 "Watch output for Python prompt and exec next file waiting in queue.
1082This function is appropriate for `comint-output-filter-functions'."
Barry Warsaw014e0e21998-11-17 19:24:47 +00001083 ;; TBD: this should probably use split-string
Barry Warsaw4f94c731998-09-25 19:40:10 +00001084 (when (and (or (string-equal string ">>> ")
Barry Warsaw4f94c731998-09-25 19:40:10 +00001085 (and (>= (length string) 5)
1086 (string-equal (substring string -5) "\n>>> ")))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001087 py-file-queue)
1088 (py-safe (delete-file (car py-file-queue)))
1089 (setq py-file-queue (cdr py-file-queue))
1090 (if py-file-queue
1091 (let ((pyproc (get-buffer-process (current-buffer))))
1092 (py-execute-file pyproc (car py-file-queue))))
1093 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001094
Barry Warsaw4f577d22001-04-11 20:23:17 +00001095(defun py-pdbtrack-overlay-arrow (activation)
1096 "Activate or de arrow at beginning-of-line in current buffer."
1097 ;; This was derived/simplified from edebug-overlay-arrow
1098 (cond (activation
1099 (setq overlay-arrow-position (make-marker))
1100 (setq overlay-arrow-string "=>")
1101 (set-marker overlay-arrow-position (py-point 'bol) (current-buffer))
1102 (setq py-pdbtrack-is-tracking-p t))
1103 (overlay-arrow-position
1104 (setq overlay-arrow-position nil)
1105 (setq py-pdbtrack-is-tracking-p nil))
1106 ))
1107
1108(defun py-pdbtrack-track-stack-file (text)
1109 "Show the file indicated by the pdb stack entry line, in a separate window.
1110
1111Activity is disabled if the buffer-local variable
1112`py-pdbtrack-do-tracking-p' is nil.
1113
1114We depend on the pdb input prompt matching `py-pdbtrack-input-prompt'
1115at the beginning of the line."
1116 ;; Instead of trying to piece things together from partial text
1117 ;; (which can be almost useless depending on Emacs version), we
1118 ;; monitor to the point where we have the next pdb prompt, and then
1119 ;; check all text from comint-last-input-end to process-mark.
1120 ;;
1121 ;; KLM: It might be nice to provide an optional override, so this
1122 ;; routine could be fed debugger output strings as the text
1123 ;; argument, for deliberate application elsewhere.
1124 ;;
1125 ;; KLM: We're very conservative about clearing the overlay arrow, to
1126 ;; minimize residue. This means, for instance, that executing other
1127 ;; pdb commands wipes out the highlight.
1128 (let* ((origbuf (current-buffer))
1129 (currproc (get-buffer-process origbuf)))
1130 (if (not (and currproc py-pdbtrack-do-tracking-p))
1131 (py-pdbtrack-overlay-arrow nil)
1132 (let* (;(origdir default-directory)
1133 (procmark (process-mark currproc))
1134 (block (buffer-substring (max comint-last-input-end
1135 (- procmark
1136 py-pdbtrack-track-range))
1137 procmark))
1138 fname lineno)
1139 (if (not (string-match (concat py-pdbtrack-input-prompt "$") block))
1140 (py-pdbtrack-overlay-arrow nil)
1141 (if (not (string-match
1142 (concat ".*" py-pdbtrack-stack-entry-regexp ".*")
1143 block))
1144 (py-pdbtrack-overlay-arrow nil)
1145 (setq fname (match-string 1 block)
1146 lineno (match-string 2 block))
1147 (if (file-exists-p fname)
1148 (progn
1149 (find-file-other-window fname)
1150 (goto-line (string-to-int lineno))
Barry Warsawc8c1a5b2001-04-11 22:27:41 +00001151 (message "pdbtrack: line %s, file %s" lineno fname)
Barry Warsaw4f577d22001-04-11 20:23:17 +00001152 (py-pdbtrack-overlay-arrow t)
1153 (pop-to-buffer origbuf t) )
1154 (if (= (elt fname 0) ?\<)
Barry Warsawc8c1a5b2001-04-11 22:27:41 +00001155 (message "pdbtrack: (Non-file source: '%s')" fname)
1156 (message "pdbtrack: File not found: %s" fname))
Barry Warsaw4f577d22001-04-11 20:23:17 +00001157 )))))))
1158
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001159(defun py-postprocess-output-buffer (buf)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001160 "Highlight exceptions found in BUF.
1161If an exception occurred return t, otherwise return nil. BUF must exist."
Barry Warsawf9b99f41998-03-26 16:08:59 +00001162 (let (line file bol err-p)
Barry Warsaw9981d221997-12-03 05:25:48 +00001163 (save-excursion
1164 (set-buffer buf)
1165 (beginning-of-buffer)
1166 (while (re-search-forward py-traceback-line-re nil t)
1167 (setq file (match-string 1)
1168 line (string-to-int (match-string 2))
1169 bol (py-point 'bol))
Barry Warsawf9b99f41998-03-26 16:08:59 +00001170 (py-highlight-line bol (py-point 'eol) file line)))
1171 (when (and py-jump-on-exception line)
1172 (beep)
1173 (py-jump-to-exception file line)
1174 (setq err-p t))
1175 err-p))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001176
Barry Warsaw9981d221997-12-03 05:25:48 +00001177
Barry Warsawa97a3f31997-11-04 18:47:06 +00001178
1179;;; Subprocess commands
1180
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001181;; only used when (memq 'broken-temp-names py-emacs-features)
1182(defvar py-serial-number 0)
1183(defvar py-exception-buffer nil)
1184(defconst py-output-buffer "*Python Output*")
Barry Warsawa2398801998-04-09 23:28:20 +00001185(make-variable-buffer-local 'py-output-buffer)
1186
1187;; for toggling between CPython and JPython
Barry Warsawaa384fd1999-02-16 23:36:16 +00001188(defvar py-which-shell nil)
Barry Warsawa2398801998-04-09 23:28:20 +00001189(defvar py-which-args py-python-command-args)
1190(defvar py-which-bufname "Python")
1191(make-variable-buffer-local 'py-which-shell)
1192(make-variable-buffer-local 'py-which-args)
1193(make-variable-buffer-local 'py-which-bufname)
1194
1195(defun py-toggle-shells (arg)
1196 "Toggles between the CPython and JPython shells.
Barry Warsaw11f21561999-07-28 21:59:43 +00001197
Barry Warsaw41a05c71998-08-10 16:33:12 +00001198With positive argument ARG (interactively \\[universal-argument]),
1199uses the CPython shell, with negative ARG uses the JPython shell, and
Barry Warsaw11f21561999-07-28 21:59:43 +00001200with a zero argument, toggles the shell.
1201
1202Programmatically, ARG can also be one of the symbols `cpython' or
1203`jpython', equivalent to positive arg and negative arg respectively."
Barry Warsawa2398801998-04-09 23:28:20 +00001204 (interactive "P")
1205 ;; default is to toggle
1206 (if (null arg)
1207 (setq arg 0))
Barry Warsaw11f21561999-07-28 21:59:43 +00001208 ;; preprocess arg
1209 (cond
1210 ((equal arg 0)
1211 ;; toggle
1212 (if (string-equal py-which-bufname "Python")
1213 (setq arg -1)
1214 (setq arg 1)))
1215 ((equal arg 'cpython) (setq arg 1))
1216 ((equal arg 'jpython) (setq arg -1)))
Barry Warsawa2398801998-04-09 23:28:20 +00001217 (let (msg)
1218 (cond
1219 ((< 0 arg)
1220 ;; set to CPython
1221 (setq py-which-shell py-python-command
1222 py-which-args py-python-command-args
1223 py-which-bufname "Python"
1224 msg "CPython"
1225 mode-name "Python"))
1226 ((> 0 arg)
1227 (setq py-which-shell py-jpython-command
1228 py-which-args py-jpython-command-args
1229 py-which-bufname "JPython"
1230 msg "JPython"
1231 mode-name "JPython"))
1232 )
Barry Warsawea609c11998-04-10 16:08:26 +00001233 (message "Using the %s shell" msg)
Barry Warsawa2398801998-04-09 23:28:20 +00001234 (setq py-output-buffer (format "*%s Output*" py-which-bufname))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001235
Barry Warsawa97a3f31997-11-04 18:47:06 +00001236;;;###autoload
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001237(defun py-shell (&optional argprompt)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001238 "Start an interactive Python interpreter in another window.
1239This is like Shell mode, except that Python is running in the window
1240instead of a shell. See the `Interactive Shell' and `Shell Mode'
1241sections of the Emacs manual for details, especially for the key
1242bindings active in the `*Python*' buffer.
1243
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001244With optional \\[universal-argument], the user is prompted for the
1245flags to pass to the Python interpreter. This has no effect when this
1246command is used to switch to an existing process, only when a new
1247process is started. If you use this, you will probably want to ensure
1248that the current arguments are retained (they will be included in the
1249prompt). This argument is ignored when this function is called
1250programmatically, or when running in Emacs 19.34 or older.
1251
Barry Warsawa2398801998-04-09 23:28:20 +00001252Note: You can toggle between using the CPython interpreter and the
1253JPython interpreter by hitting \\[py-toggle-shells]. This toggles
1254buffer local variables which control whether all your subshell
1255interactions happen to the `*JPython*' or `*Python*' buffers (the
1256latter is the name used for the CPython buffer).
1257
Barry Warsawa97a3f31997-11-04 18:47:06 +00001258Warning: Don't use an interactive Python if you change sys.ps1 or
1259sys.ps2 from their default values, or if you're running code that
1260prints `>>> ' or `... ' at the start of a line. `python-mode' can't
1261distinguish your output from Python's output, and assumes that `>>> '
1262at the start of a line is a prompt from Python. Similarly, the Emacs
1263Shell mode code assumes that both `>>> ' and `... ' at the start of a
1264line are Python prompts. Bad things can happen if you fool either
1265mode.
1266
1267Warning: If you do any editing *in* the process buffer *while* the
1268buffer is accepting output from Python, do NOT attempt to `undo' the
1269changes. Some of the output (nowhere near the parts you changed!) may
1270be lost if you do. This appears to be an Emacs bug, an unfortunate
1271interaction between undo and process filters; the same problem exists in
1272non-Python process buffers using the default (Emacs-supplied) process
1273filter."
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001274 (interactive "P")
Barry Warsaw50765ab1999-08-10 21:49:00 +00001275 ;; Set the default shell if not already set
1276 (when (null py-which-shell)
1277 (py-toggle-shells py-default-interpreter))
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001278 (let ((args py-which-args))
1279 (when (and argprompt
1280 (interactive-p)
1281 (fboundp 'split-string))
1282 ;; TBD: Perhaps force "-i" in the final list?
1283 (setq args (split-string
1284 (read-string (concat py-which-bufname
1285 " arguments: ")
1286 (concat
1287 (mapconcat 'identity py-which-args " ") " ")
1288 ))))
1289 (switch-to-buffer-other-window
1290 (apply 'make-comint py-which-bufname py-which-shell nil args))
1291 (make-local-variable 'comint-prompt-regexp)
1292 (setq comint-prompt-regexp "^>>> \\|^[.][.][.] \\|^(pdb) ")
1293 (add-hook 'comint-output-filter-functions
1294 'py-comint-output-filter-function)
Barry Warsaw4f577d22001-04-11 20:23:17 +00001295 ;; pdbtrack
1296 (add-hook 'comint-output-filter-functions 'py-pdbtrack-track-stack-file)
1297 (setq py-pdbtrack-do-tracking-p t)
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001298 (set-syntax-table py-mode-syntax-table)
1299 (use-local-map py-shell-map)
1300 ))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001301
Barry Warsawa97a3f31997-11-04 18:47:06 +00001302(defun py-clear-queue ()
1303 "Clear the queue of temporary files waiting to execute."
1304 (interactive)
1305 (let ((n (length py-file-queue)))
1306 (mapcar 'delete-file py-file-queue)
1307 (setq py-file-queue nil)
1308 (message "%d pending files de-queued." n)))
1309
Barry Warsaw820273d1998-05-19 15:54:45 +00001310
Barry Warsawa97a3f31997-11-04 18:47:06 +00001311(defun py-execute-region (start end &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001312 "Execute the region in a Python interpreter.
1313
Barry Warsawa97a3f31997-11-04 18:47:06 +00001314The region is first copied into a temporary file (in the directory
1315`py-temp-directory'). If there is no Python interpreter shell
1316running, this file is executed synchronously using
Barry Warsaw41a05c71998-08-10 16:33:12 +00001317`shell-command-on-region'. If the program is long running, use
1318\\[universal-argument] to run the command asynchronously in its own
1319buffer.
1320
1321When this function is used programmatically, arguments START and END
1322specify the region to execute, and optional third argument ASYNC, if
1323non-nil, specifies to run the command asynchronously in its own
1324buffer.
Barry Warsawa97a3f31997-11-04 18:47:06 +00001325
1326If the Python interpreter shell is running, the region is execfile()'d
1327in that shell. If you try to execute regions too quickly,
1328`python-mode' will queue them up and execute them one at a time when
1329it sees a `>>> ' prompt from Python. Each time this happens, the
1330process buffer is popped into a window (if it's not already in some
1331window) so you can see it, and a comment of the form
1332
1333 \t## working on region in file <name>...
1334
1335is inserted at the end. See also the command `py-clear-queue'."
1336 (interactive "r\nP")
1337 (or (< start end)
1338 (error "Region is empty"))
Barry Warsaw014e0e21998-11-17 19:24:47 +00001339 (let* ((proc (get-process py-which-bufname))
Barry Warsaw5e21cb01997-11-05 18:41:11 +00001340 (temp (if (memq 'broken-temp-names py-emacs-features)
Barry Warsaw1b344241998-08-07 22:24:16 +00001341 (let
1342 ((sn py-serial-number)
1343 (pid (and (fboundp 'emacs-pid) (emacs-pid))))
1344 (setq py-serial-number (1+ py-serial-number))
1345 (if pid
1346 (format "python-%d-%d" sn pid)
1347 (format "python-%d" sn)))
Barry Warsaw2f32fbb1998-02-25 16:45:43 +00001348 (make-temp-name "python-")))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001349 (file (expand-file-name temp py-temp-directory))
1350 (cur (current-buffer))
1351 (buf (get-buffer-create file)))
1352 ;; Write the contents of the buffer, watching out for indented regions.
1353 (save-excursion
1354 (goto-char start)
Barry Warsaw99eadf42000-06-23 20:24:25 +00001355 (let ((needs-if (/= (py-point 'bol) (py-point 'boi))))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001356 (set-buffer buf)
Barry Warsaw99eadf42000-06-23 20:24:25 +00001357 (when needs-if
1358 (insert "if 1:\n"))
1359 (insert-buffer-substring cur start end)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001360 (cond
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001361 ;; always run the code in its own asynchronous subprocess
Barry Warsawa97a3f31997-11-04 18:47:06 +00001362 (async
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001363 ;; User explicitly wants this to run in its own async subprocess
1364 (save-excursion
1365 (set-buffer buf)
1366 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsaw34d83171998-11-20 03:04:07 +00001367 (let* ((buf (generate-new-buffer-name py-output-buffer))
1368 ;; TBD: a horrible hack, but why create new Custom variables?
1369 (arg (if (string-equal py-which-bufname "Python")
1370 "-u" "")))
1371 (start-process py-which-bufname buf py-which-shell arg file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001372 (pop-to-buffer buf)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001373 (py-postprocess-output-buffer buf)
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001374 ;; TBD: clean up the temporary file!
Barry Warsawa97a3f31997-11-04 18:47:06 +00001375 ))
1376 ;; if the Python interpreter shell is running, queue it up for
1377 ;; execution there.
1378 (proc
1379 ;; use the existing python shell
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001380 (save-excursion
1381 (set-buffer buf)
1382 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001383 (if (not py-file-queue)
1384 (py-execute-file proc file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001385 (message "File %s queued for execution" file))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001386 (setq py-file-queue (append py-file-queue (list file)))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001387 (setq py-exception-buffer (cons file (current-buffer))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001388 (t
Barry Warsaw34d83171998-11-20 03:04:07 +00001389 ;; TBD: a horrible hack, buy why create new Custom variables?
1390 (let ((cmd (concat py-which-shell
1391 (if (string-equal py-which-bufname "JPython")
1392 " -" ""))))
1393 ;; otherwise either run it synchronously in a subprocess
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001394 (save-excursion
1395 (set-buffer buf)
1396 (shell-command-on-region (point-min) (point-max)
1397 cmd py-output-buffer))
Barry Warsaw34d83171998-11-20 03:04:07 +00001398 ;; shell-command-on-region kills the output buffer if it never
1399 ;; existed and there's no output from the command
1400 (if (not (get-buffer py-output-buffer))
1401 (message "No output.")
1402 (setq py-exception-buffer (current-buffer))
1403 (let ((err-p (py-postprocess-output-buffer py-output-buffer)))
1404 (pop-to-buffer py-output-buffer)
1405 (if err-p
1406 (pop-to-buffer py-exception-buffer)))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001407 ))
1408 ;; TBD: delete the buffer
1409 )
Barry Warsaw71534602001-02-20 23:07:56 +00001410 )
1411 ;; Clean up after ourselves.
1412 (kill-buffer buf)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001413
Barry Warsaw820273d1998-05-19 15:54:45 +00001414
1415;; Code execution commands
Barry Warsawa97a3f31997-11-04 18:47:06 +00001416(defun py-execute-buffer (&optional async)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001417 "Send the contents of the buffer to a Python interpreter.
Barry Warsawc0ecb531998-01-20 21:43:34 +00001418If the file local variable `py-master-file' is non-nil, execute the
1419named file instead of the buffer's file.
1420
Barry Warsaw7ae77681994-12-12 20:38:05 +00001421If there is a *Python* process buffer it is used. If a clipping
1422restriction is in effect, only the accessible portion of the buffer is
1423sent. A trailing newline will be supplied if needed.
1424
Barry Warsaw41a05c71998-08-10 16:33:12 +00001425See the `\\[py-execute-region]' docs for an account of some
1426subtleties, including the use of the optional ASYNC argument."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001427 (interactive "P")
Barry Warsawc0ecb531998-01-20 21:43:34 +00001428 (if py-master-file
1429 (let* ((filename (expand-file-name py-master-file))
1430 (buffer (or (get-file-buffer filename)
1431 (find-file-noselect filename))))
1432 (set-buffer buffer)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001433 (py-execute-region (point-min) (point-max) async))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001434
Barry Warsaw820273d1998-05-19 15:54:45 +00001435(defun py-execute-import-or-reload (&optional async)
1436 "Import the current buffer's file in a Python interpreter.
1437
1438If the file has already been imported, then do reload instead to get
Barry Warsaw7c29b231998-07-07 17:45:38 +00001439the latest version.
1440
1441If the file's name does not end in \".py\", then do execfile instead.
1442
1443If the current buffer is not visiting a file, do `py-execute-buffer'
1444instead.
1445
1446If the file local variable `py-master-file' is non-nil, import or
1447reload the named file instead of the buffer's file. The file may be
1448saved based on the value of `py-execute-import-or-reload-save-p'.
Barry Warsaw820273d1998-05-19 15:54:45 +00001449
Barry Warsaw41a05c71998-08-10 16:33:12 +00001450See the `\\[py-execute-region]' docs for an account of some
1451subtleties, including the use of the optional ASYNC argument.
Barry Warsaw820273d1998-05-19 15:54:45 +00001452
Barry Warsaw7c29b231998-07-07 17:45:38 +00001453This may be preferable to `\\[py-execute-buffer]' because:
Barry Warsaw820273d1998-05-19 15:54:45 +00001454
1455 - Definitions stay in their module rather than appearing at top
1456 level, where they would clutter the global namespace and not affect
1457 uses of qualified names (MODULE.NAME).
1458
1459 - The Python debugger gets line number information about the functions."
1460 (interactive "P")
1461 ;; Check file local variable py-master-file
1462 (if py-master-file
1463 (let* ((filename (expand-file-name py-master-file))
1464 (buffer (or (get-file-buffer filename)
1465 (find-file-noselect filename))))
1466 (set-buffer buffer)))
1467 (let ((file (buffer-file-name (current-buffer))))
1468 (if file
1469 (progn
Barry Warsaw3bfed5b1998-05-19 16:25:04 +00001470 ;; Maybe save some buffers
1471 (save-some-buffers (not py-ask-about-save) nil)
Barry Warsaw820273d1998-05-19 15:54:45 +00001472 (py-execute-string
1473 (if (string-match "\\.py$" file)
1474 (let ((f (file-name-sans-extension
1475 (file-name-nondirectory file))))
1476 (format "if globals().has_key('%s'):\n reload(%s)\nelse:\n import %s\n"
1477 f f f))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001478 (format "execfile(r'%s')\n" file))
Barry Warsaw820273d1998-05-19 15:54:45 +00001479 async))
1480 ;; else
1481 (py-execute-buffer async))))
1482
1483
1484(defun py-execute-def-or-class (&optional async)
1485 "Send the current function or class definition to a Python interpreter.
1486
1487If there is a *Python* process buffer it is used.
1488
Barry Warsaw41a05c71998-08-10 16:33:12 +00001489See the `\\[py-execute-region]' docs for an account of some
1490subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001491 (interactive "P")
1492 (save-excursion
1493 (py-mark-def-or-class)
1494 ;; mark is before point
1495 (py-execute-region (mark) (point) async)))
1496
1497
1498(defun py-execute-string (string &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001499 "Send the argument STRING to a Python interpreter.
Barry Warsaw820273d1998-05-19 15:54:45 +00001500
1501If there is a *Python* process buffer it is used.
1502
Barry Warsaw41a05c71998-08-10 16:33:12 +00001503See the `\\[py-execute-region]' docs for an account of some
1504subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001505 (interactive "sExecute Python command: ")
1506 (save-excursion
1507 (set-buffer (get-buffer-create
1508 (generate-new-buffer-name " *Python Command*")))
1509 (insert string)
1510 (py-execute-region (point-min) (point-max) async)))
1511
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001512
1513
1514(defun py-jump-to-exception (file line)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001515 "Jump to the Python code in FILE at LINE."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001516 (let ((buffer (cond ((string-equal file "<stdin>")
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001517 (if (consp py-exception-buffer)
1518 (cdr py-exception-buffer)
1519 py-exception-buffer))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001520 ((and (consp py-exception-buffer)
1521 (string-equal file (car py-exception-buffer)))
1522 (cdr py-exception-buffer))
1523 ((py-safe (find-file-noselect file)))
1524 ;; could not figure out what file the exception
1525 ;; is pointing to, so prompt for it
1526 (t (find-file (read-file-name "Exception file: "
1527 nil
1528 file t))))))
1529 (pop-to-buffer buffer)
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001530 ;; Force Python mode
Barry Warsaw820273d1998-05-19 15:54:45 +00001531 (if (not (eq major-mode 'python-mode))
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001532 (python-mode))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001533 (goto-line line)
1534 (message "Jumping to exception in file %s on line %d" file line)))
1535
1536(defun py-mouseto-exception (event)
Barry Warsaw12c92941998-08-10 21:44:37 +00001537 "Jump to the code which caused the Python exception at EVENT.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001538EVENT is usually a mouse click."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001539 (interactive "e")
1540 (cond
1541 ((fboundp 'event-point)
1542 ;; XEmacs
1543 (let* ((point (event-point event))
1544 (buffer (event-buffer event))
1545 (e (and point buffer (extent-at point buffer 'py-exc-info)))
1546 (info (and e (extent-property e 'py-exc-info))))
1547 (message "Event point: %d, info: %s" point info)
1548 (and info
1549 (py-jump-to-exception (car info) (cdr info)))
1550 ))
1551 ;; Emacs -- Please port this!
1552 ))
1553
1554(defun py-goto-exception ()
1555 "Go to the line indicated by the traceback."
1556 (interactive)
1557 (let (file line)
1558 (save-excursion
1559 (beginning-of-line)
1560 (if (looking-at py-traceback-line-re)
1561 (setq file (match-string 1)
1562 line (string-to-int (match-string 2)))))
1563 (if (not file)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001564 (error "Not on a traceback line"))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001565 (py-jump-to-exception file line)))
1566
1567(defun py-find-next-exception (start buffer searchdir errwhere)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001568 "Find the next Python exception and jump to the code that caused it.
1569START is the buffer position in BUFFER from which to begin searching
1570for an exception. SEARCHDIR is a function, either
1571`re-search-backward' or `re-search-forward' indicating the direction
1572to search. ERRWHERE is used in an error message if the limit (top or
1573bottom) of the trackback stack is encountered."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001574 (let (file line)
1575 (save-excursion
1576 (set-buffer buffer)
1577 (goto-char (py-point start))
1578 (if (funcall searchdir py-traceback-line-re nil t)
1579 (setq file (match-string 1)
1580 line (string-to-int (match-string 2)))))
1581 (if (and file line)
1582 (py-jump-to-exception file line)
1583 (error "%s of traceback" errwhere))))
1584
1585(defun py-down-exception (&optional bottom)
1586 "Go to the next line down in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001587With \\[univeral-argument] (programmatically, optional argument
1588BOTTOM), jump to the bottom (innermost) exception in the exception
1589stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001590 (interactive "P")
1591 (let* ((proc (get-process "Python"))
1592 (buffer (if proc "*Python*" py-output-buffer)))
1593 (if bottom
1594 (py-find-next-exception 'eob buffer 're-search-backward "Bottom")
1595 (py-find-next-exception 'eol buffer 're-search-forward "Bottom"))))
1596
1597(defun py-up-exception (&optional top)
1598 "Go to the previous line up in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001599With \\[universal-argument] (programmatically, optional argument TOP)
1600jump to the top (outermost) exception in the exception stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001601 (interactive "P")
1602 (let* ((proc (get-process "Python"))
1603 (buffer (if proc "*Python*" py-output-buffer)))
1604 (if top
1605 (py-find-next-exception 'bob buffer 're-search-forward "Top")
Barry Warsawffbc17d1997-11-27 20:08:14 +00001606 (py-find-next-exception 'bol buffer 're-search-backward "Top"))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001607
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001608
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001609;; Electric deletion
1610(defun py-electric-backspace (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001611 "Delete preceding character or levels of indentation.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001612Deletion is performed by calling the function in `py-backspace-function'
Barry Warsawb0539931996-12-17 22:05:07 +00001613with a single argument (the number of characters to delete).
Barry Warsaw7ae77681994-12-12 20:38:05 +00001614
Barry Warsaw41a05c71998-08-10 16:33:12 +00001615If point is at the leftmost column, delete the preceding newline.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001616
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001617Otherwise, if point is at the leftmost non-whitespace character of a
1618line that is neither a continuation line nor a non-indenting comment
1619line, or if point is at the end of a blank line, this command reduces
1620the indentation to match that of the line that opened the current
1621block of code. The line that opened the block is displayed in the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001622echo area to help you keep track of where you are. With
1623\\[universal-argument] dedents that many blocks (but not past column
1624zero).
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001625
1626Otherwise the preceding character is deleted, converting a tab to
1627spaces if needed so that only a single column position is deleted.
Barry Warsawfa2def21999-05-24 21:43:37 +00001628\\[universal-argument] specifies how many characters to delete;
1629default is 1.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001630
1631When used programmatically, argument ARG specifies the number of
1632blocks to dedent, or the number of characters to delete, as indicated
1633above."
Barry Warsaw03970731996-07-03 23:12:52 +00001634 (interactive "*p")
Barry Warsaw7ae77681994-12-12 20:38:05 +00001635 (if (or (/= (current-indentation) (current-column))
1636 (bolp)
1637 (py-continuation-line-p)
Barry Warsawfa2def21999-05-24 21:43:37 +00001638; (not py-honor-comment-indentation)
1639; (looking-at "#[^ \t\n]") ; non-indenting #
1640 )
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001641 (funcall py-backspace-function arg)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001642 ;; else indent the same as the colon line that opened the block
Barry Warsaw7ae77681994-12-12 20:38:05 +00001643 ;; force non-blank so py-goto-block-up doesn't ignore it
1644 (insert-char ?* 1)
1645 (backward-char)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001646 (let ((base-indent 0) ; indentation of base line
1647 (base-text "") ; and text of base line
1648 (base-found-p nil))
Barry Warsaw03970731996-07-03 23:12:52 +00001649 (save-excursion
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001650 (while (< 0 arg)
Barry Warsaw03970731996-07-03 23:12:52 +00001651 (condition-case nil ; in case no enclosing block
1652 (progn
1653 (py-goto-block-up 'no-mark)
1654 (setq base-indent (current-indentation)
1655 base-text (py-suck-up-leading-text)
1656 base-found-p t))
1657 (error nil))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001658 (setq arg (1- arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001659 (delete-char 1) ; toss the dummy character
1660 (delete-horizontal-space)
1661 (indent-to base-indent)
1662 (if base-found-p
1663 (message "Closes block: %s" base-text)))))
1664
Barry Warsawfc8a01f1995-03-09 16:07:29 +00001665
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001666(defun py-electric-delete (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001667 "Delete preceding or following character or levels of whitespace.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001668
1669The behavior of this function depends on the variable
1670`delete-key-deletes-forward'. If this variable is nil (or does not
Barry Warsaw41a05c71998-08-10 16:33:12 +00001671exist, as in older Emacsen and non-XEmacs versions), then this
1672function behaves identically to \\[c-electric-backspace].
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001673
1674If `delete-key-deletes-forward' is non-nil and is supported in your
1675Emacs, then deletion occurs in the forward direction, by calling the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001676function in `py-delete-function'.
1677
1678\\[universal-argument] (programmatically, argument ARG) specifies the
1679number of characters to delete (default is 1)."
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001680 (interactive "*p")
Barry Warsaw1d7b0fa1999-01-15 02:12:31 +00001681 (if (or (and (fboundp 'delete-forward-p) ;XEmacs 21
1682 (delete-forward-p))
1683 (and (boundp 'delete-key-deletes-forward) ;XEmacs 20
1684 delete-key-deletes-forward))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001685 (funcall py-delete-function arg)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001686 (py-electric-backspace arg)))
1687
1688;; required for pending-del and delsel modes
1689(put 'py-electric-backspace 'delete-selection 'supersede) ;delsel
1690(put 'py-electric-backspace 'pending-delete 'supersede) ;pending-del
1691(put 'py-electric-delete 'delete-selection 'supersede) ;delsel
1692(put 'py-electric-delete 'pending-delete 'supersede) ;pending-del
1693
1694
1695
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001696(defun py-indent-line (&optional arg)
1697 "Fix the indentation of the current line according to Python rules.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001698With \\[universal-argument] (programmatically, the optional argument
1699ARG non-nil), ignore dedenting rules for block closing statements
1700(e.g. return, raise, break, continue, pass)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001701
1702This function is normally bound to `indent-line-function' so
1703\\[indent-for-tab-command] will call it."
1704 (interactive "P")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001705 (let* ((ci (current-indentation))
1706 (move-to-indentation-p (<= (current-column) ci))
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001707 (need (py-compute-indentation (not arg))))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001708 ;; see if we need to dedent
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001709 (if (py-outdent-p)
Barry Warsaw0012c1e1995-03-14 16:32:55 +00001710 (setq need (- need py-indent-offset)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001711 (if (/= ci need)
1712 (save-excursion
1713 (beginning-of-line)
1714 (delete-horizontal-space)
1715 (indent-to need)))
1716 (if move-to-indentation-p (back-to-indentation))))
1717
1718(defun py-newline-and-indent ()
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001719 "Strives to act like the Emacs `newline-and-indent'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001720This is just `strives to' because correct indentation can't be computed
1721from scratch for Python code. In general, deletes the whitespace before
1722point, inserts a newline, and takes an educated guess as to how you want
1723the new line indented."
1724 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001725 (let ((ci (current-indentation)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001726 (if (< ci (current-column)) ; if point beyond indentation
1727 (newline-and-indent)
1728 ;; else try to act like newline-and-indent "normally" acts
1729 (beginning-of-line)
1730 (insert-char ?\n 1)
1731 (move-to-column ci))))
1732
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001733(defun py-compute-indentation (honor-block-close-p)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001734 "Compute Python indentation.
1735When HONOR-BLOCK-CLOSE-P is non-nil, statements such as `return',
1736`raise', `break', `continue', and `pass' force one level of
1737dedenting."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001738 (save-excursion
Barry Warsawf64b4051998-02-12 16:52:14 +00001739 (beginning-of-line)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001740 (let* ((bod (py-point 'bod))
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001741 (pps (parse-partial-sexp bod (point)))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001742 (boipps (parse-partial-sexp bod (py-point 'boi)))
1743 placeholder)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001744 (cond
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001745 ;; are we inside a multi-line string or comment?
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001746 ((or (and (nth 3 pps) (nth 3 boipps))
1747 (and (nth 4 pps) (nth 4 boipps)))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001748 (save-excursion
1749 (if (not py-align-multiline-strings-p) 0
1750 ;; skip back over blank & non-indenting comment lines
1751 ;; note: will skip a blank or non-indenting comment line
1752 ;; that happens to be a continuation line too
1753 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move)
1754 (back-to-indentation)
1755 (current-column))))
1756 ;; are we on a continuation line?
1757 ((py-continuation-line-p)
1758 (let ((startpos (point))
1759 (open-bracket-pos (py-nesting-level))
Barry Warsawce60bc71996-08-01 18:17:14 +00001760 endpos searching found state)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001761 (if open-bracket-pos
1762 (progn
1763 ;; align with first item in list; else a normal
1764 ;; indent beyond the line with the open bracket
1765 (goto-char (1+ open-bracket-pos)) ; just beyond bracket
1766 ;; is the first list item on the same line?
1767 (skip-chars-forward " \t")
1768 (if (null (memq (following-char) '(?\n ?# ?\\)))
1769 ; yes, so line up with it
1770 (current-column)
1771 ;; first list item on another line, or doesn't exist yet
1772 (forward-line 1)
1773 (while (and (< (point) startpos)
1774 (looking-at "[ \t]*[#\n\\\\]")) ; skip noise
1775 (forward-line 1))
Barry Warsaw92166d91998-04-01 21:59:41 +00001776 (if (and (< (point) startpos)
1777 (/= startpos
1778 (save-excursion
1779 (goto-char (1+ open-bracket-pos))
Barry Warsaw77d1fce1998-04-16 20:04:59 +00001780 (forward-comment (point-max))
Barry Warsaw92166d91998-04-01 21:59:41 +00001781 (point))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001782 ;; again mimic the first list item
1783 (current-indentation)
1784 ;; else they're about to enter the first item
1785 (goto-char open-bracket-pos)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001786 (setq placeholder (point))
1787 (py-goto-initial-line)
1788 (py-goto-beginning-of-tqs
1789 (save-excursion (nth 3 (parse-partial-sexp
1790 placeholder (point)))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001791 (+ (current-indentation) py-indent-offset))))
1792
1793 ;; else on backslash continuation line
1794 (forward-line -1)
1795 (if (py-continuation-line-p) ; on at least 3rd line in block
1796 (current-indentation) ; so just continue the pattern
1797 ;; else started on 2nd line in block, so indent more.
1798 ;; if base line is an assignment with a start on a RHS,
1799 ;; indent to 2 beyond the leftmost "="; else skip first
1800 ;; chunk of non-whitespace characters on base line, + 1 more
1801 ;; column
1802 (end-of-line)
1803 (setq endpos (point) searching t)
1804 (back-to-indentation)
1805 (setq startpos (point))
1806 ;; look at all "=" from left to right, stopping at first
1807 ;; one not nested in a list or string
1808 (while searching
1809 (skip-chars-forward "^=" endpos)
1810 (if (= (point) endpos)
1811 (setq searching nil)
1812 (forward-char 1)
1813 (setq state (parse-partial-sexp startpos (point)))
1814 (if (and (zerop (car state)) ; not in a bracket
1815 (null (nth 3 state))) ; & not in a string
1816 (progn
1817 (setq searching nil) ; done searching in any case
1818 (setq found
1819 (not (or
1820 (eq (following-char) ?=)
1821 (memq (char-after (- (point) 2))
1822 '(?< ?> ?!)))))))))
1823 (if (or (not found) ; not an assignment
1824 (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash>
1825 (progn
1826 (goto-char startpos)
1827 (skip-chars-forward "^ \t\n")))
1828 (1+ (current-column))))))
1829
1830 ;; not on a continuation line
Barry Warsawa7891711996-08-01 15:53:09 +00001831 ((bobp) (current-indentation))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001832
Barry Warsawa7891711996-08-01 15:53:09 +00001833 ;; Dfn: "Indenting comment line". A line containing only a
1834 ;; comment, but which is treated like a statement for
1835 ;; indentation calculation purposes. Such lines are only
1836 ;; treated specially by the mode; they are not treated
1837 ;; specially by the Python interpreter.
1838
1839 ;; The rules for indenting comment lines are a line where:
1840 ;; - the first non-whitespace character is `#', and
1841 ;; - the character following the `#' is whitespace, and
Barry Warsaw41a05c71998-08-10 16:33:12 +00001842 ;; - the line is dedented with respect to (i.e. to the left
Barry Warsawa7891711996-08-01 15:53:09 +00001843 ;; of) the indentation of the preceding non-blank line.
1844
1845 ;; The first non-blank line following an indenting comment
1846 ;; line is given the same amount of indentation as the
1847 ;; indenting comment line.
1848
1849 ;; All other comment-only lines are ignored for indentation
1850 ;; purposes.
1851
1852 ;; Are we looking at a comment-only line which is *not* an
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001853 ;; indenting comment line? If so, we assume that it's been
Barry Warsawa7891711996-08-01 15:53:09 +00001854 ;; placed at the desired indentation, so leave it alone.
1855 ;; Indenting comment lines are aligned as statements down
1856 ;; below.
1857 ((and (looking-at "[ \t]*#[^ \t\n]")
1858 ;; NOTE: this test will not be performed in older Emacsen
1859 (fboundp 'forward-comment)
1860 (<= (current-indentation)
1861 (save-excursion
1862 (forward-comment (- (point-max)))
1863 (current-indentation))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001864 (current-indentation))
1865
1866 ;; else indentation based on that of the statement that
1867 ;; precedes us; use the first line of that statement to
1868 ;; establish the base, in case the user forced a non-std
1869 ;; indentation for the continuation lines (if any)
1870 (t
Barry Warsawc01c5c81995-09-14 18:49:11 +00001871 ;; skip back over blank & non-indenting comment lines note:
1872 ;; will skip a blank or non-indenting comment line that
Barry Warsawfd0fb381996-03-04 17:15:40 +00001873 ;; happens to be a continuation line too. use fast Emacs 19
1874 ;; function if it's there.
Barry Warsaw6d627751996-03-06 18:41:38 +00001875 (if (and (eq py-honor-comment-indentation nil)
Barry Warsaw33d6ec01996-03-05 16:28:07 +00001876 (fboundp 'forward-comment))
Barry Warsawfd0fb381996-03-04 17:15:40 +00001877 (forward-comment (- (point-max)))
Barry Warsaw218eb751998-09-22 19:51:47 +00001878 (let ((prefix-re (concat py-block-comment-prefix "[ \t]*"))
1879 done)
Barry Warsaw6d627751996-03-06 18:41:38 +00001880 (while (not done)
Barry Warsaw12c92941998-08-10 21:44:37 +00001881 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#\\)" nil 'move)
1882 (setq done (or (bobp)
1883 (and (eq py-honor-comment-indentation t)
1884 (save-excursion
1885 (back-to-indentation)
Barry Warsaw218eb751998-09-22 19:51:47 +00001886 (not (looking-at prefix-re))
Barry Warsaw12c92941998-08-10 21:44:37 +00001887 ))
1888 (and (not (eq py-honor-comment-indentation t))
1889 (save-excursion
1890 (back-to-indentation)
1891 (not (zerop (current-column)))))
1892 ))
Barry Warsaw6d627751996-03-06 18:41:38 +00001893 )))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001894 ;; if we landed inside a string, go to the beginning of that
1895 ;; string. this handles triple quoted, multi-line spanning
1896 ;; strings.
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001897 (py-goto-beginning-of-tqs (nth 3 (parse-partial-sexp bod (point))))
Barry Warsawc210e691998-01-20 22:52:56 +00001898 ;; now skip backward over continued lines
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001899 (setq placeholder (point))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001900 (py-goto-initial-line)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001901 ;; we may *now* have landed in a TQS, so find the beginning of
1902 ;; this string.
1903 (py-goto-beginning-of-tqs
1904 (save-excursion (nth 3 (parse-partial-sexp
1905 placeholder (point)))))
Barry Warsawf831d811996-07-31 20:42:59 +00001906 (+ (current-indentation)
1907 (if (py-statement-opens-block-p)
1908 py-indent-offset
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001909 (if (and honor-block-close-p (py-statement-closes-block-p))
Barry Warsawf831d811996-07-31 20:42:59 +00001910 (- py-indent-offset)
1911 0)))
1912 )))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001913
1914(defun py-guess-indent-offset (&optional global)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001915 "Guess a good value for, and change, `py-indent-offset'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001916
1917By default, make a buffer-local copy of `py-indent-offset' with the
1918new value, so that other Python buffers are not affected. With
1919\\[universal-argument] (programmatically, optional argument GLOBAL),
1920change the global value of `py-indent-offset'. This affects all
1921Python buffers (that don't have their own buffer-local copy), both
1922those currently existing and those created later in the Emacs session.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001923
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001924Some people use a different value for `py-indent-offset' than you use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001925There's no excuse for such foolishness, but sometimes you have to deal
1926with their ugly code anyway. This function examines the file and sets
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001927`py-indent-offset' to what it thinks it was when they created the
1928mess.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001929
1930Specifically, it searches forward from the statement containing point,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001931looking for a line that opens a block of code. `py-indent-offset' is
1932set to the difference in indentation between that line and the Python
Barry Warsaw7ae77681994-12-12 20:38:05 +00001933statement following it. If the search doesn't succeed going forward,
1934it's tried again going backward."
1935 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001936 (let (new-value
1937 (start (point))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001938 (restart (point))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001939 (found nil)
1940 colon-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001941 (py-goto-initial-line)
1942 (while (not (or found (eobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001943 (when (and (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1944 (not (py-in-literal restart)))
1945 (setq restart (point))
1946 (py-goto-initial-line)
1947 (if (py-statement-opens-block-p)
1948 (setq found t)
1949 (goto-char restart))))
1950 (unless found
Barry Warsaw7ae77681994-12-12 20:38:05 +00001951 (goto-char start)
1952 (py-goto-initial-line)
1953 (while (not (or found (bobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001954 (setq found (and
1955 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1956 (or (py-goto-initial-line) t) ; always true -- side effect
1957 (py-statement-opens-block-p)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001958 (setq colon-indent (current-indentation)
1959 found (and found (zerop (py-next-statement 1)))
1960 new-value (- (current-indentation) colon-indent))
1961 (goto-char start)
Barry Warsawe908b6b1998-03-19 22:48:02 +00001962 (if (not found)
1963 (error "Sorry, couldn't guess a value for py-indent-offset")
1964 (funcall (if global 'kill-local-variable 'make-local-variable)
1965 'py-indent-offset)
1966 (setq py-indent-offset new-value)
Barry Warsawd35c2551998-09-25 00:08:38 +00001967 (or noninteractive
1968 (message "%s value of py-indent-offset set to %d"
1969 (if global "Global" "Local")
1970 py-indent-offset)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001971 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001972
Barry Warsaw003932a1998-07-07 15:11:24 +00001973(defun py-comment-indent-function ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00001974 "Python version of `comment-indent-function'."
1975 ;; This is required when filladapt is turned off. Without it, when
1976 ;; filladapt is not used, comments which start in column zero
1977 ;; cascade one character to the right
Barry Warsaw003932a1998-07-07 15:11:24 +00001978 (save-excursion
1979 (beginning-of-line)
1980 (let ((eol (py-point 'eol)))
1981 (and comment-start-skip
1982 (re-search-forward comment-start-skip eol t)
1983 (setq eol (match-beginning 0)))
1984 (goto-char eol)
1985 (skip-chars-backward " \t")
1986 (max comment-column (+ (current-column) (if (bolp) 0 1)))
1987 )))
1988
Barry Warsawf8ddb6a1999-01-18 21:49:39 +00001989(defun py-narrow-to-defun (&optional class)
1990 "Make text outside current defun invisible.
1991The defun visible is the one that contains point or follows point.
1992Optional CLASS is passed directly to `py-beginning-of-def-or-class'."
1993 (interactive "P")
1994 (save-excursion
1995 (widen)
1996 (py-end-of-def-or-class class)
1997 (let ((end (point)))
1998 (py-beginning-of-def-or-class class)
1999 (narrow-to-region (point) end))))
2000
Barry Warsaw003932a1998-07-07 15:11:24 +00002001
Barry Warsaw7ae77681994-12-12 20:38:05 +00002002(defun py-shift-region (start end count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002003 "Indent lines from START to END by COUNT spaces."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002004 (save-excursion
Barry Warsaw41a05c71998-08-10 16:33:12 +00002005 (goto-char end)
2006 (beginning-of-line)
2007 (setq end (point))
2008 (goto-char start)
2009 (beginning-of-line)
2010 (setq start (point))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002011 (indent-rigidly start end count)))
2012
2013(defun py-shift-region-left (start end &optional count)
2014 "Shift region of Python code to the left.
2015The lines from the line containing the start of the current region up
2016to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002017shifted to the left, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002018
2019If a prefix argument is given, the region is instead shifted by that
Barry Warsaw41a05c71998-08-10 16:33:12 +00002020many columns. With no active region, dedent only the current line.
2021You cannot dedent the region if any line is already at column zero."
Barry Warsawdea4a291996-07-03 22:59:12 +00002022 (interactive
2023 (let ((p (point))
2024 (m (mark))
2025 (arg current-prefix-arg))
2026 (if m
2027 (list (min p m) (max p m) arg)
2028 (list p (save-excursion (forward-line 1) (point)) arg))))
2029 ;; if any line is at column zero, don't shift the region
2030 (save-excursion
2031 (goto-char start)
2032 (while (< (point) end)
2033 (back-to-indentation)
Barry Warsaw71e315b1996-07-23 15:03:16 +00002034 (if (and (zerop (current-column))
2035 (not (looking-at "\\s *$")))
Barry Warsaw41a05c71998-08-10 16:33:12 +00002036 (error "Region is at left edge"))
Barry Warsawdea4a291996-07-03 22:59:12 +00002037 (forward-line 1)))
2038 (py-shift-region start end (- (prefix-numeric-value
2039 (or count py-indent-offset))))
2040 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002041
2042(defun py-shift-region-right (start end &optional count)
2043 "Shift region of Python code to the right.
2044The lines from the line containing the start of the current region up
2045to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002046shifted to the right, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002047
2048If a prefix argument is given, the region is instead shifted by that
Barry Warsawdea4a291996-07-03 22:59:12 +00002049many columns. With no active region, indent only the current line."
2050 (interactive
2051 (let ((p (point))
2052 (m (mark))
2053 (arg current-prefix-arg))
2054 (if m
2055 (list (min p m) (max p m) arg)
2056 (list p (save-excursion (forward-line 1) (point)) arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002057 (py-shift-region start end (prefix-numeric-value
Barry Warsawdea4a291996-07-03 22:59:12 +00002058 (or count py-indent-offset)))
2059 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002060
2061(defun py-indent-region (start end &optional indent-offset)
2062 "Reindent a region of Python code.
Barry Warsaw867a32a1996-03-07 18:30:26 +00002063
Barry Warsaw7ae77681994-12-12 20:38:05 +00002064The lines from the line containing the start of the current region up
2065to (but not including) the line containing the end of the region are
2066reindented. If the first line of the region has a non-whitespace
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002067character in the first column, the first line is left alone and the
2068rest of the region is reindented with respect to it. Else the entire
Barry Warsaw867a32a1996-03-07 18:30:26 +00002069region is reindented with respect to the (closest code or indenting
2070comment) statement immediately preceding the region.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002071
2072This is useful when code blocks are moved or yanked, when enclosing
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002073control structures are introduced or removed, or to reformat code
2074using a new value for the indentation offset.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002075
2076If a numeric prefix argument is given, it will be used as the value of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002077the indentation offset. Else the value of `py-indent-offset' will be
Barry Warsaw7ae77681994-12-12 20:38:05 +00002078used.
2079
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002080Warning: The region must be consistently indented before this function
Barry Warsaw7ae77681994-12-12 20:38:05 +00002081is called! This function does not compute proper indentation from
2082scratch (that's impossible in Python), it merely adjusts the existing
2083indentation to be correct in context.
2084
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002085Warning: This function really has no idea what to do with
2086non-indenting comment lines, and shifts them as if they were indenting
2087comment lines. Fixing this appears to require telepathy.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002088
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002089Special cases: whitespace is deleted from blank lines; continuation
2090lines are shifted by the same amount their initial line was shifted,
2091in order to preserve their relative indentation with respect to their
Barry Warsaw7ae77681994-12-12 20:38:05 +00002092initial line; and comment lines beginning in column 1 are ignored."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002093 (interactive "*r\nP") ; region; raw prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002094 (save-excursion
2095 (goto-char end) (beginning-of-line) (setq end (point-marker))
2096 (goto-char start) (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002097 (let ((py-indent-offset (prefix-numeric-value
2098 (or indent-offset py-indent-offset)))
2099 (indents '(-1)) ; stack of active indent levels
2100 (target-column 0) ; column to which to indent
2101 (base-shifted-by 0) ; amount last base line was shifted
2102 (indent-base (if (looking-at "[ \t\n]")
Barry Warsaw7cb505c1996-10-23 20:44:59 +00002103 (py-compute-indentation t)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002104 0))
2105 ci)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002106 (while (< (point) end)
2107 (setq ci (current-indentation))
2108 ;; figure out appropriate target column
2109 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002110 ((or (eq (following-char) ?#) ; comment in column 1
2111 (looking-at "[ \t]*$")) ; entirely blank
2112 (setq target-column 0))
2113 ((py-continuation-line-p) ; shift relative to base line
2114 (setq target-column (+ ci base-shifted-by)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002115 (t ; new base line
2116 (if (> ci (car indents)) ; going deeper; push it
2117 (setq indents (cons ci indents))
2118 ;; else we should have seen this indent before
2119 (setq indents (memq ci indents)) ; pop deeper indents
2120 (if (null indents)
2121 (error "Bad indentation in region, at line %d"
2122 (save-restriction
2123 (widen)
2124 (1+ (count-lines 1 (point)))))))
2125 (setq target-column (+ indent-base
2126 (* py-indent-offset
2127 (- (length indents) 2))))
2128 (setq base-shifted-by (- target-column ci))))
2129 ;; shift as needed
2130 (if (/= ci target-column)
2131 (progn
2132 (delete-horizontal-space)
2133 (indent-to target-column)))
2134 (forward-line 1))))
2135 (set-marker end nil))
2136
Barry Warsawa7891711996-08-01 15:53:09 +00002137(defun py-comment-region (beg end &optional arg)
2138 "Like `comment-region' but uses double hash (`#') comment starter."
2139 (interactive "r\nP")
Barry Warsaw3fcaf611996-08-01 20:11:51 +00002140 (let ((comment-start py-block-comment-prefix))
Barry Warsawa7891711996-08-01 15:53:09 +00002141 (comment-region beg end arg)))
2142
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002143
2144;; Functions for moving point
Barry Warsaw7ae77681994-12-12 20:38:05 +00002145(defun py-previous-statement (count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002146 "Go to the start of the COUNTth preceding Python statement.
2147By default, goes to the previous statement. If there is no such
2148statement, goes to the first statement. Return count of statements
2149left to move. `Statements' do not include blank, comment, or
2150continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002151 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002152 (if (< count 0) (py-next-statement (- count))
2153 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002154 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002155 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002156 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002157 (> count 0)
2158 (zerop (forward-line -1))
2159 (py-goto-statement-at-or-above))
2160 (setq count (1- count)))
2161 (if (> count 0) (goto-char start)))
2162 count))
2163
2164(defun py-next-statement (count)
2165 "Go to the start of next Python statement.
2166If the statement at point is the i'th Python statement, goes to the
2167start of statement i+COUNT. If there is no such statement, goes to the
2168last statement. Returns count of statements left to move. `Statements'
2169do not include blank, comment, or continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002170 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002171 (if (< count 0) (py-previous-statement (- count))
2172 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002173 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002174 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002175 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002176 (> count 0)
2177 (py-goto-statement-below))
2178 (setq count (1- count)))
2179 (if (> count 0) (goto-char start)))
2180 count))
2181
2182(defun py-goto-block-up (&optional nomark)
2183 "Move up to start of current block.
2184Go to the statement that starts the smallest enclosing block; roughly
2185speaking, this will be the closest preceding statement that ends with a
2186colon and is indented less than the statement you started on. If
2187successful, also sets the mark to the starting point.
2188
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002189`\\[py-mark-block]' can be used afterward to mark the whole code
2190block, if desired.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002191
2192If called from a program, the mark will not be set if optional argument
2193NOMARK is not nil."
2194 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002195 (let ((start (point))
2196 (found nil)
2197 initial-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002198 (py-goto-initial-line)
2199 ;; if on blank or non-indenting comment line, use the preceding stmt
2200 (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2201 (progn
2202 (py-goto-statement-at-or-above)
2203 (setq found (py-statement-opens-block-p))))
2204 ;; search back for colon line indented less
2205 (setq initial-indent (current-indentation))
2206 (if (zerop initial-indent)
2207 ;; force fast exit
2208 (goto-char (point-min)))
2209 (while (not (or found (bobp)))
2210 (setq found
2211 (and
2212 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2213 (or (py-goto-initial-line) t) ; always true -- side effect
2214 (< (current-indentation) initial-indent)
2215 (py-statement-opens-block-p))))
2216 (if found
2217 (progn
2218 (or nomark (push-mark start))
2219 (back-to-indentation))
2220 (goto-char start)
2221 (error "Enclosing block not found"))))
2222
Barry Warsawab0e86c1998-05-19 15:31:46 +00002223(defun py-beginning-of-def-or-class (&optional class count)
2224 "Move point to start of `def' or `class'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002225
2226Searches back for the closest preceding `def'. If you supply a prefix
Barry Warsawab0e86c1998-05-19 15:31:46 +00002227arg, looks for a `class' instead. The docs below assume the `def'
2228case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002229Programmatically, if CLASS is `either', then moves to either `class'
2230or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002231
Barry Warsawab0e86c1998-05-19 15:31:46 +00002232When second optional argument is given programmatically, move to the
2233COUNTth start of `def'.
2234
2235If point is in a `def' statement already, and after the `d', simply
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002236moves point to the start of the statement.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002237
Barry Warsawab0e86c1998-05-19 15:31:46 +00002238Otherwise (i.e. when point is not in a `def' statement, or at or
2239before the `d' of a `def' statement), searches for the closest
2240preceding `def' statement, and leaves point at its start. If no such
2241statement can be found, leaves point at the start of the buffer.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002242
Barry Warsawab0e86c1998-05-19 15:31:46 +00002243Returns t iff a `def' statement is found by these rules.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002244
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002245Note that doing this command repeatedly will take you closer to the
2246start of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002247
Barry Warsaw7c29b231998-07-07 17:45:38 +00002248To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002249 (interactive "P") ; raw prefix arg
Barry Warsaw6839d3a1998-10-28 00:10:45 +00002250 (setq count (or count 1))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002251 (let ((at-or-before-p (<= (current-column) (current-indentation)))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002252 (start-of-line (goto-char (py-point 'bol)))
2253 (start-of-stmt (goto-char (py-point 'bos)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002254 (start-re (cond ((eq class 'either) "^[ \t]*\\(class\\|def\\)\\>")
2255 (class "^[ \t]*class\\>")
2256 (t "^[ \t]*def\\>")))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002257 )
2258 ;; searching backward
2259 (if (and (< 0 count)
2260 (or (/= start-of-stmt start-of-line)
2261 (not at-or-before-p)))
2262 (end-of-line))
2263 ;; search forward
2264 (if (and (> 0 count)
2265 (zerop (current-column))
2266 (looking-at start-re))
2267 (end-of-line))
Barry Warsawddc46961999-07-27 21:40:02 +00002268 (if (re-search-backward start-re nil 'move count)
2269 (goto-char (match-beginning 0)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002270
Barry Warsawab0e86c1998-05-19 15:31:46 +00002271;; Backwards compatibility
2272(defalias 'beginning-of-python-def-or-class 'py-beginning-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002273
Barry Warsawab0e86c1998-05-19 15:31:46 +00002274(defun py-end-of-def-or-class (&optional class count)
2275 "Move point beyond end of `def' or `class' body.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002276
Barry Warsawab0e86c1998-05-19 15:31:46 +00002277By default, looks for an appropriate `def'. If you supply a prefix
2278arg, looks for a `class' instead. The docs below assume the `def'
2279case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002280Programmatically, if CLASS is `either', then moves to either `class'
2281or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002282
Barry Warsawab0e86c1998-05-19 15:31:46 +00002283When second optional argument is given programmatically, move to the
2284COUNTth end of `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002285
Barry Warsawab0e86c1998-05-19 15:31:46 +00002286If point is in a `def' statement already, this is the `def' we use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002287
Barry Warsawab0e86c1998-05-19 15:31:46 +00002288Else, if the `def' found by `\\[py-beginning-of-def-or-class]'
2289contains the statement you started on, that's the `def' we use.
2290
2291Otherwise, we search forward for the closest following `def', and use that.
2292
2293If a `def' can be found by these rules, point is moved to the start of
2294the line immediately following the `def' block, and the position of the
2295start of the `def' is returned.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002296
2297Else point is moved to the end of the buffer, and nil is returned.
2298
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002299Note that doing this command repeatedly will take you closer to the
2300end of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002301
Barry Warsaw7c29b231998-07-07 17:45:38 +00002302To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002303 (interactive "P") ; raw prefix arg
Barry Warsawab0e86c1998-05-19 15:31:46 +00002304 (if (and count (/= count 1))
2305 (py-beginning-of-def-or-class (- 1 count)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002306 (let ((start (progn (py-goto-initial-line) (point)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002307 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2308 (class "class")
2309 (t "def")))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002310 (state 'not-found))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002311 ;; move point to start of appropriate def/class
2312 (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one
2313 (setq state 'at-beginning)
Barry Warsawab0e86c1998-05-19 15:31:46 +00002314 ;; else see if py-beginning-of-def-or-class hits container
2315 (if (and (py-beginning-of-def-or-class class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002316 (progn (py-goto-beyond-block)
2317 (> (point) start)))
2318 (setq state 'at-end)
2319 ;; else search forward
2320 (goto-char start)
2321 (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move)
2322 (progn (setq state 'at-beginning)
2323 (beginning-of-line)))))
2324 (cond
2325 ((eq state 'at-beginning) (py-goto-beyond-block) t)
2326 ((eq state 'at-end) t)
2327 ((eq state 'not-found) nil)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002328 (t (error "Internal error in `py-end-of-def-or-class'")))))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002329
2330;; Backwards compabitility
Barry Warsaw820273d1998-05-19 15:54:45 +00002331(defalias 'end-of-python-def-or-class 'py-end-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002332
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002333
2334;; Functions for marking regions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002335(defun py-mark-block (&optional extend just-move)
2336 "Mark following block of lines. With prefix arg, mark structure.
2337Easier to use than explain. It sets the region to an `interesting'
2338block of succeeding lines. If point is on a blank line, it goes down to
2339the next non-blank line. That will be the start of the region. The end
2340of the region depends on the kind of line at the start:
2341
2342 - If a comment, the region will include all succeeding comment lines up
2343 to (but not including) the next non-comment line (if any).
2344
2345 - Else if a prefix arg is given, and the line begins one of these
2346 structures:
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002347
2348 if elif else try except finally for while def class
2349
Barry Warsaw7ae77681994-12-12 20:38:05 +00002350 the region will be set to the body of the structure, including
2351 following blocks that `belong' to it, but excluding trailing blank
2352 and comment lines. E.g., if on a `try' statement, the `try' block
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002353 and all (if any) of the following `except' and `finally' blocks
2354 that belong to the `try' structure will be in the region. Ditto
2355 for if/elif/else, for/else and while/else structures, and (a bit
2356 degenerate, since they're always one-block structures) def and
2357 class blocks.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002358
2359 - Else if no prefix argument is given, and the line begins a Python
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002360 block (see list above), and the block is not a `one-liner' (i.e.,
2361 the statement ends with a colon, not with code), the region will
2362 include all succeeding lines up to (but not including) the next
2363 code statement (if any) that's indented no more than the starting
2364 line, except that trailing blank and comment lines are excluded.
2365 E.g., if the starting line begins a multi-statement `def'
2366 structure, the region will be set to the full function definition,
2367 but without any trailing `noise' lines.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002368
2369 - Else the region will include all succeeding lines up to (but not
2370 including) the next blank line, or code or indenting-comment line
2371 indented strictly less than the starting line. Trailing indenting
2372 comment lines are included in this case, but not trailing blank
2373 lines.
2374
2375A msg identifying the location of the mark is displayed in the echo
2376area; or do `\\[exchange-point-and-mark]' to flip down to the end.
2377
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002378If called from a program, optional argument EXTEND plays the role of
2379the prefix arg, and if optional argument JUST-MOVE is not nil, just
2380moves to the end of the block (& does not set mark or display a msg)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002381 (interactive "P") ; raw prefix arg
2382 (py-goto-initial-line)
2383 ;; skip over blank lines
2384 (while (and
2385 (looking-at "[ \t]*$") ; while blank line
2386 (not (eobp))) ; & somewhere to go
2387 (forward-line 1))
2388 (if (eobp)
2389 (error "Hit end of buffer without finding a non-blank stmt"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002390 (let ((initial-pos (point))
2391 (initial-indent (current-indentation))
2392 last-pos ; position of last stmt in region
2393 (followers
2394 '((if elif else) (elif elif else) (else)
2395 (try except finally) (except except) (finally)
2396 (for else) (while else)
2397 (def) (class) ) )
2398 first-symbol next-symbol)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002399
2400 (cond
2401 ;; if comment line, suck up the following comment lines
2402 ((looking-at "[ \t]*#")
2403 (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment
2404 (re-search-backward "^[ \t]*#") ; and back to last comment in block
2405 (setq last-pos (point)))
2406
2407 ;; else if line is a block line and EXTEND given, suck up
2408 ;; the whole structure
2409 ((and extend
2410 (setq first-symbol (py-suck-up-first-keyword) )
2411 (assq first-symbol followers))
2412 (while (and
2413 (or (py-goto-beyond-block) t) ; side effect
2414 (forward-line -1) ; side effect
2415 (setq last-pos (point)) ; side effect
2416 (py-goto-statement-below)
2417 (= (current-indentation) initial-indent)
2418 (setq next-symbol (py-suck-up-first-keyword))
2419 (memq next-symbol (cdr (assq first-symbol followers))))
2420 (setq first-symbol next-symbol)))
2421
2422 ;; else if line *opens* a block, search for next stmt indented <=
2423 ((py-statement-opens-block-p)
2424 (while (and
2425 (setq last-pos (point)) ; always true -- side effect
2426 (py-goto-statement-below)
2427 (> (current-indentation) initial-indent))
2428 nil))
2429
2430 ;; else plain code line; stop at next blank line, or stmt or
2431 ;; indenting comment line indented <
2432 (t
2433 (while (and
2434 (setq last-pos (point)) ; always true -- side effect
2435 (or (py-goto-beyond-final-line) t)
2436 (not (looking-at "[ \t]*$")) ; stop at blank line
2437 (or
2438 (>= (current-indentation) initial-indent)
2439 (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting #
2440 nil)))
2441
2442 ;; skip to end of last stmt
2443 (goto-char last-pos)
2444 (py-goto-beyond-final-line)
2445
2446 ;; set mark & display
2447 (if just-move
2448 () ; just return
2449 (push-mark (point) 'no-msg)
2450 (forward-line -1)
2451 (message "Mark set after: %s" (py-suck-up-leading-text))
2452 (goto-char initial-pos))))
2453
Barry Warsaw2518c671997-11-05 00:51:08 +00002454(defun py-mark-def-or-class (&optional class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002455 "Set region to body of def (or class, with prefix arg) enclosing point.
2456Pushes the current mark, then point, on the mark ring (all language
2457modes do this, but although it's handy it's never documented ...).
2458
2459In most Emacs language modes, this function bears at least a
Barry Warsawab0e86c1998-05-19 15:31:46 +00002460hallucinogenic resemblance to `\\[py-end-of-def-or-class]' and
2461`\\[py-beginning-of-def-or-class]'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002462
2463And in earlier versions of Python mode, all 3 were tightly connected.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002464Turned out that was more confusing than useful: the `goto start' and
2465`goto end' commands are usually used to search through a file, and
2466people expect them to act a lot like `search backward' and `search
2467forward' string-search commands. But because Python `def' and `class'
2468can nest to arbitrary levels, finding the smallest def containing
2469point cannot be done via a simple backward search: the def containing
2470point may not be the closest preceding def, or even the closest
2471preceding def that's indented less. The fancy algorithm required is
2472appropriate for the usual uses of this `mark' command, but not for the
2473`goto' variations.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002474
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002475So the def marked by this command may not be the one either of the
2476`goto' commands find: If point is on a blank or non-indenting comment
2477line, moves back to start of the closest preceding code statement or
2478indenting comment line. If this is a `def' statement, that's the def
2479we use. Else searches for the smallest enclosing `def' block and uses
2480that. Else signals an error.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002481
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002482When an enclosing def is found: The mark is left immediately beyond
2483the last line of the def block. Point is left at the start of the
2484def, except that: if the def is preceded by a number of comment lines
2485followed by (at most) one optional blank line, point is left at the
2486start of the comments; else if the def is preceded by a blank line,
2487point is left at its start.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002488
2489The intent is to mark the containing def/class and its associated
2490documentation, to make moving and duplicating functions and classes
2491pleasant."
2492 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002493 (let ((start (point))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002494 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2495 (class "class")
2496 (t "def"))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002497 (push-mark start)
2498 (if (not (py-go-up-tree-to-keyword which))
2499 (progn (goto-char start)
Barry Warsaw7c29b231998-07-07 17:45:38 +00002500 (error "Enclosing %s not found"
2501 (if (eq class 'either)
2502 "def or class"
2503 which)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002504 ;; else enclosing def/class found
2505 (setq start (point))
2506 (py-goto-beyond-block)
2507 (push-mark (point))
2508 (goto-char start)
2509 (if (zerop (forward-line -1)) ; if there is a preceding line
2510 (progn
2511 (if (looking-at "[ \t]*$") ; it's blank
2512 (setq start (point)) ; so reset start point
2513 (goto-char start)) ; else try again
2514 (if (zerop (forward-line -1))
2515 (if (looking-at "[ \t]*#") ; a comment
2516 ;; look back for non-comment line
2517 ;; tricky: note that the regexp matches a blank
2518 ;; line, cuz \n is in the 2nd character class
2519 (and
2520 (re-search-backward "^[ \t]*[^ \t#]" nil 'move)
2521 (forward-line 1))
2522 ;; no comment, so go back
Barry Warsaw4da6bd51997-11-26 06:00:26 +00002523 (goto-char start)))))))
2524 (exchange-point-and-mark)
2525 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002526
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002527;; ripped from cc-mode
2528(defun py-forward-into-nomenclature (&optional arg)
2529 "Move forward to end of a nomenclature section or word.
Barry Warsaw41a05c71998-08-10 16:33:12 +00002530With \\[universal-argument] (programmatically, optional argument ARG),
2531do it that many times.
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002532
2533A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2534 (interactive "p")
2535 (let ((case-fold-search nil))
2536 (if (> arg 0)
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002537 (re-search-forward
2538 "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)"
2539 (point-max) t arg)
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002540 (while (and (< arg 0)
2541 (re-search-backward
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002542 "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+"
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002543 (point-min) 0))
2544 (forward-char 1)
2545 (setq arg (1+ arg)))))
2546 (py-keep-region-active))
2547
2548(defun py-backward-into-nomenclature (&optional arg)
2549 "Move backward to beginning of a nomenclature section or word.
2550With optional ARG, move that many times. If ARG is negative, move
2551forward.
2552
2553A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2554 (interactive "p")
2555 (py-forward-into-nomenclature (- arg))
2556 (py-keep-region-active))
2557
2558
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002559
Barry Warsaw4f577d22001-04-11 20:23:17 +00002560;; pdbtrack functions
2561(defun py-pdbtrack-toggle-stack-tracking (arg)
2562 (interactive "P")
2563 (if (not (get-buffer-process (current-buffer)))
2564 (error "No process associated with buffer '%s'" (current-buffer)))
2565 ;; missing or 0 is toggle, >0 turn on, <0 turn off
2566 (if (or (not arg)
2567 (zerop (setq arg (prefix-numeric-value arg))))
2568 (setq py-pdbtrack-do-tracking-p (not py-pdbtrack-do-tracking-p))
2569 (setq py-pdbtrack-do-tracking-p (> arg 0)))
2570 (message "%sabled Python's pdbtrack"
2571 (if py-pdbtrack-do-tracking-p "En" "Dis")))
2572
2573(defun turn-on-pdbtrack ()
2574 (interactive)
2575 (py-pdbtrack-toggle-stack-tracking 1))
2576
2577(defun turn-off-pdbtrack ()
2578 (interactive)
2579 (py-pdbtrack-toggle-stack-tracking 0))
2580
2581
2582
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002583;; Documentation functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002584
2585;; dump the long form of the mode blurb; does the usual doc escapes,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002586;; plus lines of the form ^[vc]:name$ to suck variable & command docs
2587;; out of the right places, along with the keys they're on & current
2588;; values
Barry Warsaw7ae77681994-12-12 20:38:05 +00002589(defun py-dump-help-string (str)
2590 (with-output-to-temp-buffer "*Help*"
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002591 (let ((locals (buffer-local-variables))
2592 funckind funcname func funcdoc
2593 (start 0) mstart end
2594 keys )
Barry Warsaw7ae77681994-12-12 20:38:05 +00002595 (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start)
2596 (setq mstart (match-beginning 0) end (match-end 0)
2597 funckind (substring str (match-beginning 1) (match-end 1))
2598 funcname (substring str (match-beginning 2) (match-end 2))
2599 func (intern funcname))
2600 (princ (substitute-command-keys (substring str start mstart)))
2601 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002602 ((equal funckind "c") ; command
2603 (setq funcdoc (documentation func)
2604 keys (concat
2605 "Key(s): "
2606 (mapconcat 'key-description
2607 (where-is-internal func py-mode-map)
2608 ", "))))
2609 ((equal funckind "v") ; variable
Barry Warsaw604cefa1996-09-03 18:17:04 +00002610 (setq funcdoc (documentation-property func 'variable-documentation)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002611 keys (if (assq func locals)
2612 (concat
2613 "Local/Global values: "
2614 (prin1-to-string (symbol-value func))
2615 " / "
2616 (prin1-to-string (default-value func)))
2617 (concat
2618 "Value: "
2619 (prin1-to-string (symbol-value func))))))
2620 (t ; unexpected
2621 (error "Error in py-dump-help-string, tag `%s'" funckind)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002622 (princ (format "\n-> %s:\t%s\t%s\n\n"
2623 (if (equal funckind "c") "Command" "Variable")
2624 funcname keys))
2625 (princ funcdoc)
2626 (terpri)
2627 (setq start end))
2628 (princ (substitute-command-keys (substring str start))))
2629 (print-help-return-message)))
2630
2631(defun py-describe-mode ()
2632 "Dump long form of Python-mode docs."
2633 (interactive)
2634 (py-dump-help-string "Major mode for editing Python files.
2635Knows about Python indentation, tokens, comments and continuation lines.
2636Paragraphs are separated by blank lines only.
2637
2638Major sections below begin with the string `@'; specific function and
2639variable docs begin with `->'.
2640
2641@EXECUTING PYTHON CODE
2642
Barry Warsaw820273d1998-05-19 15:54:45 +00002643\\[py-execute-import-or-reload]\timports or reloads the file in the Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002644\\[py-execute-buffer]\tsends the entire buffer to the Python interpreter
2645\\[py-execute-region]\tsends the current region
Barry Warsaw820273d1998-05-19 15:54:45 +00002646\\[py-execute-def-or-class]\tsends the current function or class definition
2647\\[py-execute-string]\tsends an arbitrary string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002648\\[py-shell]\tstarts a Python interpreter window; this will be used by
Barry Warsaw820273d1998-05-19 15:54:45 +00002649\tsubsequent Python execution commands
2650%c:py-execute-import-or-reload
Barry Warsaw7ae77681994-12-12 20:38:05 +00002651%c:py-execute-buffer
2652%c:py-execute-region
Barry Warsaw820273d1998-05-19 15:54:45 +00002653%c:py-execute-def-or-class
2654%c:py-execute-string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002655%c:py-shell
2656
2657@VARIABLES
2658
2659py-indent-offset\tindentation increment
Barry Warsaw42f707f1996-07-29 21:05:05 +00002660py-block-comment-prefix\tcomment string used by comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002661
2662py-python-command\tshell command to invoke Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002663py-temp-directory\tdirectory used for temp files (if needed)
2664
2665py-beep-if-tab-change\tring the bell if tab-width is changed
2666%v:py-indent-offset
2667%v:py-block-comment-prefix
2668%v:py-python-command
Barry Warsaw7ae77681994-12-12 20:38:05 +00002669%v:py-temp-directory
2670%v:py-beep-if-tab-change
2671
2672@KINDS OF LINES
2673
2674Each physical line in the file is either a `continuation line' (the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002675preceding line ends with a backslash that's not part of a comment, or
2676the paren/bracket/brace nesting level at the start of the line is
2677non-zero, or both) or an `initial line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002678
2679An initial line is in turn a `blank line' (contains nothing except
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002680possibly blanks or tabs), a `comment line' (leftmost non-blank
2681character is `#'), or a `code line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002682
2683Comment Lines
2684
2685Although all comment lines are treated alike by Python, Python mode
2686recognizes two kinds that act differently with respect to indentation.
2687
2688An `indenting comment line' is a comment line with a blank, tab or
2689nothing after the initial `#'. The indentation commands (see below)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002690treat these exactly as if they were code lines: a line following an
Barry Warsaw7ae77681994-12-12 20:38:05 +00002691indenting comment line will be indented like the comment line. All
2692other comment lines (those with a non-whitespace character immediately
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002693following the initial `#') are `non-indenting comment lines', and
2694their indentation is ignored by the indentation commands.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002695
2696Indenting comment lines are by far the usual case, and should be used
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002697whenever possible. Non-indenting comment lines are useful in cases
2698like these:
Barry Warsaw7ae77681994-12-12 20:38:05 +00002699
2700\ta = b # a very wordy single-line comment that ends up being
2701\t #... continued onto another line
2702
2703\tif a == b:
2704##\t\tprint 'panic!' # old code we've `commented out'
2705\t\treturn a
2706
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002707Since the `#...' and `##' comment lines have a non-whitespace
2708character following the initial `#', Python mode ignores them when
2709computing the proper indentation for the next line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002710
2711Continuation Lines and Statements
2712
2713The Python-mode commands generally work on statements instead of on
2714individual lines, where a `statement' is a comment or blank line, or a
2715code line and all of its following continuation lines (if any)
2716considered as a single logical unit. The commands in this mode
2717generally (when it makes sense) automatically move to the start of the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002718statement containing point, even if point happens to be in the middle
2719of some continuation line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002720
2721
2722@INDENTATION
2723
2724Primarily for entering new code:
2725\t\\[indent-for-tab-command]\t indent line appropriately
2726\t\\[py-newline-and-indent]\t insert newline, then indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00002727\t\\[py-electric-backspace]\t reduce indentation, or delete single character
Barry Warsaw7ae77681994-12-12 20:38:05 +00002728
2729Primarily for reindenting existing code:
2730\t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally
2731\t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally
2732
2733\t\\[py-indent-region]\t reindent region to match its context
2734\t\\[py-shift-region-left]\t shift region left by py-indent-offset
2735\t\\[py-shift-region-right]\t shift region right by py-indent-offset
2736
2737Unlike most programming languages, Python uses indentation, and only
2738indentation, to specify block structure. Hence the indentation supplied
2739automatically by Python-mode is just an educated guess: only you know
2740the block structure you intend, so only you can supply correct
2741indentation.
2742
2743The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on
2744the indentation of preceding statements. E.g., assuming
2745py-indent-offset is 4, after you enter
2746\tif a > 0: \\[py-newline-and-indent]
2747the cursor will be moved to the position of the `_' (_ is not a
2748character in the file, it's just used here to indicate the location of
2749the cursor):
2750\tif a > 0:
2751\t _
2752If you then enter `c = d' \\[py-newline-and-indent], the cursor will move
2753to
2754\tif a > 0:
2755\t c = d
2756\t _
2757Python-mode cannot know whether that's what you intended, or whether
2758\tif a > 0:
2759\t c = d
2760\t_
2761was your intent. In general, Python-mode either reproduces the
2762indentation of the (closest code or indenting-comment) preceding
2763statement, or adds an extra py-indent-offset blanks if the preceding
2764statement has `:' as its last significant (non-whitespace and non-
2765comment) character. If the suggested indentation is too much, use
Barry Warsaw27ee1151997-12-03 05:03:44 +00002766\\[py-electric-backspace] to reduce it.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002767
2768Continuation lines are given extra indentation. If you don't like the
2769suggested indentation, change it to something you do like, and Python-
2770mode will strive to indent later lines of the statement in the same way.
2771
2772If a line is a continuation line by virtue of being in an unclosed
2773paren/bracket/brace structure (`list', for short), the suggested
2774indentation depends on whether the current line contains the first item
2775in the list. If it does, it's indented py-indent-offset columns beyond
2776the indentation of the line containing the open bracket. If you don't
2777like that, change it by hand. The remaining items in the list will mimic
2778whatever indentation you give to the first item.
2779
2780If a line is a continuation line because the line preceding it ends with
2781a backslash, the third and following lines of the statement inherit their
2782indentation from the line preceding them. The indentation of the second
2783line in the statement depends on the form of the first (base) line: if
2784the base line is an assignment statement with anything more interesting
2785than the backslash following the leftmost assigning `=', the second line
2786is indented two columns beyond that `='. Else it's indented to two
2787columns beyond the leftmost solid chunk of non-whitespace characters on
2788the base line.
2789
2790Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command]
2791repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block
2792structure you intend.
2793%c:indent-for-tab-command
2794%c:py-newline-and-indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00002795%c:py-electric-backspace
Barry Warsaw7ae77681994-12-12 20:38:05 +00002796
2797
2798The next function may be handy when editing code you didn't write:
2799%c:py-guess-indent-offset
2800
2801
2802The remaining `indent' functions apply to a region of Python code. They
2803assume the block structure (equals indentation, in Python) of the region
2804is correct, and alter the indentation in various ways while preserving
2805the block structure:
2806%c:py-indent-region
2807%c:py-shift-region-left
2808%c:py-shift-region-right
2809
2810@MARKING & MANIPULATING REGIONS OF CODE
2811
2812\\[py-mark-block]\t mark block of lines
Barry Warsaw2518c671997-11-05 00:51:08 +00002813\\[py-mark-def-or-class]\t mark smallest enclosing def
2814\\[universal-argument] \\[py-mark-def-or-class]\t mark smallest enclosing class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002815\\[comment-region]\t comment out region of code
2816\\[universal-argument] \\[comment-region]\t uncomment region of code
Barry Warsaw7ae77681994-12-12 20:38:05 +00002817%c:py-mark-block
Barry Warsaw2518c671997-11-05 00:51:08 +00002818%c:py-mark-def-or-class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002819%c:comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002820
2821@MOVING POINT
2822
2823\\[py-previous-statement]\t move to statement preceding point
2824\\[py-next-statement]\t move to statement following point
2825\\[py-goto-block-up]\t move up to start of current block
Barry Warsawab0e86c1998-05-19 15:31:46 +00002826\\[py-beginning-of-def-or-class]\t move to start of def
2827\\[universal-argument] \\[py-beginning-of-def-or-class]\t move to start of class
2828\\[py-end-of-def-or-class]\t move to end of def
2829\\[universal-argument] \\[py-end-of-def-or-class]\t move to end of class
Barry Warsaw7ae77681994-12-12 20:38:05 +00002830
2831The first two move to one statement beyond the statement that contains
2832point. A numeric prefix argument tells them to move that many
2833statements instead. Blank lines, comment lines, and continuation lines
2834do not count as `statements' for these commands. So, e.g., you can go
2835to the first code statement in a file by entering
2836\t\\[beginning-of-buffer]\t to move to the top of the file
2837\t\\[py-next-statement]\t to skip over initial comments and blank lines
2838Or do `\\[py-previous-statement]' with a huge prefix argument.
2839%c:py-previous-statement
2840%c:py-next-statement
2841%c:py-goto-block-up
Barry Warsawab0e86c1998-05-19 15:31:46 +00002842%c:py-beginning-of-def-or-class
2843%c:py-end-of-def-or-class
Barry Warsaw7ae77681994-12-12 20:38:05 +00002844
2845@LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE
2846
2847`\\[indent-new-comment-line]' is handy for entering a multi-line comment.
2848
2849`\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the
2850overall class and def structure of a module.
2851
2852`\\[back-to-indentation]' moves point to a line's first non-blank character.
2853
2854`\\[indent-relative]' is handy for creating odd indentation.
2855
2856@OTHER EMACS HINTS
2857
2858If you don't like the default value of a variable, change its value to
2859whatever you do like by putting a `setq' line in your .emacs file.
2860E.g., to set the indentation increment to 4, put this line in your
2861.emacs:
2862\t(setq py-indent-offset 4)
2863To see the value of a variable, do `\\[describe-variable]' and enter the variable
2864name at the prompt.
2865
2866When entering a key sequence like `C-c C-n', it is not necessary to
2867release the CONTROL key after doing the `C-c' part -- it suffices to
2868press the CONTROL key, press and release `c' (while still holding down
2869CONTROL), press and release `n' (while still holding down CONTROL), &
2870then release CONTROL.
2871
2872Entering Python mode calls with no arguments the value of the variable
2873`python-mode-hook', if that value exists and is not nil; for backward
2874compatibility it also tries `py-mode-hook'; see the `Hooks' section of
2875the Elisp manual for details.
2876
2877Obscure: When python-mode is first loaded, it looks for all bindings
2878to newline-and-indent in the global keymap, and shadows them with
2879local bindings to py-newline-and-indent."))
2880
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002881
2882;; Helper functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002883(defvar py-parse-state-re
2884 (concat
2885 "^[ \t]*\\(if\\|elif\\|else\\|while\\|def\\|class\\)\\>"
2886 "\\|"
2887 "^[^ #\t\n]"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002888
Barry Warsaw7ae77681994-12-12 20:38:05 +00002889(defun py-parse-state ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002890 "Return the parse state at point (see `parse-partial-sexp' docs)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002891 (save-excursion
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002892 (let ((here (point))
Barry Warsaw68d486c2001-02-24 00:09:17 +00002893 in-listcomp pps done)
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002894 (while (not done)
2895 ;; back up to the first preceding line (if any; else start of
2896 ;; buffer) that begins with a popular Python keyword, or a
2897 ;; non- whitespace and non-comment character. These are good
2898 ;; places to start parsing to see whether where we started is
2899 ;; at a non-zero nesting level. It may be slow for people who
2900 ;; write huge code blocks or huge lists ... tough beans.
2901 (re-search-backward py-parse-state-re nil 'move)
Barry Warsaw68d486c2001-02-24 00:09:17 +00002902 ;; Watch out for landing inside a list comprehension
2903 (save-excursion
2904 (if (and (looking-at "[ \t]*\\<\\(if\\|for\\)\\>")
2905 (py-safe (progn (up-list -1) t))
2906 (eq (char-after) ?\[))
2907 (setq in-listcomp (point))
2908 (setq in-listcomp nil)))
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002909 (beginning-of-line)
Barry Warsawf64b4051998-02-12 16:52:14 +00002910 ;; In XEmacs, we have a much better way to test for whether
2911 ;; we're in a triple-quoted string or not. Emacs does not
Barry Warsaw145ab1c1998-05-19 14:49:49 +00002912 ;; have this built-in function, which is its loss because
Barry Warsawf64b4051998-02-12 16:52:14 +00002913 ;; without scanning from the beginning of the buffer, there's
2914 ;; no accurate way to determine this otherwise.
2915 (if (not (fboundp 'buffer-syntactic-context))
2916 ;; Emacs
Barry Warsaw585f7331998-04-01 21:13:51 +00002917 (progn
2918 (save-excursion (setq pps (parse-partial-sexp (point) here)))
Barry Warsawf64b4051998-02-12 16:52:14 +00002919 ;; make sure we don't land inside a triple-quoted string
Barry Warsaw742a5111998-03-13 17:29:15 +00002920 (setq done (or (not (nth 3 pps))
Barry Warsaw53db8591999-05-24 19:57:32 +00002921 (bobp)))
2922 ;; Just go ahead and short circuit the test back to the
2923 ;; beginning of the buffer. This will be slow, but not
2924 ;; nearly as slow as looping through many
2925 ;; re-search-backwards.
2926 (if (not done)
2927 (goto-char (point-min))))
Barry Warsawf64b4051998-02-12 16:52:14 +00002928 ;; XEmacs
2929 (setq done (or (not (buffer-syntactic-context))
2930 (bobp)))
Barry Warsaw68d486c2001-02-24 00:09:17 +00002931 (when in-listcomp
2932 (goto-char in-listcomp)
2933 (setq done nil))
Barry Warsawf64b4051998-02-12 16:52:14 +00002934 (when done
2935 (setq pps (parse-partial-sexp (point) here)))
2936 ))
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002937 pps)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002938
Barry Warsaw7ae77681994-12-12 20:38:05 +00002939(defun py-nesting-level ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002940 "Return the buffer position of the last unclosed enclosing list.
2941If nesting level is zero, return nil."
Barry Warsawf64b4051998-02-12 16:52:14 +00002942 (let ((status (py-parse-state)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002943 (if (zerop (car status))
2944 nil ; not in a nest
2945 (car (cdr status))))) ; char# of open bracket
2946
Barry Warsaw7ae77681994-12-12 20:38:05 +00002947(defun py-backslash-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002948 "Return t iff preceding line ends with backslash that is not in a comment."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002949 (save-excursion
2950 (beginning-of-line)
2951 (and
2952 ;; use a cheap test first to avoid the regexp if possible
2953 ;; use 'eq' because char-after may return nil
2954 (eq (char-after (- (point) 2)) ?\\ )
2955 ;; make sure; since eq test passed, there is a preceding line
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002956 (forward-line -1) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002957 (looking-at py-continued-re))))
2958
Barry Warsaw7ae77681994-12-12 20:38:05 +00002959(defun py-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002960 "Return t iff current line is a continuation line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002961 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002962 (beginning-of-line)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002963 (or (py-backslash-continuation-line-p)
2964 (py-nesting-level))))
2965
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002966(defun py-goto-beginning-of-tqs (delim)
2967 "Go to the beginning of the triple quoted string we find ourselves in.
2968DELIM is the TQS string delimiter character we're searching backwards
2969for."
Barry Warsaw3c34bb32000-10-27 05:00:25 +00002970 (let ((skip (and delim (make-string 1 delim)))
2971 (continue t))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002972 (when skip
2973 (save-excursion
Barry Warsaw3c34bb32000-10-27 05:00:25 +00002974 (while continue
2975 (py-safe (search-backward skip))
2976 (setq continue (and (not (bobp))
2977 (= (char-before) ?\\))))
2978 (if (and (= (char-before) delim)
2979 (= (char-before (1- (point))) delim))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002980 (setq skip (make-string 3 delim))))
2981 ;; we're looking at a triple-quoted string
2982 (py-safe (search-backward skip)))))
2983
Barry Warsaw7ae77681994-12-12 20:38:05 +00002984(defun py-goto-initial-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002985 "Go to the initial line of the current statement.
2986Usually this is the line we're on, but if we're on the 2nd or
2987following lines of a continuation block, we need to go up to the first
2988line of the block."
2989 ;; Tricky: We want to avoid quadratic-time behavior for long
2990 ;; continued blocks, whether of the backslash or open-bracket
2991 ;; varieties, or a mix of the two. The following manages to do that
2992 ;; in the usual cases.
2993 ;;
2994 ;; Also, if we're sitting inside a triple quoted string, this will
2995 ;; drop us at the line that begins the string.
Barry Warsaw9ec9fbc1998-01-21 05:15:57 +00002996 (let (open-bracket-pos)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002997 (while (py-continuation-line-p)
2998 (beginning-of-line)
2999 (if (py-backslash-continuation-line-p)
3000 (while (py-backslash-continuation-line-p)
3001 (forward-line -1))
3002 ;; else zip out of nested brackets/braces/parens
3003 (while (setq open-bracket-pos (py-nesting-level))
3004 (goto-char open-bracket-pos)))))
3005 (beginning-of-line))
3006
Barry Warsaw7ae77681994-12-12 20:38:05 +00003007(defun py-goto-beyond-final-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003008 "Go to the point just beyond the fine line of the current statement.
3009Usually this is the start of the next line, but if this is a
3010multi-line statement we need to skip over the continuation lines."
3011 ;; Tricky: Again we need to be clever to avoid quadratic time
3012 ;; behavior.
3013 ;;
3014 ;; XXX: Not quite the right solution, but deals with multi-line doc
3015 ;; strings
Barry Warsaw751f4931998-05-19 16:06:21 +00003016 (if (looking-at (concat "[ \t]*\\(" py-stringlit-re "\\)"))
3017 (goto-char (match-end 0)))
3018 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +00003019 (forward-line 1)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003020 (let (state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003021 (while (and (py-continuation-line-p)
3022 (not (eobp)))
3023 ;; skip over the backslash flavor
3024 (while (and (py-backslash-continuation-line-p)
3025 (not (eobp)))
3026 (forward-line 1))
3027 ;; if in nest, zip to the end of the nest
3028 (setq state (py-parse-state))
3029 (if (and (not (zerop (car state)))
3030 (not (eobp)))
3031 (progn
Barry Warsawaffc0ca1997-11-03 16:59:38 +00003032 (parse-partial-sexp (point) (point-max) 0 nil state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003033 (forward-line 1))))))
3034
Barry Warsaw7ae77681994-12-12 20:38:05 +00003035(defun py-statement-opens-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003036 "Return t iff the current statement opens a block.
3037I.e., iff it ends with a colon that is not in a comment. Point should
3038be at the start of a statement."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003039 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003040 (let ((start (point))
3041 (finish (progn (py-goto-beyond-final-line) (1- (point))))
3042 (searching t)
3043 (answer nil)
3044 state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003045 (goto-char start)
3046 (while searching
3047 ;; look for a colon with nothing after it except whitespace, and
3048 ;; maybe a comment
3049 (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$"
3050 finish t)
3051 (if (eq (point) finish) ; note: no `else' clause; just
3052 ; keep searching if we're not at
3053 ; the end yet
3054 ;; sure looks like it opens a block -- but it might
3055 ;; be in a comment
3056 (progn
3057 (setq searching nil) ; search is done either way
3058 (setq state (parse-partial-sexp start
3059 (match-beginning 0)))
3060 (setq answer (not (nth 4 state)))))
3061 ;; search failed: couldn't find another interesting colon
3062 (setq searching nil)))
3063 answer)))
3064
Barry Warsawf831d811996-07-31 20:42:59 +00003065(defun py-statement-closes-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003066 "Return t iff the current statement closes a block.
3067I.e., if the line starts with `return', `raise', `break', `continue',
3068and `pass'. This doesn't catch embedded statements."
Barry Warsawf831d811996-07-31 20:42:59 +00003069 (let ((here (point)))
Barry Warsawa8f99ba1999-05-24 18:37:57 +00003070 (py-goto-initial-line)
Barry Warsawc0d2d511999-06-03 22:18:59 +00003071 (back-to-indentation)
Barry Warsawf831d811996-07-31 20:42:59 +00003072 (prog1
Barry Warsawaffc0ca1997-11-03 16:59:38 +00003073 (looking-at (concat py-block-closing-keywords-re "\\>"))
Barry Warsawf831d811996-07-31 20:42:59 +00003074 (goto-char here))))
3075
Barry Warsaw7ae77681994-12-12 20:38:05 +00003076(defun py-goto-beyond-block ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003077 "Go to point just beyond the final line of block begun by the current line.
3078This is the same as where `py-goto-beyond-final-line' goes unless
3079we're on colon line, in which case we go to the end of the block.
3080Assumes point is at the beginning of the line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003081 (if (py-statement-opens-block-p)
3082 (py-mark-block nil 'just-move)
3083 (py-goto-beyond-final-line)))
3084
Barry Warsaw7ae77681994-12-12 20:38:05 +00003085(defun py-goto-statement-at-or-above ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003086 "Go to the start of the first statement at or preceding point.
3087Return t if there is such a statement, otherwise nil. `Statement'
3088does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003089 (py-goto-initial-line)
3090 (if (looking-at py-blank-or-comment-re)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003091 ;; skip back over blank & comment lines
3092 ;; note: will skip a blank or comment line that happens to be
3093 ;; a continuation line too
3094 (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t)
3095 (progn (py-goto-initial-line) t)
3096 nil)
Barry Warsaw7ae77681994-12-12 20:38:05 +00003097 t))
3098
Barry Warsaw7ae77681994-12-12 20:38:05 +00003099(defun py-goto-statement-below ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003100 "Go to start of the first statement following the statement containing point.
3101Return t if there is such a statement, otherwise nil. `Statement'
3102does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003103 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003104 (let ((start (point)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003105 (py-goto-beyond-final-line)
3106 (while (and
3107 (looking-at py-blank-or-comment-re)
3108 (not (eobp)))
3109 (forward-line 1))
3110 (if (eobp)
3111 (progn (goto-char start) nil)
3112 t)))
3113
Barry Warsaw7ae77681994-12-12 20:38:05 +00003114(defun py-go-up-tree-to-keyword (key)
Barry Warsaw41a05c71998-08-10 16:33:12 +00003115 "Go to begining of statement starting with KEY, at or preceding point.
3116
3117KEY is a regular expression describing a Python keyword. Skip blank
3118lines and non-indenting comments. If the statement found starts with
3119KEY, then stop, otherwise go back to first enclosing block starting
3120with KEY. If successful, leave point at the start of the KEY line and
3121return t. Otherwise, leav point at an undefined place and return nil."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003122 ;; skip blanks and non-indenting #
3123 (py-goto-initial-line)
3124 (while (and
3125 (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
3126 (zerop (forward-line -1))) ; go back
3127 nil)
3128 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003129 (let* ((re (concat "[ \t]*" key "\\b"))
3130 (case-fold-search nil) ; let* so looking-at sees this
3131 (found (looking-at re))
3132 (dead nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003133 (while (not (or found dead))
3134 (condition-case nil ; in case no enclosing block
3135 (py-goto-block-up 'no-mark)
3136 (error (setq dead t)))
3137 (or dead (setq found (looking-at re))))
3138 (beginning-of-line)
3139 found))
3140
Barry Warsaw7ae77681994-12-12 20:38:05 +00003141(defun py-suck-up-leading-text ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003142 "Return string in buffer from start of indentation to end of line.
3143Prefix with \"...\" if leading whitespace was skipped."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003144 (save-excursion
3145 (back-to-indentation)
3146 (concat
3147 (if (bolp) "" "...")
3148 (buffer-substring (point) (progn (end-of-line) (point))))))
3149
Barry Warsaw7ae77681994-12-12 20:38:05 +00003150(defun py-suck-up-first-keyword ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003151 "Return first keyword on the line as a Lisp symbol.
3152`Keyword' is defined (essentially) as the regular expression
3153([a-z]+). Returns nil if none was found."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003154 (let ((case-fold-search nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003155 (if (looking-at "[ \t]*\\([a-z]+\\)\\b")
3156 (intern (buffer-substring (match-beginning 1) (match-end 1)))
3157 nil)))
3158
Barry Warsawb3e81d51996-09-04 15:12:42 +00003159(defun py-current-defun ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003160 "Python value for `add-log-current-defun-function'.
3161This tells add-log.el how to find the current function/method/variable."
Barry Warsawb3e81d51996-09-04 15:12:42 +00003162 (save-excursion
3163 (if (re-search-backward py-defun-start-re nil t)
3164 (or (match-string 3)
3165 (let ((method (match-string 2)))
3166 (if (and (not (zerop (length (match-string 1))))
3167 (re-search-backward py-class-start-re nil t))
3168 (concat (match-string 1) "." method)
3169 method)))
3170 nil)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003171
3172
Barry Warsawfec75d61995-07-05 23:26:15 +00003173(defconst py-help-address "python-mode@python.org"
Barry Warsaw850437a1995-03-08 21:50:28 +00003174 "Address accepting submission of bug reports.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003175
Barry Warsaw850437a1995-03-08 21:50:28 +00003176(defun py-version ()
3177 "Echo the current version of `python-mode' in the minibuffer."
3178 (interactive)
3179 (message "Using `python-mode' version %s" py-version)
3180 (py-keep-region-active))
3181
3182;; only works under Emacs 19
3183;(eval-when-compile
3184; (require 'reporter))
3185
3186(defun py-submit-bug-report (enhancement-p)
3187 "Submit via mail a bug report on `python-mode'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00003188With \\[universal-argument] (programmatically, argument ENHANCEMENT-P
3189non-nil) just submit an enhancement request."
Barry Warsaw850437a1995-03-08 21:50:28 +00003190 (interactive
3191 (list (not (y-or-n-p
Barry Warsaw41a05c71998-08-10 16:33:12 +00003192 "Is this a bug report (hit `n' to send other comments)? "))))
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003193 (let ((reporter-prompt-for-summary-p (if enhancement-p
3194 "(Very) brief summary: "
3195 t)))
Barry Warsaw850437a1995-03-08 21:50:28 +00003196 (require 'reporter)
3197 (reporter-submit-bug-report
3198 py-help-address ;address
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003199 (concat "python-mode " py-version) ;pkgname
Barry Warsaw850437a1995-03-08 21:50:28 +00003200 ;; varlist
3201 (if enhancement-p nil
3202 '(py-python-command
3203 py-indent-offset
3204 py-block-comment-prefix
Barry Warsaw850437a1995-03-08 21:50:28 +00003205 py-temp-directory
3206 py-beep-if-tab-change))
3207 nil ;pre-hooks
3208 nil ;post-hooks
3209 "Dear Barry,") ;salutation
3210 (if enhancement-p nil
3211 (set-mark (point))
3212 (insert
3213"Please replace this text with a sufficiently large code sample\n\
3214and an exact recipe so that I can reproduce your problem. Failure\n\
3215to do so may mean a greater delay in fixing your bug.\n\n")
3216 (exchange-point-and-mark)
3217 (py-keep-region-active))))
3218
3219
Barry Warsaw47384781997-11-26 05:27:45 +00003220(defun py-kill-emacs-hook ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003221 "Delete files in `py-file-queue'.
3222These are Python temporary files awaiting execution."
Barry Warsaw47384781997-11-26 05:27:45 +00003223 (mapcar #'(lambda (filename)
3224 (py-safe (delete-file filename)))
3225 py-file-queue))
3226
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003227;; arrange to kill temp files when Emacs exists
Barry Warsawc72c11c1997-08-09 06:42:08 +00003228(add-hook 'kill-emacs-hook 'py-kill-emacs-hook)
Barry Warsaw4f577d22001-04-11 20:23:17 +00003229(add-hook 'comint-output-filter-functions 'py-pdbtrack-track-stack-file)
3230
3231;; Add a designator to the minor mode strings
3232(or (assq 'py-pdbtrack-minor-mode-string minor-mode-alist)
3233 (push '(py-pdbtrack-is-tracking-p py-pdbtrack-minor-mode-string)
3234 minor-mode-alist))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003235
3236
3237
3238(provide 'python-mode)
3239;;; python-mode.el ends here