blob: 15d9f0995e33e13cd348f3ccbecbcd69e1c320aa [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 Warsawf64b4051998-02-12 16:52:14 +00005;; Author: 1995-1998 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 Warsaw37231521997-12-11 17:23:13 +000028;; This version of python-mode.el is no longer compatible with Emacs
Barry Warsawf7039e21998-08-20 22:10:46 +000029;; 18. I am striving to maintain compatibility with the X/Emacs 19
30;; lineage but as time goes on that becomes more and more difficult.
31;; I current recommend that you upgrade to the latest stable released
Barry Warsaw38e21e71998-10-27 22:09:25 +000032;; version of your favorite branch: Emacs 20.3 or better, or XEmacs
33;; 20.4 or better (XEmacs 21.0 is in beta testing as of this writing
34;; 27-Oct-1998 appears to work fine with this version of
35;; python-mode.el). Even Windows users should be using at least
36;; NTEmacs 20.3, and XEmacs 21.0 will work very nicely on Windows when
37;; it is released.
Barry Warsaw37231521997-12-11 17:23:13 +000038
39;; FOR MORE INFORMATION:
40
Barry Warsawf7039e21998-08-20 22:10:46 +000041;; For more information on installing python-mode.el, especially with
42;; respect to compatibility information, please see
43;;
44;; http://www.python.org/emacs/python-mode/
45;;
46;; This site also contains links to other packages that you might find
47;; useful, such as pdb interfaces, OO-Browser links, etc.
Barry Warsaw37231521997-12-11 17:23:13 +000048
49;; BUG REPORTING:
Barry Warsaw7ae77681994-12-12 20:38:05 +000050
Barry Warsawaffc0ca1997-11-03 16:59:38 +000051;; To submit bug reports, use C-c C-b. Please include a complete, but
52;; concise code sample and a recipe for reproducing the bug. Send
53;; suggestions and other comments to python-mode@python.org.
54
55;; When in a Python mode buffer, do a C-h m for more help. It's
Barry Warsaw37231521997-12-11 17:23:13 +000056;; doubtful that a texinfo manual would be very useful, but if you
57;; want to contribute one, I'll certainly accept it!
Barry Warsawb5e0ecb1995-03-14 18:32:54 +000058
Barry Warsaw37231521997-12-11 17:23:13 +000059;; TO DO LIST:
60
61;; - Better integration with pdb.py and gud-mode for debugging.
Barry Warsawb5e0ecb1995-03-14 18:32:54 +000062;; - Rewrite according to GNU Emacs Lisp standards.
Barry Warsaw9e277db1996-07-31 22:33:40 +000063;; - have py-execute-region on indented code act as if the region is
Barry Warsaw37231521997-12-11 17:23:13 +000064;; left justified. Avoids syntax errors.
65;; - add a py-goto-block-down, bound to C-c C-d
Barry Warsaw7ae77681994-12-12 20:38:05 +000066
Barry Warsaw7b0f5681995-03-08 21:33:04 +000067;;; Code:
68
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +000069(require 'comint)
Barry Warsawc72c11c1997-08-09 06:42:08 +000070(require 'custom)
Barry Warsaw8529ebb1997-12-01 20:03:12 +000071(eval-when-compile
Barry Warsaw673d05f1997-12-02 21:51:57 +000072 (require 'cl)
Barry Warsawb6c1f1f1998-03-19 22:33:06 +000073 (if (not (and (condition-case nil
74 (require 'custom)
75 (error nil))
76 ;; Stock Emacs 19.34 has a broken/old Custom library
77 ;; that does more harm than good. Fortunately, it is
78 ;; missing defcustom
79 (fboundp 'defcustom)))
Barry Warsaw673d05f1997-12-02 21:51:57 +000080 (error "STOP! STOP! STOP! STOP!
81
82The Custom library was not found or is out of date. A more current
83version is required. Please download and install the latest version
84of the Custom library from:
85
86 <http://www.dina.kvl.dk/~abraham/custom/>
87
88See the Python Mode home page for details:
89
Barry Warsaw1d5f9881998-10-28 04:08:13 +000090 <http://www.python.org/emacs/python-mode>
Barry Warsaw673d05f1997-12-02 21:51:57 +000091")))
92
Barry Warsawc72c11c1997-08-09 06:42:08 +000093
Barry Warsaw7b0f5681995-03-08 21:33:04 +000094
95;; user definable variables
96;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
Barry Warsaw7ae77681994-12-12 20:38:05 +000097
Barry Warsawc72c11c1997-08-09 06:42:08 +000098(defgroup python nil
99 "Support for the Python programming language, <http://www.python.org/>"
100 :group 'languages)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000101
Barry Warsawc72c11c1997-08-09 06:42:08 +0000102(defcustom py-python-command "python"
103 "*Shell command used to start Python interpreter."
104 :type 'string
105 :group 'python)
106
Barry Warsawa2398801998-04-09 23:28:20 +0000107(defcustom py-jpython-command "jpython"
108 "*Shell command used to start the JPython interpreter."
109 :type 'string
110 :group 'python)
111
Barry Warsaw8f972b71998-02-05 20:45:49 +0000112(defcustom py-python-command-args '("-i")
113 "*List of string arguments to be used when starting a Python shell."
114 :type '(repeat string)
115 :group 'python)
116
Barry Warsawa2398801998-04-09 23:28:20 +0000117(defcustom py-jpython-command-args '("-i")
118 "*List of string arguments to be used when starting a JPython shell."
119 :type '(repeat string)
120 :group 'python)
121
Barry Warsawc72c11c1997-08-09 06:42:08 +0000122(defcustom py-indent-offset 4
Barry Warsaw41a05c71998-08-10 16:33:12 +0000123 "*Amount of offset per level of indentation.
124`\\[py-guess-indent-offset]' can usually guess a good value when
125you're editing someone else's Python code."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000126 :type 'integer
127 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000128
Barry Warsaw742a5111998-03-13 17:29:15 +0000129(defcustom py-smart-indentation t
130 "*Should `python-mode' try to automagically set some indentation variables?
131When this variable is non-nil, two things happen when a buffer is set
132to `python-mode':
133
134 1. `py-indent-offset' is guess from existing code in the buffer.
Barry Warsaw639eea61998-03-16 18:12:13 +0000135 Only guessed values between 2 and 8 are considered. If a valid
Barry Warsaw742a5111998-03-13 17:29:15 +0000136 guess can't be made (perhaps because you are visiting a new
Barry Warsaw639eea61998-03-16 18:12:13 +0000137 file), then the value in `py-indent-offset' is used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000138
Barry Warsaw639eea61998-03-16 18:12:13 +0000139 2. `indent-tabs-mode' is turned off if `py-indent-offset' does not
140 equal `tab-width' (`indent-tabs-mode' is never turned on by
141 Python mode). This means that for newly written code, tabs are
142 only inserted in indentation if one tab is one indentation
143 level, otherwise only spaces are used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000144
Barry Warsaw8046bef1998-03-13 20:04:52 +0000145Note that both these settings occur *after* `python-mode-hook' is run,
146so if you want to defeat the automagic configuration, you must also
147set `py-smart-indentation' to nil in your `python-mode-hook'."
Barry Warsaw742a5111998-03-13 17:29:15 +0000148 :type 'boolean
149 :group 'python)
150
Barry Warsawc72c11c1997-08-09 06:42:08 +0000151(defcustom py-align-multiline-strings-p t
152 "*Flag describing how multi-line triple quoted strings are aligned.
Barry Warsaw095e9c61995-09-19 20:01:42 +0000153When this flag is non-nil, continuation lines are lined up under the
154preceding line's indentation. When this flag is nil, continuation
Barry Warsawc72c11c1997-08-09 06:42:08 +0000155lines are aligned to column zero."
156 :type '(choice (const :tag "Align under preceding line" t)
157 (const :tag "Align to column zero" nil))
158 :group 'python)
Barry Warsaw095e9c61995-09-19 20:01:42 +0000159
Barry Warsaw218eb751998-09-22 19:51:47 +0000160(defcustom py-block-comment-prefix "##"
Barry Warsaw867a32a1996-03-07 18:30:26 +0000161 "*String used by \\[comment-region] to comment out a block of code.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000162This should follow the convention for non-indenting comment lines so
163that the indentation commands won't get confused (i.e., the string
164should be of the form `#x...' where `x' is not a blank or a tab, and
Barry Warsaw218eb751998-09-22 19:51:47 +0000165`...' is arbitrary). However, this string should not end in whitespace."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000166 :type 'string
167 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000168
Barry Warsawc72c11c1997-08-09 06:42:08 +0000169(defcustom py-honor-comment-indentation t
Barry Warsaw6d627751996-03-06 18:41:38 +0000170 "*Controls how comment lines influence subsequent indentation.
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000171
Barry Warsaw6d627751996-03-06 18:41:38 +0000172When nil, all comment lines are skipped for indentation purposes, and
Barry Warsawc72c11c1997-08-09 06:42:08 +0000173if possible, a faster algorithm is used (i.e. X/Emacs 19 and beyond).
Barry Warsaw6d627751996-03-06 18:41:38 +0000174
175When t, lines that begin with a single `#' are a hint to subsequent
176line indentation. If the previous line is such a comment line (as
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000177opposed to one that starts with `py-block-comment-prefix'), then its
Barry Warsaw6d627751996-03-06 18:41:38 +0000178indentation is used as a hint for this line's indentation. Lines that
179begin with `py-block-comment-prefix' are ignored for indentation
180purposes.
181
182When not nil or t, comment lines that begin with a `#' are used as
Barry Warsawc72c11c1997-08-09 06:42:08 +0000183indentation hints, unless the comment character is in column zero."
184 :type '(choice
185 (const :tag "Skip all comment lines (fast)" nil)
186 (const :tag "Single # `sets' indentation for next line" t)
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000187 (const :tag "Single # `sets' indentation except at column zero"
188 other)
Barry Warsawc72c11c1997-08-09 06:42:08 +0000189 )
190 :group 'python)
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000191
Barry Warsaw516b6201997-08-09 06:43:20 +0000192(defcustom py-temp-directory
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000193 (let ((ok '(lambda (x)
194 (and x
195 (setq x (expand-file-name x)) ; always true
196 (file-directory-p x)
197 (file-writable-p x)
198 x))))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000199 (or (funcall ok (getenv "TMPDIR"))
200 (funcall ok "/usr/tmp")
201 (funcall ok "/tmp")
202 (funcall ok ".")
203 (error
Barry Warsaw6c6db0a1998-02-25 16:33:56 +0000204 "Couldn't find a usable temp directory -- set `py-temp-directory'")))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000205 "*Directory used for temp files created by a *Python* process.
206By default, the first directory from this list that exists and that you
207can write into: the value (if any) of the environment variable TMPDIR,
Barry Warsawc72c11c1997-08-09 06:42:08 +0000208/usr/tmp, /tmp, or the current directory."
209 :type 'string
210 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000211
Barry Warsaw516b6201997-08-09 06:43:20 +0000212(defcustom py-beep-if-tab-change t
Barry Warsaw41a05c71998-08-10 16:33:12 +0000213 "*Ring the bell if `tab-width' is changed.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000214If a comment of the form
215
216 \t# vi:set tabsize=<number>:
217
218is found before the first code line when the file is entered, and the
219current value of (the general Emacs variable) `tab-width' does not
220equal <number>, `tab-width' is set to <number>, a message saying so is
221displayed in the echo area, and if `py-beep-if-tab-change' is non-nil
Barry Warsawc72c11c1997-08-09 06:42:08 +0000222the Emacs bell is also rung as a warning."
223 :type 'boolean
224 :group 'python)
225
Barry Warsaw9981d221997-12-03 05:25:48 +0000226(defcustom py-jump-on-exception t
227 "*Jump to innermost exception frame in *Python Output* buffer.
Barry Warsaw12c92941998-08-10 21:44:37 +0000228When this variable is non-nil and an exception occurs when running
Barry Warsaw9981d221997-12-03 05:25:48 +0000229Python code synchronously in a subprocess, jump immediately to the
Barry Warsaw12c92941998-08-10 21:44:37 +0000230source code of the innermost traceback frame."
Barry Warsaw3bfed5b1998-05-19 16:25:04 +0000231 :type 'boolean
232 :group 'python)
233
234(defcustom py-ask-about-save t
235 "If not nil, ask about which buffers to save before executing some code.
236Otherwise, all modified buffers are saved without asking."
237 :type 'boolean
238 :group 'python)
Barry Warsaw9981d221997-12-03 05:25:48 +0000239
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000240(defcustom py-backspace-function 'backward-delete-char-untabify
241 "*Function called by `py-electric-backspace' when deleting backwards."
242 :type 'function
243 :group 'python)
244
245(defcustom py-delete-function 'delete-char
246 "*Function called by `py-electric-delete' when deleting forwards."
247 :type 'function
248 :group 'python)
249
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000250(defcustom py-imenu-show-method-args-p nil
251 "*Controls echoing of arguments of functions & methods in the Imenu buffer.
252When non-nil, arguments are printed."
253 :type 'boolean
254 :group 'python)
255(make-variable-buffer-local 'py-indent-offset)
256
Barry Warsawc0ecb531998-01-20 21:43:34 +0000257;; Not customizable
258(defvar py-master-file nil
259 "If non-nil, execute the named file instead of the buffer's file.
Barry Warsaw50b3eb61998-02-25 15:57:47 +0000260The intent is to allow you to set this variable in the file's local
Barry Warsawc0ecb531998-01-20 21:43:34 +0000261variable section, e.g.:
262
263 # Local Variables:
264 # py-master-file: \"master.py\"
265 # End:
266
Barry Warsaw41a05c71998-08-10 16:33:12 +0000267so that typing \\[py-execute-buffer] in that buffer executes the named
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000268master file instead of the buffer's file. If the file name has a
269relative path, the value of variable `default-directory' for the
270buffer is prepended to come up with a file name.")
Barry Warsawc0ecb531998-01-20 21:43:34 +0000271(make-variable-buffer-local 'py-master-file)
272
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000273
Barry Warsawc72c11c1997-08-09 06:42:08 +0000274
275;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
276;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT
277
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000278(defconst py-emacs-features
279 (let (features)
280 ;; NTEmacs 19.34.6 has a broken make-temp-name; it always returns
281 ;; the same string.
282 (let ((tmp1 (make-temp-name ""))
283 (tmp2 (make-temp-name "")))
284 (if (string-equal tmp1 tmp2)
285 (push 'broken-temp-names features)))
286 ;; return the features
287 features)
Barry Warsawc12c62e1997-09-04 04:18:07 +0000288 "A list of features extant in the Emacs you are using.
Barry Warsaw6ae21ad1997-11-06 14:36:49 +0000289There are many flavors of Emacs out there, with different levels of
290support for features needed by `python-mode'.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000291
Barry Warsawfb07f401997-02-24 03:37:22 +0000292(defvar python-font-lock-keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000293 (let ((kw1 (mapconcat 'identity
294 '("and" "assert" "break" "class"
295 "continue" "def" "del" "elif"
296 "else" "except" "exec" "for"
297 "from" "global" "if" "import"
298 "in" "is" "lambda" "not"
299 "or" "pass" "print" "raise"
300 "return" "while"
301 )
302 "\\|"))
303 (kw2 (mapconcat 'identity
304 '("else:" "except:" "finally:" "try:")
305 "\\|"))
306 )
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000307 (list
Barry Warsawef3c8911997-11-05 18:55:50 +0000308 ;; keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000309 (cons (concat "\\b\\(" kw1 "\\)\\b[ \n\t(]") 1)
310 ;; block introducing keywords with immediately following colons.
311 ;; Yes "except" is in both lists.
312 (cons (concat "\\b\\(" kw2 "\\)[ \n\t(]") 1)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000313 ;; classes
314 '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
315 1 font-lock-type-face)
316 ;; functions
317 '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
318 1 font-lock-function-name-face)
319 ))
Barry Warsaw62d9d6e1996-03-06 20:32:27 +0000320 "Additional expressions to highlight in Python mode.")
Barry Warsawfb07f401997-02-24 03:37:22 +0000321(put 'python-mode 'font-lock-defaults '(python-font-lock-keywords))
322
Barry Warsawe467bfb1997-11-26 05:40:58 +0000323;; have to bind py-file-queue before installing the kill-emacs-hook
Barry Warsaw7ae77681994-12-12 20:38:05 +0000324(defvar py-file-queue nil
325 "Queue of Python temp files awaiting execution.
326Currently-active file is at the head of the list.")
327
Barry Warsawc72c11c1997-08-09 06:42:08 +0000328
329;; Constants
330
Barry Warsawc72c11c1997-08-09 06:42:08 +0000331(defconst py-stringlit-re
332 (concat
Barry Warsaw751f4931998-05-19 16:06:21 +0000333 ;; These fail if backslash-quote ends the string (not worth
334 ;; fixing?). They precede the short versions so that the first two
335 ;; quotes don't look like an empty short string.
336 ;;
337 ;; (maybe raw), long single quoted triple quoted strings (SQTQ),
338 ;; with potential embedded single quotes
339 "[rR]?'''[^']*\\(\\('[^']\\|''[^']\\)[^']*\\)*'''"
340 "\\|"
341 ;; (maybe raw), long double quoted triple quoted strings (DQTQ),
342 ;; with potential embedded double quotes
343 "[rR]?\"\"\"[^\"]*\\(\\(\"[^\"]\\|\"\"[^\"]\\)[^\"]*\\)*\"\"\""
344 "\\|"
345 "[rR]?'\\([^'\n\\]\\|\\\\.\\)*'" ; single-quoted
Barry Warsawc72c11c1997-08-09 06:42:08 +0000346 "\\|" ; or
Barry Warsaw751f4931998-05-19 16:06:21 +0000347 "[rR]?\"\\([^\"\n\\]\\|\\\\.\\)*\"" ; double-quoted
Barry Warsaw41a05c71998-08-10 16:33:12 +0000348 )
349 "Regular expression matching a Python string literal.")
Barry Warsaw751f4931998-05-19 16:06:21 +0000350
Barry Warsawc72c11c1997-08-09 06:42:08 +0000351(defconst py-continued-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000352 ;; This is tricky because a trailing backslash does not mean
353 ;; continuation if it's in a comment
Barry Warsawc72c11c1997-08-09 06:42:08 +0000354 (concat
355 "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*"
Barry Warsaw41a05c71998-08-10 16:33:12 +0000356 "\\\\$")
357 "Regular expression matching Python backslash continuation lines.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000358
Barry Warsaw41a05c71998-08-10 16:33:12 +0000359(defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)"
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000360 "Regular expression matching a blank or comment line.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000361
Barry Warsawc72c11c1997-08-09 06:42:08 +0000362(defconst py-outdent-re
363 (concat "\\(" (mapconcat 'identity
364 '("else:"
365 "except\\(\\s +.*\\)?:"
366 "finally:"
367 "elif\\s +.*:")
368 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000369 "\\)")
370 "Regular expression matching statements to be dedented one level.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000371
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000372(defconst py-block-closing-keywords-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000373 "\\(return\\|raise\\|break\\|continue\\|pass\\)"
374 "Regular expression matching keywords which typically close a block.")
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000375
Barry Warsawc72c11c1997-08-09 06:42:08 +0000376(defconst py-no-outdent-re
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000377 (concat
378 "\\("
379 (mapconcat 'identity
380 (list "try:"
381 "except\\(\\s +.*\\)?:"
382 "while\\s +.*:"
383 "for\\s +.*:"
384 "if\\s +.*:"
385 "elif\\s +.*:"
386 (concat py-block-closing-keywords-re "[ \t\n]")
387 )
388 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000389 "\\)")
390 "Regular expression matching lines not to dedent after.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000391
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000392(defconst py-defun-start-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000393 "^\\([ \t]*\\)def[ \t]+\\([a-zA-Z_0-9]+\\)\\|\\(^[a-zA-Z_0-9]+\\)[ \t]*="
394 ;; If you change this, you probably have to change py-current-defun
395 ;; as well. This is only used by py-current-defun to find the name
396 ;; for add-log.el.
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000397 "Regular expression matching a function, method, or variable assignment.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000398
Barry Warsaw41a05c71998-08-10 16:33:12 +0000399(defconst py-class-start-re "^class[ \t]*\\([a-zA-Z_0-9]+\\)"
400 ;; If you change this, you probably have to change py-current-defun
401 ;; as well. This is only used by py-current-defun to find the name
402 ;; for add-log.el.
403 "Regular expression for finding a class name.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000404
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000405(defconst py-traceback-line-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000406 "[ \t]+File \"\\([^\"]+\\)\", line \\([0-9]+\\)"
407 "Regular expression that describes tracebacks.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000408
409
410
Barry Warsawc72c11c1997-08-09 06:42:08 +0000411;; Major mode boilerplate
412
Barry Warsaw7ae77681994-12-12 20:38:05 +0000413;; define a mode-specific abbrev table for those who use such things
414(defvar python-mode-abbrev-table nil
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000415 "Abbrev table in use in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000416(define-abbrev-table 'python-mode-abbrev-table nil)
417
Barry Warsaw7ae77681994-12-12 20:38:05 +0000418(defvar python-mode-hook nil
419 "*Hook called by `python-mode'.")
420
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000421;; In previous version of python-mode.el, the hook was incorrectly
422;; called py-mode-hook, and was not defvar'd. Deprecate its use.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000423(and (fboundp 'make-obsolete-variable)
424 (make-obsolete-variable 'py-mode-hook 'python-mode-hook))
425
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000426(defvar py-mode-map ()
427 "Keymap used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000428(if py-mode-map
Barry Warsawc72c11c1997-08-09 06:42:08 +0000429 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000430 (setq py-mode-map (make-sparse-keymap))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000431 ;; electric keys
432 (define-key py-mode-map ":" 'py-electric-colon)
433 ;; indentation level modifiers
434 (define-key py-mode-map "\C-c\C-l" 'py-shift-region-left)
435 (define-key py-mode-map "\C-c\C-r" 'py-shift-region-right)
436 (define-key py-mode-map "\C-c<" 'py-shift-region-left)
437 (define-key py-mode-map "\C-c>" 'py-shift-region-right)
438 ;; subprocess commands
439 (define-key py-mode-map "\C-c\C-c" 'py-execute-buffer)
Barry Warsaw820273d1998-05-19 15:54:45 +0000440 (define-key py-mode-map "\C-c\C-m" 'py-execute-import-or-reload)
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000441 (define-key py-mode-map "\C-c\C-s" 'py-execute-string)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000442 (define-key py-mode-map "\C-c|" 'py-execute-region)
Barry Warsaw820273d1998-05-19 15:54:45 +0000443 (define-key py-mode-map "\e\C-x" 'py-execute-def-or-class)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000444 (define-key py-mode-map "\C-c!" 'py-shell)
Barry Warsawa2398801998-04-09 23:28:20 +0000445 (define-key py-mode-map "\C-c\C-t" 'py-toggle-shells)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000446 ;; Caution! Enter here at your own risk. We are trying to support
447 ;; several behaviors and it gets disgusting. :-( This logic ripped
448 ;; largely from CC Mode.
449 ;;
450 ;; In XEmacs 19, Emacs 19, and Emacs 20, we use this to bind
451 ;; backwards deletion behavior to DEL, which both Delete and
452 ;; Backspace get translated to. There's no way to separate this
453 ;; behavior in a clean way, so deal with it! Besides, it's been
454 ;; this way since the dawn of time.
455 (if (not (boundp 'delete-key-deletes-forward))
456 (define-key py-mode-map "\177" 'py-electric-backspace)
457 ;; However, XEmacs 20 actually achieved enlightenment. It is
458 ;; possible to sanely define both backward and forward deletion
459 ;; behavior under X separately (TTYs are forever beyond hope, but
460 ;; who cares? XEmacs 20 does the right thing with these too).
461 (define-key py-mode-map [delete] 'py-electric-delete)
462 (define-key py-mode-map [backspace] 'py-electric-backspace))
Barry Warsaw8c4a8de1997-11-26 20:30:33 +0000463 ;; Separate M-BS from C-M-h. The former should remain
464 ;; backward-kill-word.
465 (define-key py-mode-map [(control meta h)] 'py-mark-def-or-class)
Barry Warsaw2518c671997-11-05 00:51:08 +0000466 (define-key py-mode-map "\C-c\C-k" 'py-mark-block)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000467 ;; Miscellaneous
468 (define-key py-mode-map "\C-c:" 'py-guess-indent-offset)
469 (define-key py-mode-map "\C-c\t" 'py-indent-region)
470 (define-key py-mode-map "\C-c\C-n" 'py-next-statement)
471 (define-key py-mode-map "\C-c\C-p" 'py-previous-statement)
472 (define-key py-mode-map "\C-c\C-u" 'py-goto-block-up)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000473 (define-key py-mode-map "\C-c#" 'py-comment-region)
474 (define-key py-mode-map "\C-c?" 'py-describe-mode)
475 (define-key py-mode-map "\C-c\C-hm" 'py-describe-mode)
Barry Warsawab0e86c1998-05-19 15:31:46 +0000476 (define-key py-mode-map "\e\C-a" 'py-beginning-of-def-or-class)
477 (define-key py-mode-map "\e\C-e" 'py-end-of-def-or-class)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000478 (define-key py-mode-map "\C-c-" 'py-up-exception)
479 (define-key py-mode-map "\C-c=" 'py-down-exception)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000480 ;; information
481 (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report)
482 (define-key py-mode-map "\C-c\C-v" 'py-version)
483 ;; py-newline-and-indent mappings
Barry Warsaw82aecb91998-01-21 05:14:24 +0000484 (define-key py-mode-map "\n" 'py-newline-and-indent)
485 (define-key py-mode-map "\C-m" 'py-newline-and-indent)
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000486 ;; shadow global bindings for newline-and-indent w/ the py- version.
487 ;; BAW - this is extremely bad form, but I'm not going to change it
488 ;; for now.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000489 (mapcar #'(lambda (key)
490 (define-key py-mode-map key 'py-newline-and-indent))
491 (where-is-internal 'newline-and-indent))
492 )
493
494(defvar py-mode-output-map nil
Barry Warsaw41a05c71998-08-10 16:33:12 +0000495 "Keymap used in *Python Output* buffers.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000496(if py-mode-output-map
497 nil
498 (setq py-mode-output-map (make-sparse-keymap))
499 (define-key py-mode-output-map [button2] 'py-mouseto-exception)
500 (define-key py-mode-output-map "\C-c\C-c" 'py-goto-exception)
501 ;; TBD: Disable all self-inserting keys. This is bogus, we should
502 ;; really implement this as *Python Output* buffer being read-only
503 (mapcar #' (lambda (key)
504 (define-key py-mode-output-map key
505 #'(lambda () (interactive) (beep))))
506 (where-is-internal 'self-insert-command))
Barry Warsaw850437a1995-03-08 21:50:28 +0000507 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000508
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +0000509(defvar py-shell-map nil
510 "Keymap used in *Python* shell buffers.")
511(if py-shell-map
512 nil
513 (setq py-shell-map (copy-keymap comint-mode-map))
514 (define-key py-shell-map [tab] 'tab-to-tab-stop)
515 (define-key py-shell-map "\C-c-" 'py-up-exception)
516 (define-key py-shell-map "\C-c=" 'py-down-exception)
517 )
518
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000519(defvar py-mode-syntax-table nil
520 "Syntax table used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000521(if py-mode-syntax-table
Barry Warsawc72c11c1997-08-09 06:42:08 +0000522 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000523 (setq py-mode-syntax-table (make-syntax-table))
Barry Warsawc72c11c1997-08-09 06:42:08 +0000524 (modify-syntax-entry ?\( "()" py-mode-syntax-table)
525 (modify-syntax-entry ?\) ")(" py-mode-syntax-table)
526 (modify-syntax-entry ?\[ "(]" py-mode-syntax-table)
527 (modify-syntax-entry ?\] ")[" py-mode-syntax-table)
528 (modify-syntax-entry ?\{ "(}" py-mode-syntax-table)
529 (modify-syntax-entry ?\} "){" py-mode-syntax-table)
530 ;; Add operator symbols misassigned in the std table
531 (modify-syntax-entry ?\$ "." py-mode-syntax-table)
532 (modify-syntax-entry ?\% "." py-mode-syntax-table)
533 (modify-syntax-entry ?\& "." py-mode-syntax-table)
534 (modify-syntax-entry ?\* "." py-mode-syntax-table)
535 (modify-syntax-entry ?\+ "." py-mode-syntax-table)
536 (modify-syntax-entry ?\- "." py-mode-syntax-table)
537 (modify-syntax-entry ?\/ "." py-mode-syntax-table)
538 (modify-syntax-entry ?\< "." py-mode-syntax-table)
539 (modify-syntax-entry ?\= "." py-mode-syntax-table)
540 (modify-syntax-entry ?\> "." py-mode-syntax-table)
541 (modify-syntax-entry ?\| "." py-mode-syntax-table)
542 ;; For historical reasons, underscore is word class instead of
543 ;; symbol class. GNU conventions say it should be symbol class, but
544 ;; there's a natural conflict between what major mode authors want
545 ;; and what users expect from `forward-word' and `backward-word'.
546 ;; Guido and I have hashed this out and have decided to keep
547 ;; underscore in word class. If you're tempted to change it, try
548 ;; binding M-f and M-b to py-forward-into-nomenclature and
549 ;; py-backward-into-nomenclature instead.
550 (modify-syntax-entry ?\_ "w" py-mode-syntax-table)
551 ;; Both single quote and double quote are string delimiters
552 (modify-syntax-entry ?\' "\"" py-mode-syntax-table)
553 (modify-syntax-entry ?\" "\"" py-mode-syntax-table)
554 ;; backquote is open and close paren
555 (modify-syntax-entry ?\` "$" py-mode-syntax-table)
556 ;; comment delimiters
557 (modify-syntax-entry ?\# "<" py-mode-syntax-table)
558 (modify-syntax-entry ?\n ">" py-mode-syntax-table)
559 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000560
Barry Warsawb3e81d51996-09-04 15:12:42 +0000561
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000562
Barry Warsawbc3760b1998-09-14 16:16:18 +0000563;; Utilities
564
565(defmacro py-safe (&rest body)
566 "Safely execute BODY, return nil if an error occurred."
567 (` (condition-case nil
568 (progn (,@ body))
569 (error nil))))
570
571(defsubst py-keep-region-active ()
572 "Keep the region active in XEmacs."
573 ;; Ignore byte-compiler warnings you might see. Also note that
574 ;; FSF's Emacs 19 does it differently; its policy doesn't require us
575 ;; to take explicit action.
576 (and (boundp 'zmacs-region-stays)
577 (setq zmacs-region-stays t)))
578
579(defsubst py-point (position)
580 "Returns the value of point at certain commonly referenced POSITIONs.
581POSITION can be one of the following symbols:
582
583 bol -- beginning of line
584 eol -- end of line
585 bod -- beginning of def or class
586 eod -- end of def or class
587 bob -- beginning of buffer
588 eob -- end of buffer
589 boi -- back to indentation
590 bos -- beginning of statement
591
592This function does not modify point or mark."
593 (let ((here (point)))
594 (cond
595 ((eq position 'bol) (beginning-of-line))
596 ((eq position 'eol) (end-of-line))
597 ((eq position 'bod) (py-beginning-of-def-or-class))
598 ((eq position 'eod) (py-end-of-def-or-class))
599 ;; Kind of funny, I know, but useful for py-up-exception.
600 ((eq position 'bob) (beginning-of-buffer))
601 ((eq position 'eob) (end-of-buffer))
602 ((eq position 'boi) (back-to-indentation))
603 ((eq position 'bos) (py-goto-initial-line))
604 (t (error "Unknown buffer position requested: %s" position))
605 )
606 (prog1
607 (point)
608 (goto-char here))))
609
610(defsubst py-highlight-line (from to file line)
611 (cond
612 ((fboundp 'make-extent)
613 ;; XEmacs
614 (let ((e (make-extent from to)))
615 (set-extent-property e 'mouse-face 'highlight)
616 (set-extent-property e 'py-exc-info (cons file line))
617 (set-extent-property e 'keymap py-mode-output-map)))
618 (t
619 ;; Emacs -- Please port this!
620 )
621 ))
622
623(defun py-in-literal (&optional lim)
624 "Return non-nil if point is in a Python literal (a comment or string).
625Optional argument LIM indicates the beginning of the containing form,
626i.e. the limit on how far back to scan."
627 ;; This is the version used for non-XEmacs, which has a nicer
628 ;; interface.
629 ;;
630 ;; WARNING: Watch out for infinite recursion.
631 (let* ((lim (or lim (py-point 'bod)))
632 (state (parse-partial-sexp lim (point))))
633 (cond
634 ((nth 3 state) 'string)
635 ((nth 4 state) 'comment)
636 (t nil))))
637
638;; XEmacs has a built-in function that should make this much quicker.
639;; In this case, lim is ignored
640(defun py-fast-in-literal (&optional lim)
641 "Fast version of `py-in-literal', used only by XEmacs.
642Optional LIM is ignored."
643 ;; don't have to worry about context == 'block-comment
644 (buffer-syntactic-context))
645
646(if (fboundp 'buffer-syntactic-context)
647 (defalias 'py-in-literal 'py-fast-in-literal))
648
649
650
Barry Warsaw42f707f1996-07-29 21:05:05 +0000651;; Menu definitions, only relevent if you have the easymenu.el package
652;; (standard in the latest Emacs 19 and XEmacs 19 distributions).
Barry Warsaw5490a061996-08-06 15:43:33 +0000653(defvar py-menu nil
654 "Menu for Python Mode.
Barry Warsawc72c11c1997-08-09 06:42:08 +0000655This menu will get created automatically if you have the `easymenu'
656package. Note that the latest X/Emacs releases contain this package.")
Barry Warsaw5490a061996-08-06 15:43:33 +0000657
Barry Warsawc72c11c1997-08-09 06:42:08 +0000658(and (py-safe (require 'easymenu) t)
659 (easy-menu-define
660 py-menu py-mode-map "Python Mode menu"
661 '("Python"
662 ["Comment Out Region" py-comment-region (mark)]
663 ["Uncomment Region" (py-comment-region (point) (mark) '(4)) (mark)]
664 "-"
665 ["Mark current block" py-mark-block t]
Barry Warsaw2518c671997-11-05 00:51:08 +0000666 ["Mark current def" py-mark-def-or-class t]
667 ["Mark current class" (py-mark-def-or-class t) t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000668 "-"
669 ["Shift region left" py-shift-region-left (mark)]
670 ["Shift region right" py-shift-region-right (mark)]
671 "-"
Barry Warsaw820273d1998-05-19 15:54:45 +0000672 ["Import/reload file" py-execute-import-or-reload t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000673 ["Execute buffer" py-execute-buffer t]
674 ["Execute region" py-execute-region (mark)]
Barry Warsaw820273d1998-05-19 15:54:45 +0000675 ["Execute def or class" py-execute-def-or-class (mark)]
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000676 ["Execute string" py-execute-string t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000677 ["Start interpreter..." py-shell t]
678 "-"
679 ["Go to start of block" py-goto-block-up t]
Barry Warsawab0e86c1998-05-19 15:31:46 +0000680 ["Go to start of class" (py-beginning-of-def-or-class t) t]
681 ["Move to end of class" (py-end-of-def-or-class t) t]
682 ["Move to start of def" py-beginning-of-def-or-class t]
683 ["Move to end of def" py-end-of-def-or-class t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000684 "-"
685 ["Describe mode" py-describe-mode t]
686 )))
Barry Warsaw42f707f1996-07-29 21:05:05 +0000687
Barry Warsaw81437461996-08-01 19:48:02 +0000688
689
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000690;; Imenu definitions
691(defvar py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000692 (concat ; <<classes>>
693 "\\(" ;
694 "^[ \t]*" ; newline and maybe whitespace
695 "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name
696 ; possibly multiple superclasses
Barry Warsaw3179fe01998-04-04 21:36:53 +0000697 "\\([ \t]*\\((\\([a-zA-Z0-9_,. \t\n]\\)*)\\)?\\)"
Barry Warsaw81437461996-08-01 19:48:02 +0000698 "[ \t]*:" ; and the final :
699 "\\)" ; >>classes<<
700 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000701 "Regexp for Python classes for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000702 )
703
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000704(defvar py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000705 (concat ; <<methods and functions>>
706 "\\(" ;
707 "^[ \t]*" ; new line and maybe whitespace
708 "\\(def[ \t]+" ; function definitions start with def
709 "\\([a-zA-Z0-9_]+\\)" ; name is here
710 ; function arguments...
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000711;; "[ \t]*(\\([-+/a-zA-Z0-9_=,\* \t\n.()\"'#]*\\))"
712 "[ \t]*(\\([^:#]*\\))"
Barry Warsaw81437461996-08-01 19:48:02 +0000713 "\\)" ; end of def
714 "[ \t]*:" ; and then the :
715 "\\)" ; >>methods and functions<<
716 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000717 "Regexp for Python methods/functions for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000718 )
719
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000720(defvar py-imenu-method-no-arg-parens '(2 8)
721 "Indices into groups of the Python regexp for use with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000722
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000723Using these values will result in smaller Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000724functions are not listed.
725
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000726See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000727information.")
728
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000729(defvar py-imenu-method-arg-parens '(2 7)
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000730 "Indices into groups of the Python regexp for use with imenu.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000731Using these values will result in large Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000732functions are listed.
733
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000734See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000735information.")
736
737;; Note that in this format, this variable can still be used with the
738;; imenu--generic-function. Otherwise, there is no real reason to have
739;; it.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000740(defvar py-imenu-generic-expression
Barry Warsaw81437461996-08-01 19:48:02 +0000741 (cons
742 (concat
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000743 py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000744 "\\|" ; or...
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000745 py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000746 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000747 py-imenu-method-no-arg-parens)
748 "Generic Python expression which may be used directly with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000749Used by setting the variable `imenu-generic-expression' to this value.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000750Also, see the function \\[py-imenu-create-index] for a better
751alternative for finding the index.")
Barry Warsaw81437461996-08-01 19:48:02 +0000752
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000753;; These next two variables are used when searching for the Python
Barry Warsaw81437461996-08-01 19:48:02 +0000754;; class/definitions. Just saving some time in accessing the
755;; generic-python-expression, really.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000756(defvar py-imenu-generic-regexp nil)
757(defvar py-imenu-generic-parens nil)
Barry Warsaw81437461996-08-01 19:48:02 +0000758
759
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000760(defun py-imenu-create-index-function ()
761 "Python interface function for the Imenu package.
762Finds all Python classes and functions/methods. Calls function
763\\[py-imenu-create-index-engine]. See that function for the details
764of how this works."
765 (setq py-imenu-generic-regexp (car py-imenu-generic-expression)
766 py-imenu-generic-parens (if py-imenu-show-method-args-p
767 py-imenu-method-arg-parens
768 py-imenu-method-no-arg-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000769 (goto-char (point-min))
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000770 ;; Warning: When the buffer has no classes or functions, this will
771 ;; return nil, which seems proper according to the Imenu API, but
772 ;; causes an error in the XEmacs port of Imenu. Sigh.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000773 (py-imenu-create-index-engine nil))
Barry Warsaw81437461996-08-01 19:48:02 +0000774
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000775(defun py-imenu-create-index-engine (&optional start-indent)
776 "Function for finding Imenu definitions in Python.
Barry Warsaw81437461996-08-01 19:48:02 +0000777
778Finds all definitions (classes, methods, or functions) in a Python
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000779file for the Imenu package.
Barry Warsaw81437461996-08-01 19:48:02 +0000780
781Returns a possibly nested alist of the form
782
783 (INDEX-NAME . INDEX-POSITION)
784
785The second element of the alist may be an alist, producing a nested
786list as in
787
788 (INDEX-NAME . INDEX-ALIST)
789
790This function should not be called directly, as it calls itself
791recursively and requires some setup. Rather this is the engine for
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000792the function \\[py-imenu-create-index-function].
Barry Warsaw81437461996-08-01 19:48:02 +0000793
794It works recursively by looking for all definitions at the current
795indention level. When it finds one, it adds it to the alist. If it
796finds a definition at a greater indentation level, it removes the
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000797previous definition from the alist. In its place it adds all
Barry Warsaw81437461996-08-01 19:48:02 +0000798definitions found at the next indentation level. When it finds a
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000799definition that is less indented then the current level, it returns
800the alist it has created thus far.
Barry Warsaw81437461996-08-01 19:48:02 +0000801
802The optional argument START-INDENT indicates the starting indentation
803at which to continue looking for Python classes, methods, or
804functions. If this is not supplied, the function uses the indentation
805of the first definition found."
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000806 (let (index-alist
807 sub-method-alist
Barry Warsaw81437461996-08-01 19:48:02 +0000808 looking-p
809 def-name prev-name
810 cur-indent def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000811 (class-paren (first py-imenu-generic-parens))
812 (def-paren (second py-imenu-generic-parens)))
Barry Warsaw81437461996-08-01 19:48:02 +0000813 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000814 (re-search-forward py-imenu-generic-regexp (point-max) t))
Barry Warsaw81437461996-08-01 19:48:02 +0000815 (while looking-p
816 (save-excursion
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000817 ;; used to set def-name to this value but generic-extract-name
818 ;; is new to imenu-1.14. this way it still works with
819 ;; imenu-1.11
820 ;;(imenu--generic-extract-name py-imenu-generic-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000821 (let ((cur-paren (if (match-beginning class-paren)
822 class-paren def-paren)))
823 (setq def-name
Barry Warsawc8520351997-11-26 06:14:40 +0000824 (buffer-substring-no-properties (match-beginning cur-paren)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000825 (match-end cur-paren))))
Barry Warsaw93c88cc1998-08-18 02:00:44 +0000826 (save-match-data
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000827 (py-beginning-of-def-or-class 'either))
Barry Warsaw81437461996-08-01 19:48:02 +0000828 (beginning-of-line)
829 (setq cur-indent (current-indentation)))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000830 ;; HACK: want to go to the next correct definition location. We
831 ;; explicitly list them here but it would be better to have them
832 ;; in a list.
Barry Warsaw81437461996-08-01 19:48:02 +0000833 (setq def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000834 (or (match-beginning class-paren)
835 (match-beginning def-paren)))
Barry Warsaw81437461996-08-01 19:48:02 +0000836 ;; if we don't have a starting indent level, take this one
837 (or start-indent
838 (setq start-indent cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000839 ;; if we don't have class name yet, take this one
840 (or prev-name
841 (setq prev-name def-name))
Barry Warsaw81437461996-08-01 19:48:02 +0000842 ;; what level is the next definition on? must be same, deeper
843 ;; or shallower indentation
844 (cond
845 ;; at the same indent level, add it to the list...
846 ((= start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000847 (push (cons def-name def-pos) index-alist))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000848 ;; deeper indented expression, recurse
Barry Warsaw81437461996-08-01 19:48:02 +0000849 ((< start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000850 ;; the point is currently on the expression we're supposed to
851 ;; start on, so go back to the last expression. The recursive
852 ;; call will find this place again and add it to the correct
853 ;; list
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000854 (re-search-backward py-imenu-generic-regexp (point-min) 'move)
855 (setq sub-method-alist (py-imenu-create-index-engine cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000856 (if sub-method-alist
857 ;; we put the last element on the index-alist on the start
858 ;; of the submethod alist so the user can still get to it.
859 (let ((save-elmt (pop index-alist)))
Barry Warsawc8520351997-11-26 06:14:40 +0000860 (push (cons prev-name
Barry Warsaw81437461996-08-01 19:48:02 +0000861 (cons save-elmt sub-method-alist))
862 index-alist))))
Barry Warsaw81437461996-08-01 19:48:02 +0000863 ;; found less indented expression, we're done.
864 (t
865 (setq looking-p nil)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000866 (re-search-backward py-imenu-generic-regexp (point-min) t)))
867 ;; end-cond
Barry Warsaw81437461996-08-01 19:48:02 +0000868 (setq prev-name def-name)
869 (and looking-p
870 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000871 (re-search-forward py-imenu-generic-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000872 (point-max) 'move))))
873 (nreverse index-alist)))
874
Barry Warsaw42f707f1996-07-29 21:05:05 +0000875
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000876;;;###autoload
Barry Warsaw7ae77681994-12-12 20:38:05 +0000877(defun python-mode ()
878 "Major mode for editing Python files.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000879To submit a problem report, enter `\\[py-submit-bug-report]' from a
880`python-mode' buffer. Do `\\[py-describe-mode]' for detailed
881documentation. To see what version of `python-mode' you are running,
882enter `\\[py-version]'.
883
884This mode knows about Python indentation, tokens, comments and
885continuation lines. Paragraphs are separated by blank lines only.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000886
887COMMANDS
888\\{py-mode-map}
889VARIABLES
890
Barry Warsaw42f707f1996-07-29 21:05:05 +0000891py-indent-offset\t\tindentation increment
Barry Warsaw41a05c71998-08-10 16:33:12 +0000892py-block-comment-prefix\t\tcomment string used by `comment-region'
Barry Warsaw42f707f1996-07-29 21:05:05 +0000893py-python-command\t\tshell command to invoke Python interpreter
Barry Warsaw42f707f1996-07-29 21:05:05 +0000894py-temp-directory\t\tdirectory used for temp files (if needed)
Barry Warsaw41a05c71998-08-10 16:33:12 +0000895py-beep-if-tab-change\t\tring the bell if `tab-width' is changed"
Barry Warsaw7ae77681994-12-12 20:38:05 +0000896 (interactive)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000897 ;; set up local variables
Barry Warsaw7ae77681994-12-12 20:38:05 +0000898 (kill-all-local-variables)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000899 (make-local-variable 'font-lock-defaults)
900 (make-local-variable 'paragraph-separate)
901 (make-local-variable 'paragraph-start)
902 (make-local-variable 'require-final-newline)
903 (make-local-variable 'comment-start)
Barry Warsaw5c8bef11996-12-17 21:56:10 +0000904 (make-local-variable 'comment-end)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000905 (make-local-variable 'comment-start-skip)
906 (make-local-variable 'comment-column)
Barry Warsaw003932a1998-07-07 15:11:24 +0000907 (make-local-variable 'comment-indent-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000908 (make-local-variable 'indent-region-function)
909 (make-local-variable 'indent-line-function)
Barry Warsawb3e81d51996-09-04 15:12:42 +0000910 (make-local-variable 'add-log-current-defun-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000911 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +0000912 (set-syntax-table py-mode-syntax-table)
Barry Warsaw003932a1998-07-07 15:11:24 +0000913 (setq major-mode 'python-mode
914 mode-name "Python"
915 local-abbrev-table python-mode-abbrev-table
916 font-lock-defaults '(python-font-lock-keywords)
917 paragraph-separate "^[ \t]*$"
918 paragraph-start "^[ \t]*$"
919 require-final-newline t
920 comment-start "# "
921 comment-end ""
922 comment-start-skip "# *"
923 comment-column 40
924 comment-indent-function 'py-comment-indent-function
925 indent-region-function 'py-indent-region
926 indent-line-function 'py-indent-line
Barry Warsawb3e81d51996-09-04 15:12:42 +0000927 ;; tell add-log.el how to find the current function/method/variable
928 add-log-current-defun-function 'py-current-defun
Barry Warsawb1f89511996-09-03 16:38:30 +0000929 )
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000930 (use-local-map py-mode-map)
Barry Warsaw42f707f1996-07-29 21:05:05 +0000931 ;; add the menu
932 (if py-menu
933 (easy-menu-add py-menu))
Barry Warsaw57697af1995-09-14 20:01:14 +0000934 ;; Emacs 19 requires this
Barry Warsawc72c11c1997-08-09 06:42:08 +0000935 (if (boundp 'comment-multi-line)
Barry Warsaw57697af1995-09-14 20:01:14 +0000936 (setq comment-multi-line nil))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000937 ;; Install Imenu if available
Barry Warsaw742a5111998-03-13 17:29:15 +0000938 (when (py-safe (require 'imenu))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000939 (setq imenu-create-index-function #'py-imenu-create-index-function)
940 (setq imenu-generic-expression py-imenu-generic-expression)
Barry Warsaw742a5111998-03-13 17:29:15 +0000941 (if (fboundp 'imenu-add-to-menubar)
942 (imenu-add-to-menubar (format "%s-%s" "IM" mode-name)))
943 )
944 ;; Run the mode hook. Note that py-mode-hook is deprecated.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000945 (if python-mode-hook
946 (run-hooks 'python-mode-hook)
Barry Warsaw742a5111998-03-13 17:29:15 +0000947 (run-hooks 'py-mode-hook))
948 ;; Now do the automagical guessing
949 (if py-smart-indentation
950 (let ((offset py-indent-offset))
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000951 ;; It's okay if this fails to guess a good value
Barry Warsaw742a5111998-03-13 17:29:15 +0000952 (if (and (py-safe (py-guess-indent-offset))
953 (<= py-indent-offset 8)
954 (>= py-indent-offset 2))
955 (setq offset py-indent-offset))
956 (setq py-indent-offset offset)
Barry Warsaw639eea61998-03-16 18:12:13 +0000957 ;; Only turn indent-tabs-mode off if tab-width !=
958 ;; py-indent-offset. Never turn it on, because the user must
959 ;; have explicitly turned it off.
960 (if (/= tab-width py-indent-offset)
961 (setq indent-tabs-mode nil))
Barry Warsaw742a5111998-03-13 17:29:15 +0000962 )))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000963
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000964
Barry Warsawb91b7431995-03-14 15:55:20 +0000965;; electric characters
Barry Warsaw3874a3d1995-03-14 22:05:53 +0000966(defun py-outdent-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +0000967 "Returns non-nil if the current line should dedent one level."
Barry Warsaw3874a3d1995-03-14 22:05:53 +0000968 (save-excursion
969 (and (progn (back-to-indentation)
970 (looking-at py-outdent-re))
Barry Warsaw1a1c6bb1999-01-09 17:22:38 +0000971 ;; short circuit infloop on illegal construct
972 (not (bobp))
Barry Warsawf06777d1998-01-21 05:36:18 +0000973 (progn (forward-line -1)
974 (py-goto-initial-line)
975 (back-to-indentation)
Barry Warsaw3874a3d1995-03-14 22:05:53 +0000976 (while (or (looking-at py-blank-or-comment-re)
977 (bobp))
978 (backward-to-indentation 1))
979 (not (looking-at py-no-outdent-re)))
980 )))
981
Barry Warsawb91b7431995-03-14 15:55:20 +0000982(defun py-electric-colon (arg)
983 "Insert a colon.
Barry Warsaw41a05c71998-08-10 16:33:12 +0000984In certain cases the line is dedented appropriately. If a numeric
985argument ARG is provided, that many colons are inserted
986non-electrically. Electric behavior is inhibited inside a string or
987comment."
Barry Warsawb91b7431995-03-14 15:55:20 +0000988 (interactive "P")
989 (self-insert-command (prefix-numeric-value arg))
Barry Warsaw0c6563f1995-09-14 20:57:02 +0000990 ;; are we in a string or comment?
991 (if (save-excursion
992 (let ((pps (parse-partial-sexp (save-excursion
Barry Warsawab0e86c1998-05-19 15:31:46 +0000993 (py-beginning-of-def-or-class)
Barry Warsaw0c6563f1995-09-14 20:57:02 +0000994 (point))
995 (point))))
996 (not (or (nth 3 pps) (nth 4 pps)))))
997 (save-excursion
998 (let ((here (point))
999 (outdent 0)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001000 (indent (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001001 (if (and (not arg)
1002 (py-outdent-p)
1003 (= indent (save-excursion
Barry Warsawa7661821996-08-02 16:22:43 +00001004 (py-next-statement -1)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001005 (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001006 )
1007 (setq outdent py-indent-offset))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001008 ;; Don't indent, only dedent. This assumes that any lines
1009 ;; that are already dedented relative to
1010 ;; py-compute-indentation were put there on purpose. It's
1011 ;; highly annoying to have `:' indent for you. Use TAB, C-c
1012 ;; C-l or C-c C-r to adjust. TBD: Is there a better way to
1013 ;; determine this???
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001014 (if (< (current-indentation) indent) nil
1015 (goto-char here)
1016 (beginning-of-line)
1017 (delete-horizontal-space)
1018 (indent-to (- indent outdent))
1019 )))))
Barry Warsawb91b7431995-03-14 15:55:20 +00001020
1021
Barry Warsawa97a3f31997-11-04 18:47:06 +00001022;; Python subprocess utilities and filters
1023(defun py-execute-file (proc filename)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001024 "Send to Python interpreter process PROC \"execfile('FILENAME')\".
1025Make that process's buffer visible and force display. Also make
1026comint believe the user typed this string so that
1027`kill-output-from-shell' does The Right Thing."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001028 (let ((curbuf (current-buffer))
1029 (procbuf (process-buffer proc))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001030; (comint-scroll-to-bottom-on-output t)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001031 (msg (format "## working on region in file %s...\n" filename))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001032 (cmd (format "execfile(r'%s')\n" filename)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001033 (unwind-protect
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001034 (save-excursion
Barry Warsawa97a3f31997-11-04 18:47:06 +00001035 (set-buffer procbuf)
1036 (goto-char (point-max))
1037 (move-marker (process-mark proc) (point))
1038 (funcall (process-filter proc) proc msg))
1039 (set-buffer curbuf))
1040 (process-send-string proc cmd)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001041
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001042(defun py-comint-output-filter-function (string)
1043 "Watch output for Python prompt and exec next file waiting in queue.
1044This function is appropriate for `comint-output-filter-functions'."
Barry Warsaw014e0e21998-11-17 19:24:47 +00001045 ;; TBD: this should probably use split-string
Barry Warsaw4f94c731998-09-25 19:40:10 +00001046 (when (and (or (string-equal string ">>> ")
Barry Warsaw4f94c731998-09-25 19:40:10 +00001047 (and (>= (length string) 5)
1048 (string-equal (substring string -5) "\n>>> ")))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001049 py-file-queue)
1050 (py-safe (delete-file (car py-file-queue)))
1051 (setq py-file-queue (cdr py-file-queue))
1052 (if py-file-queue
1053 (let ((pyproc (get-buffer-process (current-buffer))))
1054 (py-execute-file pyproc (car py-file-queue))))
1055 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001056
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001057(defun py-postprocess-output-buffer (buf)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001058 "Highlight exceptions found in BUF.
1059If an exception occurred return t, otherwise return nil. BUF must exist."
Barry Warsawf9b99f41998-03-26 16:08:59 +00001060 (let (line file bol err-p)
Barry Warsaw9981d221997-12-03 05:25:48 +00001061 (save-excursion
1062 (set-buffer buf)
1063 (beginning-of-buffer)
1064 (while (re-search-forward py-traceback-line-re nil t)
1065 (setq file (match-string 1)
1066 line (string-to-int (match-string 2))
1067 bol (py-point 'bol))
Barry Warsawf9b99f41998-03-26 16:08:59 +00001068 (py-highlight-line bol (py-point 'eol) file line)))
1069 (when (and py-jump-on-exception line)
1070 (beep)
1071 (py-jump-to-exception file line)
1072 (setq err-p t))
1073 err-p))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001074
Barry Warsaw9981d221997-12-03 05:25:48 +00001075
Barry Warsawa97a3f31997-11-04 18:47:06 +00001076
1077;;; Subprocess commands
1078
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001079;; only used when (memq 'broken-temp-names py-emacs-features)
1080(defvar py-serial-number 0)
1081(defvar py-exception-buffer nil)
1082(defconst py-output-buffer "*Python Output*")
Barry Warsawa2398801998-04-09 23:28:20 +00001083(make-variable-buffer-local 'py-output-buffer)
1084
1085;; for toggling between CPython and JPython
1086(defvar py-which-shell py-python-command)
1087(defvar py-which-args py-python-command-args)
1088(defvar py-which-bufname "Python")
1089(make-variable-buffer-local 'py-which-shell)
1090(make-variable-buffer-local 'py-which-args)
1091(make-variable-buffer-local 'py-which-bufname)
1092
1093(defun py-toggle-shells (arg)
1094 "Toggles between the CPython and JPython shells.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001095With positive argument ARG (interactively \\[universal-argument]),
1096uses the CPython shell, with negative ARG uses the JPython shell, and
1097with a zero argument, toggles the shell."
Barry Warsawa2398801998-04-09 23:28:20 +00001098 (interactive "P")
1099 ;; default is to toggle
1100 (if (null arg)
1101 (setq arg 0))
1102 ;; toggle if zero
1103 (if (= arg 0)
1104 (if (string-equal py-which-bufname "Python")
1105 (setq arg -1)
1106 (setq arg 1)))
1107 (let (msg)
1108 (cond
1109 ((< 0 arg)
1110 ;; set to CPython
1111 (setq py-which-shell py-python-command
1112 py-which-args py-python-command-args
1113 py-which-bufname "Python"
1114 msg "CPython"
1115 mode-name "Python"))
1116 ((> 0 arg)
1117 (setq py-which-shell py-jpython-command
1118 py-which-args py-jpython-command-args
1119 py-which-bufname "JPython"
1120 msg "JPython"
1121 mode-name "JPython"))
1122 )
Barry Warsawea609c11998-04-10 16:08:26 +00001123 (message "Using the %s shell" msg)
Barry Warsawa2398801998-04-09 23:28:20 +00001124 (setq py-output-buffer (format "*%s Output*" py-which-bufname))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001125
Barry Warsawa97a3f31997-11-04 18:47:06 +00001126;;;###autoload
1127(defun py-shell ()
1128 "Start an interactive Python interpreter in another window.
1129This is like Shell mode, except that Python is running in the window
1130instead of a shell. See the `Interactive Shell' and `Shell Mode'
1131sections of the Emacs manual for details, especially for the key
1132bindings active in the `*Python*' buffer.
1133
Barry Warsawa2398801998-04-09 23:28:20 +00001134Note: You can toggle between using the CPython interpreter and the
1135JPython interpreter by hitting \\[py-toggle-shells]. This toggles
1136buffer local variables which control whether all your subshell
1137interactions happen to the `*JPython*' or `*Python*' buffers (the
1138latter is the name used for the CPython buffer).
1139
Barry Warsawa97a3f31997-11-04 18:47:06 +00001140Warning: Don't use an interactive Python if you change sys.ps1 or
1141sys.ps2 from their default values, or if you're running code that
1142prints `>>> ' or `... ' at the start of a line. `python-mode' can't
1143distinguish your output from Python's output, and assumes that `>>> '
1144at the start of a line is a prompt from Python. Similarly, the Emacs
1145Shell mode code assumes that both `>>> ' and `... ' at the start of a
1146line are Python prompts. Bad things can happen if you fool either
1147mode.
1148
1149Warning: If you do any editing *in* the process buffer *while* the
1150buffer is accepting output from Python, do NOT attempt to `undo' the
1151changes. Some of the output (nowhere near the parts you changed!) may
1152be lost if you do. This appears to be an Emacs bug, an unfortunate
1153interaction between undo and process filters; the same problem exists in
1154non-Python process buffers using the default (Emacs-supplied) process
1155filter."
1156 ;; BAW - should undo be disabled in the python process buffer, if
1157 ;; this bug still exists?
1158 (interactive)
Barry Warsaw2518c671997-11-05 00:51:08 +00001159 (switch-to-buffer-other-window
Barry Warsawa2398801998-04-09 23:28:20 +00001160 (apply 'make-comint py-which-bufname py-which-shell nil py-which-args))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001161 (make-local-variable 'comint-prompt-regexp)
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001162 (setq comint-prompt-regexp "^>>> \\|^[.][.][.] \\|^(pdb) ")
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001163 (add-hook 'comint-output-filter-functions 'py-comint-output-filter-function)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001164 (set-syntax-table py-mode-syntax-table)
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +00001165 (use-local-map py-shell-map)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001166 )
Barry Warsawa97a3f31997-11-04 18:47:06 +00001167
Barry Warsawa97a3f31997-11-04 18:47:06 +00001168(defun py-clear-queue ()
1169 "Clear the queue of temporary files waiting to execute."
1170 (interactive)
1171 (let ((n (length py-file-queue)))
1172 (mapcar 'delete-file py-file-queue)
1173 (setq py-file-queue nil)
1174 (message "%d pending files de-queued." n)))
1175
Barry Warsaw820273d1998-05-19 15:54:45 +00001176
Barry Warsawa97a3f31997-11-04 18:47:06 +00001177(defun py-execute-region (start end &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001178 "Execute the region in a Python interpreter.
1179
Barry Warsawa97a3f31997-11-04 18:47:06 +00001180The region is first copied into a temporary file (in the directory
1181`py-temp-directory'). If there is no Python interpreter shell
1182running, this file is executed synchronously using
Barry Warsaw41a05c71998-08-10 16:33:12 +00001183`shell-command-on-region'. If the program is long running, use
1184\\[universal-argument] to run the command asynchronously in its own
1185buffer.
1186
1187When this function is used programmatically, arguments START and END
1188specify the region to execute, and optional third argument ASYNC, if
1189non-nil, specifies to run the command asynchronously in its own
1190buffer.
Barry Warsawa97a3f31997-11-04 18:47:06 +00001191
1192If the Python interpreter shell is running, the region is execfile()'d
1193in that shell. If you try to execute regions too quickly,
1194`python-mode' will queue them up and execute them one at a time when
1195it sees a `>>> ' prompt from Python. Each time this happens, the
1196process buffer is popped into a window (if it's not already in some
1197window) so you can see it, and a comment of the form
1198
1199 \t## working on region in file <name>...
1200
1201is inserted at the end. See also the command `py-clear-queue'."
1202 (interactive "r\nP")
1203 (or (< start end)
1204 (error "Region is empty"))
Barry Warsaw014e0e21998-11-17 19:24:47 +00001205 (let* ((proc (get-process py-which-bufname))
Barry Warsaw5e21cb01997-11-05 18:41:11 +00001206 (temp (if (memq 'broken-temp-names py-emacs-features)
Barry Warsaw1b344241998-08-07 22:24:16 +00001207 (let
1208 ((sn py-serial-number)
1209 (pid (and (fboundp 'emacs-pid) (emacs-pid))))
1210 (setq py-serial-number (1+ py-serial-number))
1211 (if pid
1212 (format "python-%d-%d" sn pid)
1213 (format "python-%d" sn)))
Barry Warsaw2f32fbb1998-02-25 16:45:43 +00001214 (make-temp-name "python-")))
1215 (file (expand-file-name temp py-temp-directory)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001216 (write-region start end file nil 'nomsg)
1217 (cond
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001218 ;; always run the code in its own asynchronous subprocess
Barry Warsawa97a3f31997-11-04 18:47:06 +00001219 (async
Barry Warsaw34d83171998-11-20 03:04:07 +00001220 (let* ((buf (generate-new-buffer-name py-output-buffer))
1221 ;; TBD: a horrible hack, but why create new Custom variables?
1222 (arg (if (string-equal py-which-bufname "Python")
1223 "-u" "")))
1224 (start-process py-which-bufname buf py-which-shell arg file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001225 (pop-to-buffer buf)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001226 (py-postprocess-output-buffer buf)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001227 ))
1228 ;; if the Python interpreter shell is running, queue it up for
1229 ;; execution there.
1230 (proc
1231 ;; use the existing python shell
1232 (if (not py-file-queue)
1233 (py-execute-file proc file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001234 (message "File %s queued for execution" file))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001235 (setq py-file-queue (append py-file-queue (list file)))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001236 (setq py-exception-buffer (cons file (current-buffer))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001237 (t
Barry Warsaw34d83171998-11-20 03:04:07 +00001238 ;; TBD: a horrible hack, buy why create new Custom variables?
1239 (let ((cmd (concat py-which-shell
1240 (if (string-equal py-which-bufname "JPython")
1241 " -" ""))))
1242 ;; otherwise either run it synchronously in a subprocess
1243 (shell-command-on-region start end cmd py-output-buffer)
1244 ;; shell-command-on-region kills the output buffer if it never
1245 ;; existed and there's no output from the command
1246 (if (not (get-buffer py-output-buffer))
1247 (message "No output.")
1248 (setq py-exception-buffer (current-buffer))
1249 (let ((err-p (py-postprocess-output-buffer py-output-buffer)))
1250 (pop-to-buffer py-output-buffer)
1251 (if err-p
1252 (pop-to-buffer py-exception-buffer)))
1253 )))
Barry Warsaw512af041998-03-25 23:27:17 +00001254 )))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001255
Barry Warsaw820273d1998-05-19 15:54:45 +00001256
1257;; Code execution commands
Barry Warsawa97a3f31997-11-04 18:47:06 +00001258(defun py-execute-buffer (&optional async)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001259 "Send the contents of the buffer to a Python interpreter.
Barry Warsawc0ecb531998-01-20 21:43:34 +00001260If the file local variable `py-master-file' is non-nil, execute the
1261named file instead of the buffer's file.
1262
Barry Warsaw7ae77681994-12-12 20:38:05 +00001263If there is a *Python* process buffer it is used. If a clipping
1264restriction is in effect, only the accessible portion of the buffer is
1265sent. A trailing newline will be supplied if needed.
1266
Barry Warsaw41a05c71998-08-10 16:33:12 +00001267See the `\\[py-execute-region]' docs for an account of some
1268subtleties, including the use of the optional ASYNC argument."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001269 (interactive "P")
Barry Warsawc0ecb531998-01-20 21:43:34 +00001270 (if py-master-file
1271 (let* ((filename (expand-file-name py-master-file))
1272 (buffer (or (get-file-buffer filename)
1273 (find-file-noselect filename))))
1274 (set-buffer buffer)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001275 (py-execute-region (point-min) (point-max) async))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001276
Barry Warsaw820273d1998-05-19 15:54:45 +00001277(defun py-execute-import-or-reload (&optional async)
1278 "Import the current buffer's file in a Python interpreter.
1279
1280If the file has already been imported, then do reload instead to get
Barry Warsaw7c29b231998-07-07 17:45:38 +00001281the latest version.
1282
1283If the file's name does not end in \".py\", then do execfile instead.
1284
1285If the current buffer is not visiting a file, do `py-execute-buffer'
1286instead.
1287
1288If the file local variable `py-master-file' is non-nil, import or
1289reload the named file instead of the buffer's file. The file may be
1290saved based on the value of `py-execute-import-or-reload-save-p'.
Barry Warsaw820273d1998-05-19 15:54:45 +00001291
Barry Warsaw41a05c71998-08-10 16:33:12 +00001292See the `\\[py-execute-region]' docs for an account of some
1293subtleties, including the use of the optional ASYNC argument.
Barry Warsaw820273d1998-05-19 15:54:45 +00001294
Barry Warsaw7c29b231998-07-07 17:45:38 +00001295This may be preferable to `\\[py-execute-buffer]' because:
Barry Warsaw820273d1998-05-19 15:54:45 +00001296
1297 - Definitions stay in their module rather than appearing at top
1298 level, where they would clutter the global namespace and not affect
1299 uses of qualified names (MODULE.NAME).
1300
1301 - The Python debugger gets line number information about the functions."
1302 (interactive "P")
1303 ;; Check file local variable py-master-file
1304 (if py-master-file
1305 (let* ((filename (expand-file-name py-master-file))
1306 (buffer (or (get-file-buffer filename)
1307 (find-file-noselect filename))))
1308 (set-buffer buffer)))
1309 (let ((file (buffer-file-name (current-buffer))))
1310 (if file
1311 (progn
Barry Warsaw3bfed5b1998-05-19 16:25:04 +00001312 ;; Maybe save some buffers
1313 (save-some-buffers (not py-ask-about-save) nil)
Barry Warsaw820273d1998-05-19 15:54:45 +00001314 (py-execute-string
1315 (if (string-match "\\.py$" file)
1316 (let ((f (file-name-sans-extension
1317 (file-name-nondirectory file))))
1318 (format "if globals().has_key('%s'):\n reload(%s)\nelse:\n import %s\n"
1319 f f f))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001320 (format "execfile(r'%s')\n" file))
Barry Warsaw820273d1998-05-19 15:54:45 +00001321 async))
1322 ;; else
1323 (py-execute-buffer async))))
1324
1325
1326(defun py-execute-def-or-class (&optional async)
1327 "Send the current function or class definition to a Python interpreter.
1328
1329If there is a *Python* process buffer it is used.
1330
Barry Warsaw41a05c71998-08-10 16:33:12 +00001331See the `\\[py-execute-region]' docs for an account of some
1332subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001333 (interactive "P")
1334 (save-excursion
1335 (py-mark-def-or-class)
1336 ;; mark is before point
1337 (py-execute-region (mark) (point) async)))
1338
1339
1340(defun py-execute-string (string &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001341 "Send the argument STRING to a Python interpreter.
Barry Warsaw820273d1998-05-19 15:54:45 +00001342
1343If there is a *Python* process buffer it is used.
1344
Barry Warsaw41a05c71998-08-10 16:33:12 +00001345See the `\\[py-execute-region]' docs for an account of some
1346subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001347 (interactive "sExecute Python command: ")
1348 (save-excursion
1349 (set-buffer (get-buffer-create
1350 (generate-new-buffer-name " *Python Command*")))
1351 (insert string)
1352 (py-execute-region (point-min) (point-max) async)))
1353
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001354
1355
1356(defun py-jump-to-exception (file line)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001357 "Jump to the Python code in FILE at LINE."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001358 (let ((buffer (cond ((string-equal file "<stdin>")
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001359 (if (consp py-exception-buffer)
1360 (cdr py-exception-buffer)
1361 py-exception-buffer))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001362 ((and (consp py-exception-buffer)
1363 (string-equal file (car py-exception-buffer)))
1364 (cdr py-exception-buffer))
1365 ((py-safe (find-file-noselect file)))
1366 ;; could not figure out what file the exception
1367 ;; is pointing to, so prompt for it
1368 (t (find-file (read-file-name "Exception file: "
1369 nil
1370 file t))))))
1371 (pop-to-buffer buffer)
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001372 ;; Force Python mode
Barry Warsaw820273d1998-05-19 15:54:45 +00001373 (if (not (eq major-mode 'python-mode))
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001374 (python-mode))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001375 (goto-line line)
1376 (message "Jumping to exception in file %s on line %d" file line)))
1377
1378(defun py-mouseto-exception (event)
Barry Warsaw12c92941998-08-10 21:44:37 +00001379 "Jump to the code which caused the Python exception at EVENT.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001380EVENT is usually a mouse click."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001381 (interactive "e")
1382 (cond
1383 ((fboundp 'event-point)
1384 ;; XEmacs
1385 (let* ((point (event-point event))
1386 (buffer (event-buffer event))
1387 (e (and point buffer (extent-at point buffer 'py-exc-info)))
1388 (info (and e (extent-property e 'py-exc-info))))
1389 (message "Event point: %d, info: %s" point info)
1390 (and info
1391 (py-jump-to-exception (car info) (cdr info)))
1392 ))
1393 ;; Emacs -- Please port this!
1394 ))
1395
1396(defun py-goto-exception ()
1397 "Go to the line indicated by the traceback."
1398 (interactive)
1399 (let (file line)
1400 (save-excursion
1401 (beginning-of-line)
1402 (if (looking-at py-traceback-line-re)
1403 (setq file (match-string 1)
1404 line (string-to-int (match-string 2)))))
1405 (if (not file)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001406 (error "Not on a traceback line"))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001407 (py-jump-to-exception file line)))
1408
1409(defun py-find-next-exception (start buffer searchdir errwhere)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001410 "Find the next Python exception and jump to the code that caused it.
1411START is the buffer position in BUFFER from which to begin searching
1412for an exception. SEARCHDIR is a function, either
1413`re-search-backward' or `re-search-forward' indicating the direction
1414to search. ERRWHERE is used in an error message if the limit (top or
1415bottom) of the trackback stack is encountered."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001416 (let (file line)
1417 (save-excursion
1418 (set-buffer buffer)
1419 (goto-char (py-point start))
1420 (if (funcall searchdir py-traceback-line-re nil t)
1421 (setq file (match-string 1)
1422 line (string-to-int (match-string 2)))))
1423 (if (and file line)
1424 (py-jump-to-exception file line)
1425 (error "%s of traceback" errwhere))))
1426
1427(defun py-down-exception (&optional bottom)
1428 "Go to the next line down in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001429With \\[univeral-argument] (programmatically, optional argument
1430BOTTOM), jump to the bottom (innermost) exception in the exception
1431stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001432 (interactive "P")
1433 (let* ((proc (get-process "Python"))
1434 (buffer (if proc "*Python*" py-output-buffer)))
1435 (if bottom
1436 (py-find-next-exception 'eob buffer 're-search-backward "Bottom")
1437 (py-find-next-exception 'eol buffer 're-search-forward "Bottom"))))
1438
1439(defun py-up-exception (&optional top)
1440 "Go to the previous line up in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001441With \\[universal-argument] (programmatically, optional argument TOP)
1442jump to the top (outermost) exception in the exception stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001443 (interactive "P")
1444 (let* ((proc (get-process "Python"))
1445 (buffer (if proc "*Python*" py-output-buffer)))
1446 (if top
1447 (py-find-next-exception 'bob buffer 're-search-forward "Top")
Barry Warsawffbc17d1997-11-27 20:08:14 +00001448 (py-find-next-exception 'bol buffer 're-search-backward "Top"))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001449
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001450
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001451;; Electric deletion
1452(defun py-electric-backspace (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001453 "Delete preceding character or levels of indentation.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001454Deletion is performed by calling the function in `py-backspace-function'
Barry Warsawb0539931996-12-17 22:05:07 +00001455with a single argument (the number of characters to delete).
Barry Warsaw7ae77681994-12-12 20:38:05 +00001456
Barry Warsaw41a05c71998-08-10 16:33:12 +00001457If point is at the leftmost column, delete the preceding newline.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001458
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001459Otherwise, if point is at the leftmost non-whitespace character of a
1460line that is neither a continuation line nor a non-indenting comment
1461line, or if point is at the end of a blank line, this command reduces
1462the indentation to match that of the line that opened the current
1463block of code. The line that opened the block is displayed in the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001464echo area to help you keep track of where you are. With
1465\\[universal-argument] dedents that many blocks (but not past column
1466zero).
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001467
1468Otherwise the preceding character is deleted, converting a tab to
1469spaces if needed so that only a single column position is deleted.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001470\\[universal-argument] specifies how many characters to delete
1471(default is 1).
1472
1473When used programmatically, argument ARG specifies the number of
1474blocks to dedent, or the number of characters to delete, as indicated
1475above."
Barry Warsaw03970731996-07-03 23:12:52 +00001476 (interactive "*p")
Barry Warsaw7ae77681994-12-12 20:38:05 +00001477 (if (or (/= (current-indentation) (current-column))
1478 (bolp)
1479 (py-continuation-line-p)
Barry Warsaw6e527d21996-08-01 15:57:48 +00001480 (not py-honor-comment-indentation)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001481 (looking-at "#[^ \t\n]")) ; non-indenting #
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001482 (funcall py-backspace-function arg)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001483 ;; else indent the same as the colon line that opened the block
Barry Warsaw7ae77681994-12-12 20:38:05 +00001484 ;; force non-blank so py-goto-block-up doesn't ignore it
1485 (insert-char ?* 1)
1486 (backward-char)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001487 (let ((base-indent 0) ; indentation of base line
1488 (base-text "") ; and text of base line
1489 (base-found-p nil))
Barry Warsaw03970731996-07-03 23:12:52 +00001490 (save-excursion
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001491 (while (< 0 arg)
Barry Warsaw03970731996-07-03 23:12:52 +00001492 (condition-case nil ; in case no enclosing block
1493 (progn
1494 (py-goto-block-up 'no-mark)
1495 (setq base-indent (current-indentation)
1496 base-text (py-suck-up-leading-text)
1497 base-found-p t))
1498 (error nil))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001499 (setq arg (1- arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001500 (delete-char 1) ; toss the dummy character
1501 (delete-horizontal-space)
1502 (indent-to base-indent)
1503 (if base-found-p
1504 (message "Closes block: %s" base-text)))))
1505
Barry Warsawfc8a01f1995-03-09 16:07:29 +00001506
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001507(defun py-electric-delete (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001508 "Delete preceding or following character or levels of whitespace.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001509
1510The behavior of this function depends on the variable
1511`delete-key-deletes-forward'. If this variable is nil (or does not
Barry Warsaw41a05c71998-08-10 16:33:12 +00001512exist, as in older Emacsen and non-XEmacs versions), then this
1513function behaves identically to \\[c-electric-backspace].
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001514
1515If `delete-key-deletes-forward' is non-nil and is supported in your
1516Emacs, then deletion occurs in the forward direction, by calling the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001517function in `py-delete-function'.
1518
1519\\[universal-argument] (programmatically, argument ARG) specifies the
1520number of characters to delete (default is 1)."
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001521 (interactive "*p")
Barry Warsaw1d7b0fa1999-01-15 02:12:31 +00001522 (if (or (and (fboundp 'delete-forward-p) ;XEmacs 21
1523 (delete-forward-p))
1524 (and (boundp 'delete-key-deletes-forward) ;XEmacs 20
1525 delete-key-deletes-forward))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001526 (funcall py-delete-function arg)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001527 (py-electric-backspace arg)))
1528
1529;; required for pending-del and delsel modes
1530(put 'py-electric-backspace 'delete-selection 'supersede) ;delsel
1531(put 'py-electric-backspace 'pending-delete 'supersede) ;pending-del
1532(put 'py-electric-delete 'delete-selection 'supersede) ;delsel
1533(put 'py-electric-delete 'pending-delete 'supersede) ;pending-del
1534
1535
1536
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001537(defun py-indent-line (&optional arg)
1538 "Fix the indentation of the current line according to Python rules.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001539With \\[universal-argument] (programmatically, the optional argument
1540ARG non-nil), ignore dedenting rules for block closing statements
1541(e.g. return, raise, break, continue, pass)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001542
1543This function is normally bound to `indent-line-function' so
1544\\[indent-for-tab-command] will call it."
1545 (interactive "P")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001546 (let* ((ci (current-indentation))
1547 (move-to-indentation-p (<= (current-column) ci))
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001548 (need (py-compute-indentation (not arg))))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001549 ;; see if we need to dedent
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001550 (if (py-outdent-p)
Barry Warsaw0012c1e1995-03-14 16:32:55 +00001551 (setq need (- need py-indent-offset)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001552 (if (/= ci need)
1553 (save-excursion
1554 (beginning-of-line)
1555 (delete-horizontal-space)
1556 (indent-to need)))
1557 (if move-to-indentation-p (back-to-indentation))))
1558
1559(defun py-newline-and-indent ()
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001560 "Strives to act like the Emacs `newline-and-indent'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001561This is just `strives to' because correct indentation can't be computed
1562from scratch for Python code. In general, deletes the whitespace before
1563point, inserts a newline, and takes an educated guess as to how you want
1564the new line indented."
1565 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001566 (let ((ci (current-indentation)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001567 (if (< ci (current-column)) ; if point beyond indentation
1568 (newline-and-indent)
1569 ;; else try to act like newline-and-indent "normally" acts
1570 (beginning-of-line)
1571 (insert-char ?\n 1)
1572 (move-to-column ci))))
1573
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001574(defun py-compute-indentation (honor-block-close-p)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001575 "Compute Python indentation.
1576When HONOR-BLOCK-CLOSE-P is non-nil, statements such as `return',
1577`raise', `break', `continue', and `pass' force one level of
1578dedenting."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001579 (save-excursion
Barry Warsawf64b4051998-02-12 16:52:14 +00001580 (beginning-of-line)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001581 (let* ((bod (py-point 'bod))
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001582 (pps (parse-partial-sexp bod (point)))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001583 (boipps (parse-partial-sexp bod (py-point 'boi)))
1584 placeholder)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001585 (cond
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001586 ;; are we inside a multi-line string or comment?
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001587 ((or (and (nth 3 pps) (nth 3 boipps))
1588 (and (nth 4 pps) (nth 4 boipps)))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001589 (save-excursion
1590 (if (not py-align-multiline-strings-p) 0
1591 ;; skip back over blank & non-indenting comment lines
1592 ;; note: will skip a blank or non-indenting comment line
1593 ;; that happens to be a continuation line too
1594 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move)
1595 (back-to-indentation)
1596 (current-column))))
1597 ;; are we on a continuation line?
1598 ((py-continuation-line-p)
1599 (let ((startpos (point))
1600 (open-bracket-pos (py-nesting-level))
Barry Warsawce60bc71996-08-01 18:17:14 +00001601 endpos searching found state)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001602 (if open-bracket-pos
1603 (progn
1604 ;; align with first item in list; else a normal
1605 ;; indent beyond the line with the open bracket
1606 (goto-char (1+ open-bracket-pos)) ; just beyond bracket
1607 ;; is the first list item on the same line?
1608 (skip-chars-forward " \t")
1609 (if (null (memq (following-char) '(?\n ?# ?\\)))
1610 ; yes, so line up with it
1611 (current-column)
1612 ;; first list item on another line, or doesn't exist yet
1613 (forward-line 1)
1614 (while (and (< (point) startpos)
1615 (looking-at "[ \t]*[#\n\\\\]")) ; skip noise
1616 (forward-line 1))
Barry Warsaw92166d91998-04-01 21:59:41 +00001617 (if (and (< (point) startpos)
1618 (/= startpos
1619 (save-excursion
1620 (goto-char (1+ open-bracket-pos))
Barry Warsaw77d1fce1998-04-16 20:04:59 +00001621 (forward-comment (point-max))
Barry Warsaw92166d91998-04-01 21:59:41 +00001622 (point))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001623 ;; again mimic the first list item
1624 (current-indentation)
1625 ;; else they're about to enter the first item
1626 (goto-char open-bracket-pos)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001627 (setq placeholder (point))
1628 (py-goto-initial-line)
1629 (py-goto-beginning-of-tqs
1630 (save-excursion (nth 3 (parse-partial-sexp
1631 placeholder (point)))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001632 (+ (current-indentation) py-indent-offset))))
1633
1634 ;; else on backslash continuation line
1635 (forward-line -1)
1636 (if (py-continuation-line-p) ; on at least 3rd line in block
1637 (current-indentation) ; so just continue the pattern
1638 ;; else started on 2nd line in block, so indent more.
1639 ;; if base line is an assignment with a start on a RHS,
1640 ;; indent to 2 beyond the leftmost "="; else skip first
1641 ;; chunk of non-whitespace characters on base line, + 1 more
1642 ;; column
1643 (end-of-line)
1644 (setq endpos (point) searching t)
1645 (back-to-indentation)
1646 (setq startpos (point))
1647 ;; look at all "=" from left to right, stopping at first
1648 ;; one not nested in a list or string
1649 (while searching
1650 (skip-chars-forward "^=" endpos)
1651 (if (= (point) endpos)
1652 (setq searching nil)
1653 (forward-char 1)
1654 (setq state (parse-partial-sexp startpos (point)))
1655 (if (and (zerop (car state)) ; not in a bracket
1656 (null (nth 3 state))) ; & not in a string
1657 (progn
1658 (setq searching nil) ; done searching in any case
1659 (setq found
1660 (not (or
1661 (eq (following-char) ?=)
1662 (memq (char-after (- (point) 2))
1663 '(?< ?> ?!)))))))))
1664 (if (or (not found) ; not an assignment
1665 (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash>
1666 (progn
1667 (goto-char startpos)
1668 (skip-chars-forward "^ \t\n")))
1669 (1+ (current-column))))))
1670
1671 ;; not on a continuation line
Barry Warsawa7891711996-08-01 15:53:09 +00001672 ((bobp) (current-indentation))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001673
Barry Warsawa7891711996-08-01 15:53:09 +00001674 ;; Dfn: "Indenting comment line". A line containing only a
1675 ;; comment, but which is treated like a statement for
1676 ;; indentation calculation purposes. Such lines are only
1677 ;; treated specially by the mode; they are not treated
1678 ;; specially by the Python interpreter.
1679
1680 ;; The rules for indenting comment lines are a line where:
1681 ;; - the first non-whitespace character is `#', and
1682 ;; - the character following the `#' is whitespace, and
Barry Warsaw41a05c71998-08-10 16:33:12 +00001683 ;; - the line is dedented with respect to (i.e. to the left
Barry Warsawa7891711996-08-01 15:53:09 +00001684 ;; of) the indentation of the preceding non-blank line.
1685
1686 ;; The first non-blank line following an indenting comment
1687 ;; line is given the same amount of indentation as the
1688 ;; indenting comment line.
1689
1690 ;; All other comment-only lines are ignored for indentation
1691 ;; purposes.
1692
1693 ;; Are we looking at a comment-only line which is *not* an
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001694 ;; indenting comment line? If so, we assume that it's been
Barry Warsawa7891711996-08-01 15:53:09 +00001695 ;; placed at the desired indentation, so leave it alone.
1696 ;; Indenting comment lines are aligned as statements down
1697 ;; below.
1698 ((and (looking-at "[ \t]*#[^ \t\n]")
1699 ;; NOTE: this test will not be performed in older Emacsen
1700 (fboundp 'forward-comment)
1701 (<= (current-indentation)
1702 (save-excursion
1703 (forward-comment (- (point-max)))
1704 (current-indentation))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001705 (current-indentation))
1706
1707 ;; else indentation based on that of the statement that
1708 ;; precedes us; use the first line of that statement to
1709 ;; establish the base, in case the user forced a non-std
1710 ;; indentation for the continuation lines (if any)
1711 (t
Barry Warsawc01c5c81995-09-14 18:49:11 +00001712 ;; skip back over blank & non-indenting comment lines note:
1713 ;; will skip a blank or non-indenting comment line that
Barry Warsawfd0fb381996-03-04 17:15:40 +00001714 ;; happens to be a continuation line too. use fast Emacs 19
1715 ;; function if it's there.
Barry Warsaw6d627751996-03-06 18:41:38 +00001716 (if (and (eq py-honor-comment-indentation nil)
Barry Warsaw33d6ec01996-03-05 16:28:07 +00001717 (fboundp 'forward-comment))
Barry Warsawfd0fb381996-03-04 17:15:40 +00001718 (forward-comment (- (point-max)))
Barry Warsaw218eb751998-09-22 19:51:47 +00001719 (let ((prefix-re (concat py-block-comment-prefix "[ \t]*"))
1720 done)
Barry Warsaw6d627751996-03-06 18:41:38 +00001721 (while (not done)
Barry Warsaw12c92941998-08-10 21:44:37 +00001722 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#\\)" nil 'move)
1723 (setq done (or (bobp)
1724 (and (eq py-honor-comment-indentation t)
1725 (save-excursion
1726 (back-to-indentation)
Barry Warsaw218eb751998-09-22 19:51:47 +00001727 (not (looking-at prefix-re))
Barry Warsaw12c92941998-08-10 21:44:37 +00001728 ))
1729 (and (not (eq py-honor-comment-indentation t))
1730 (save-excursion
1731 (back-to-indentation)
1732 (not (zerop (current-column)))))
1733 ))
Barry Warsaw6d627751996-03-06 18:41:38 +00001734 )))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001735 ;; if we landed inside a string, go to the beginning of that
1736 ;; string. this handles triple quoted, multi-line spanning
1737 ;; strings.
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001738 (py-goto-beginning-of-tqs (nth 3 (parse-partial-sexp bod (point))))
Barry Warsawc210e691998-01-20 22:52:56 +00001739 ;; now skip backward over continued lines
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001740 (setq placeholder (point))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001741 (py-goto-initial-line)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001742 ;; we may *now* have landed in a TQS, so find the beginning of
1743 ;; this string.
1744 (py-goto-beginning-of-tqs
1745 (save-excursion (nth 3 (parse-partial-sexp
1746 placeholder (point)))))
Barry Warsawf831d811996-07-31 20:42:59 +00001747 (+ (current-indentation)
1748 (if (py-statement-opens-block-p)
1749 py-indent-offset
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001750 (if (and honor-block-close-p (py-statement-closes-block-p))
Barry Warsawf831d811996-07-31 20:42:59 +00001751 (- py-indent-offset)
1752 0)))
1753 )))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001754
1755(defun py-guess-indent-offset (&optional global)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001756 "Guess a good value for, and change, `py-indent-offset'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001757
1758By default, make a buffer-local copy of `py-indent-offset' with the
1759new value, so that other Python buffers are not affected. With
1760\\[universal-argument] (programmatically, optional argument GLOBAL),
1761change the global value of `py-indent-offset'. This affects all
1762Python buffers (that don't have their own buffer-local copy), both
1763those currently existing and those created later in the Emacs session.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001764
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001765Some people use a different value for `py-indent-offset' than you use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001766There's no excuse for such foolishness, but sometimes you have to deal
1767with their ugly code anyway. This function examines the file and sets
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001768`py-indent-offset' to what it thinks it was when they created the
1769mess.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001770
1771Specifically, it searches forward from the statement containing point,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001772looking for a line that opens a block of code. `py-indent-offset' is
1773set to the difference in indentation between that line and the Python
Barry Warsaw7ae77681994-12-12 20:38:05 +00001774statement following it. If the search doesn't succeed going forward,
1775it's tried again going backward."
1776 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001777 (let (new-value
1778 (start (point))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001779 (restart (point))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001780 (found nil)
1781 colon-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001782 (py-goto-initial-line)
1783 (while (not (or found (eobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001784 (when (and (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1785 (not (py-in-literal restart)))
1786 (setq restart (point))
1787 (py-goto-initial-line)
1788 (if (py-statement-opens-block-p)
1789 (setq found t)
1790 (goto-char restart))))
1791 (unless found
Barry Warsaw7ae77681994-12-12 20:38:05 +00001792 (goto-char start)
1793 (py-goto-initial-line)
1794 (while (not (or found (bobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001795 (setq found (and
1796 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1797 (or (py-goto-initial-line) t) ; always true -- side effect
1798 (py-statement-opens-block-p)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001799 (setq colon-indent (current-indentation)
1800 found (and found (zerop (py-next-statement 1)))
1801 new-value (- (current-indentation) colon-indent))
1802 (goto-char start)
Barry Warsawe908b6b1998-03-19 22:48:02 +00001803 (if (not found)
1804 (error "Sorry, couldn't guess a value for py-indent-offset")
1805 (funcall (if global 'kill-local-variable 'make-local-variable)
1806 'py-indent-offset)
1807 (setq py-indent-offset new-value)
Barry Warsawd35c2551998-09-25 00:08:38 +00001808 (or noninteractive
1809 (message "%s value of py-indent-offset set to %d"
1810 (if global "Global" "Local")
1811 py-indent-offset)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001812 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001813
Barry Warsaw003932a1998-07-07 15:11:24 +00001814(defun py-comment-indent-function ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00001815 "Python version of `comment-indent-function'."
1816 ;; This is required when filladapt is turned off. Without it, when
1817 ;; filladapt is not used, comments which start in column zero
1818 ;; cascade one character to the right
Barry Warsaw003932a1998-07-07 15:11:24 +00001819 (save-excursion
1820 (beginning-of-line)
1821 (let ((eol (py-point 'eol)))
1822 (and comment-start-skip
1823 (re-search-forward comment-start-skip eol t)
1824 (setq eol (match-beginning 0)))
1825 (goto-char eol)
1826 (skip-chars-backward " \t")
1827 (max comment-column (+ (current-column) (if (bolp) 0 1)))
1828 )))
1829
1830
Barry Warsaw7ae77681994-12-12 20:38:05 +00001831(defun py-shift-region (start end count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001832 "Indent lines from START to END by COUNT spaces."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001833 (save-excursion
Barry Warsaw41a05c71998-08-10 16:33:12 +00001834 (goto-char end)
1835 (beginning-of-line)
1836 (setq end (point))
1837 (goto-char start)
1838 (beginning-of-line)
1839 (setq start (point))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001840 (indent-rigidly start end count)))
1841
1842(defun py-shift-region-left (start end &optional count)
1843 "Shift region of Python code to the left.
1844The lines from the line containing the start of the current region up
1845to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001846shifted to the left, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001847
1848If a prefix argument is given, the region is instead shifted by that
Barry Warsaw41a05c71998-08-10 16:33:12 +00001849many columns. With no active region, dedent only the current line.
1850You cannot dedent the region if any line is already at column zero."
Barry Warsawdea4a291996-07-03 22:59:12 +00001851 (interactive
1852 (let ((p (point))
1853 (m (mark))
1854 (arg current-prefix-arg))
1855 (if m
1856 (list (min p m) (max p m) arg)
1857 (list p (save-excursion (forward-line 1) (point)) arg))))
1858 ;; if any line is at column zero, don't shift the region
1859 (save-excursion
1860 (goto-char start)
1861 (while (< (point) end)
1862 (back-to-indentation)
Barry Warsaw71e315b1996-07-23 15:03:16 +00001863 (if (and (zerop (current-column))
1864 (not (looking-at "\\s *$")))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001865 (error "Region is at left edge"))
Barry Warsawdea4a291996-07-03 22:59:12 +00001866 (forward-line 1)))
1867 (py-shift-region start end (- (prefix-numeric-value
1868 (or count py-indent-offset))))
1869 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001870
1871(defun py-shift-region-right (start end &optional count)
1872 "Shift region of Python code to the right.
1873The lines from the line containing the start of the current region up
1874to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001875shifted to the right, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001876
1877If a prefix argument is given, the region is instead shifted by that
Barry Warsawdea4a291996-07-03 22:59:12 +00001878many columns. With no active region, indent only the current line."
1879 (interactive
1880 (let ((p (point))
1881 (m (mark))
1882 (arg current-prefix-arg))
1883 (if m
1884 (list (min p m) (max p m) arg)
1885 (list p (save-excursion (forward-line 1) (point)) arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001886 (py-shift-region start end (prefix-numeric-value
Barry Warsawdea4a291996-07-03 22:59:12 +00001887 (or count py-indent-offset)))
1888 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001889
1890(defun py-indent-region (start end &optional indent-offset)
1891 "Reindent a region of Python code.
Barry Warsaw867a32a1996-03-07 18:30:26 +00001892
Barry Warsaw7ae77681994-12-12 20:38:05 +00001893The lines from the line containing the start of the current region up
1894to (but not including) the line containing the end of the region are
1895reindented. If the first line of the region has a non-whitespace
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001896character in the first column, the first line is left alone and the
1897rest of the region is reindented with respect to it. Else the entire
Barry Warsaw867a32a1996-03-07 18:30:26 +00001898region is reindented with respect to the (closest code or indenting
1899comment) statement immediately preceding the region.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001900
1901This is useful when code blocks are moved or yanked, when enclosing
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001902control structures are introduced or removed, or to reformat code
1903using a new value for the indentation offset.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001904
1905If a numeric prefix argument is given, it will be used as the value of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001906the indentation offset. Else the value of `py-indent-offset' will be
Barry Warsaw7ae77681994-12-12 20:38:05 +00001907used.
1908
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001909Warning: The region must be consistently indented before this function
Barry Warsaw7ae77681994-12-12 20:38:05 +00001910is called! This function does not compute proper indentation from
1911scratch (that's impossible in Python), it merely adjusts the existing
1912indentation to be correct in context.
1913
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001914Warning: This function really has no idea what to do with
1915non-indenting comment lines, and shifts them as if they were indenting
1916comment lines. Fixing this appears to require telepathy.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001917
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001918Special cases: whitespace is deleted from blank lines; continuation
1919lines are shifted by the same amount their initial line was shifted,
1920in order to preserve their relative indentation with respect to their
Barry Warsaw7ae77681994-12-12 20:38:05 +00001921initial line; and comment lines beginning in column 1 are ignored."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001922 (interactive "*r\nP") ; region; raw prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00001923 (save-excursion
1924 (goto-char end) (beginning-of-line) (setq end (point-marker))
1925 (goto-char start) (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001926 (let ((py-indent-offset (prefix-numeric-value
1927 (or indent-offset py-indent-offset)))
1928 (indents '(-1)) ; stack of active indent levels
1929 (target-column 0) ; column to which to indent
1930 (base-shifted-by 0) ; amount last base line was shifted
1931 (indent-base (if (looking-at "[ \t\n]")
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001932 (py-compute-indentation t)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001933 0))
1934 ci)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001935 (while (< (point) end)
1936 (setq ci (current-indentation))
1937 ;; figure out appropriate target column
1938 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001939 ((or (eq (following-char) ?#) ; comment in column 1
1940 (looking-at "[ \t]*$")) ; entirely blank
1941 (setq target-column 0))
1942 ((py-continuation-line-p) ; shift relative to base line
1943 (setq target-column (+ ci base-shifted-by)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001944 (t ; new base line
1945 (if (> ci (car indents)) ; going deeper; push it
1946 (setq indents (cons ci indents))
1947 ;; else we should have seen this indent before
1948 (setq indents (memq ci indents)) ; pop deeper indents
1949 (if (null indents)
1950 (error "Bad indentation in region, at line %d"
1951 (save-restriction
1952 (widen)
1953 (1+ (count-lines 1 (point)))))))
1954 (setq target-column (+ indent-base
1955 (* py-indent-offset
1956 (- (length indents) 2))))
1957 (setq base-shifted-by (- target-column ci))))
1958 ;; shift as needed
1959 (if (/= ci target-column)
1960 (progn
1961 (delete-horizontal-space)
1962 (indent-to target-column)))
1963 (forward-line 1))))
1964 (set-marker end nil))
1965
Barry Warsawa7891711996-08-01 15:53:09 +00001966(defun py-comment-region (beg end &optional arg)
1967 "Like `comment-region' but uses double hash (`#') comment starter."
1968 (interactive "r\nP")
Barry Warsaw3fcaf611996-08-01 20:11:51 +00001969 (let ((comment-start py-block-comment-prefix))
Barry Warsawa7891711996-08-01 15:53:09 +00001970 (comment-region beg end arg)))
1971
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001972
1973;; Functions for moving point
Barry Warsaw7ae77681994-12-12 20:38:05 +00001974(defun py-previous-statement (count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001975 "Go to the start of the COUNTth preceding Python statement.
1976By default, goes to the previous statement. If there is no such
1977statement, goes to the first statement. Return count of statements
1978left to move. `Statements' do not include blank, comment, or
1979continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001980 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00001981 (if (< count 0) (py-next-statement (- count))
1982 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001983 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001984 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001985 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00001986 (> count 0)
1987 (zerop (forward-line -1))
1988 (py-goto-statement-at-or-above))
1989 (setq count (1- count)))
1990 (if (> count 0) (goto-char start)))
1991 count))
1992
1993(defun py-next-statement (count)
1994 "Go to the start of next Python statement.
1995If the statement at point is the i'th Python statement, goes to the
1996start of statement i+COUNT. If there is no such statement, goes to the
1997last statement. Returns count of statements left to move. `Statements'
1998do not include blank, comment, or continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001999 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002000 (if (< count 0) (py-previous-statement (- count))
2001 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002002 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002003 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002004 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002005 (> count 0)
2006 (py-goto-statement-below))
2007 (setq count (1- count)))
2008 (if (> count 0) (goto-char start)))
2009 count))
2010
2011(defun py-goto-block-up (&optional nomark)
2012 "Move up to start of current block.
2013Go to the statement that starts the smallest enclosing block; roughly
2014speaking, this will be the closest preceding statement that ends with a
2015colon and is indented less than the statement you started on. If
2016successful, also sets the mark to the starting point.
2017
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002018`\\[py-mark-block]' can be used afterward to mark the whole code
2019block, if desired.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002020
2021If called from a program, the mark will not be set if optional argument
2022NOMARK is not nil."
2023 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002024 (let ((start (point))
2025 (found nil)
2026 initial-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002027 (py-goto-initial-line)
2028 ;; if on blank or non-indenting comment line, use the preceding stmt
2029 (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2030 (progn
2031 (py-goto-statement-at-or-above)
2032 (setq found (py-statement-opens-block-p))))
2033 ;; search back for colon line indented less
2034 (setq initial-indent (current-indentation))
2035 (if (zerop initial-indent)
2036 ;; force fast exit
2037 (goto-char (point-min)))
2038 (while (not (or found (bobp)))
2039 (setq found
2040 (and
2041 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2042 (or (py-goto-initial-line) t) ; always true -- side effect
2043 (< (current-indentation) initial-indent)
2044 (py-statement-opens-block-p))))
2045 (if found
2046 (progn
2047 (or nomark (push-mark start))
2048 (back-to-indentation))
2049 (goto-char start)
2050 (error "Enclosing block not found"))))
2051
Barry Warsawab0e86c1998-05-19 15:31:46 +00002052(defun py-beginning-of-def-or-class (&optional class count)
2053 "Move point to start of `def' or `class'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002054
2055Searches back for the closest preceding `def'. If you supply a prefix
Barry Warsawab0e86c1998-05-19 15:31:46 +00002056arg, looks for a `class' instead. The docs below assume the `def'
2057case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002058Programmatically, if CLASS is `either', then moves to either `class'
2059or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002060
Barry Warsawab0e86c1998-05-19 15:31:46 +00002061When second optional argument is given programmatically, move to the
2062COUNTth start of `def'.
2063
2064If point is in a `def' statement already, and after the `d', simply
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002065moves point to the start of the statement.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002066
Barry Warsawab0e86c1998-05-19 15:31:46 +00002067Otherwise (i.e. when point is not in a `def' statement, or at or
2068before the `d' of a `def' statement), searches for the closest
2069preceding `def' statement, and leaves point at its start. If no such
2070statement can be found, leaves point at the start of the buffer.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002071
Barry Warsawab0e86c1998-05-19 15:31:46 +00002072Returns t iff a `def' statement is found by these rules.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002073
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002074Note that doing this command repeatedly will take you closer to the
2075start of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002076
Barry Warsaw7c29b231998-07-07 17:45:38 +00002077To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002078 (interactive "P") ; raw prefix arg
Barry Warsaw6839d3a1998-10-28 00:10:45 +00002079 (setq count (or count 1))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002080 (let ((at-or-before-p (<= (current-column) (current-indentation)))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002081 (start-of-line (goto-char (py-point 'bol)))
2082 (start-of-stmt (goto-char (py-point 'bos)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002083 (start-re (cond ((eq class 'either) "^[ \t]*\\(class\\|def\\)\\>")
2084 (class "^[ \t]*class\\>")
2085 (t "^[ \t]*def\\>")))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002086 )
2087 ;; searching backward
2088 (if (and (< 0 count)
2089 (or (/= start-of-stmt start-of-line)
2090 (not at-or-before-p)))
2091 (end-of-line))
2092 ;; search forward
2093 (if (and (> 0 count)
2094 (zerop (current-column))
2095 (looking-at start-re))
2096 (end-of-line))
2097 (re-search-backward start-re nil 'move count)
2098 (goto-char (match-beginning 0))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002099
Barry Warsawab0e86c1998-05-19 15:31:46 +00002100;; Backwards compatibility
2101(defalias 'beginning-of-python-def-or-class 'py-beginning-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002102
Barry Warsawab0e86c1998-05-19 15:31:46 +00002103(defun py-end-of-def-or-class (&optional class count)
2104 "Move point beyond end of `def' or `class' body.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002105
Barry Warsawab0e86c1998-05-19 15:31:46 +00002106By default, looks for an appropriate `def'. If you supply a prefix
2107arg, looks for a `class' instead. The docs below assume the `def'
2108case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002109Programmatically, if CLASS is `either', then moves to either `class'
2110or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002111
Barry Warsawab0e86c1998-05-19 15:31:46 +00002112When second optional argument is given programmatically, move to the
2113COUNTth end of `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002114
Barry Warsawab0e86c1998-05-19 15:31:46 +00002115If point is in a `def' statement already, this is the `def' we use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002116
Barry Warsawab0e86c1998-05-19 15:31:46 +00002117Else, if the `def' found by `\\[py-beginning-of-def-or-class]'
2118contains the statement you started on, that's the `def' we use.
2119
2120Otherwise, we search forward for the closest following `def', and use that.
2121
2122If a `def' can be found by these rules, point is moved to the start of
2123the line immediately following the `def' block, and the position of the
2124start of the `def' is returned.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002125
2126Else point is moved to the end of the buffer, and nil is returned.
2127
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002128Note that doing this command repeatedly will take you closer to the
2129end of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002130
Barry Warsaw7c29b231998-07-07 17:45:38 +00002131To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002132 (interactive "P") ; raw prefix arg
Barry Warsawab0e86c1998-05-19 15:31:46 +00002133 (if (and count (/= count 1))
2134 (py-beginning-of-def-or-class (- 1 count)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002135 (let ((start (progn (py-goto-initial-line) (point)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002136 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2137 (class "class")
2138 (t "def")))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002139 (state 'not-found))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002140 ;; move point to start of appropriate def/class
2141 (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one
2142 (setq state 'at-beginning)
Barry Warsawab0e86c1998-05-19 15:31:46 +00002143 ;; else see if py-beginning-of-def-or-class hits container
2144 (if (and (py-beginning-of-def-or-class class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002145 (progn (py-goto-beyond-block)
2146 (> (point) start)))
2147 (setq state 'at-end)
2148 ;; else search forward
2149 (goto-char start)
2150 (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move)
2151 (progn (setq state 'at-beginning)
2152 (beginning-of-line)))))
2153 (cond
2154 ((eq state 'at-beginning) (py-goto-beyond-block) t)
2155 ((eq state 'at-end) t)
2156 ((eq state 'not-found) nil)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002157 (t (error "Internal error in `py-end-of-def-or-class'")))))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002158
2159;; Backwards compabitility
Barry Warsaw820273d1998-05-19 15:54:45 +00002160(defalias 'end-of-python-def-or-class 'py-end-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002161
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002162
2163;; Functions for marking regions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002164(defun py-mark-block (&optional extend just-move)
2165 "Mark following block of lines. With prefix arg, mark structure.
2166Easier to use than explain. It sets the region to an `interesting'
2167block of succeeding lines. If point is on a blank line, it goes down to
2168the next non-blank line. That will be the start of the region. The end
2169of the region depends on the kind of line at the start:
2170
2171 - If a comment, the region will include all succeeding comment lines up
2172 to (but not including) the next non-comment line (if any).
2173
2174 - Else if a prefix arg is given, and the line begins one of these
2175 structures:
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002176
2177 if elif else try except finally for while def class
2178
Barry Warsaw7ae77681994-12-12 20:38:05 +00002179 the region will be set to the body of the structure, including
2180 following blocks that `belong' to it, but excluding trailing blank
2181 and comment lines. E.g., if on a `try' statement, the `try' block
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002182 and all (if any) of the following `except' and `finally' blocks
2183 that belong to the `try' structure will be in the region. Ditto
2184 for if/elif/else, for/else and while/else structures, and (a bit
2185 degenerate, since they're always one-block structures) def and
2186 class blocks.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002187
2188 - Else if no prefix argument is given, and the line begins a Python
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002189 block (see list above), and the block is not a `one-liner' (i.e.,
2190 the statement ends with a colon, not with code), the region will
2191 include all succeeding lines up to (but not including) the next
2192 code statement (if any) that's indented no more than the starting
2193 line, except that trailing blank and comment lines are excluded.
2194 E.g., if the starting line begins a multi-statement `def'
2195 structure, the region will be set to the full function definition,
2196 but without any trailing `noise' lines.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002197
2198 - Else the region will include all succeeding lines up to (but not
2199 including) the next blank line, or code or indenting-comment line
2200 indented strictly less than the starting line. Trailing indenting
2201 comment lines are included in this case, but not trailing blank
2202 lines.
2203
2204A msg identifying the location of the mark is displayed in the echo
2205area; or do `\\[exchange-point-and-mark]' to flip down to the end.
2206
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002207If called from a program, optional argument EXTEND plays the role of
2208the prefix arg, and if optional argument JUST-MOVE is not nil, just
2209moves to the end of the block (& does not set mark or display a msg)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002210 (interactive "P") ; raw prefix arg
2211 (py-goto-initial-line)
2212 ;; skip over blank lines
2213 (while (and
2214 (looking-at "[ \t]*$") ; while blank line
2215 (not (eobp))) ; & somewhere to go
2216 (forward-line 1))
2217 (if (eobp)
2218 (error "Hit end of buffer without finding a non-blank stmt"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002219 (let ((initial-pos (point))
2220 (initial-indent (current-indentation))
2221 last-pos ; position of last stmt in region
2222 (followers
2223 '((if elif else) (elif elif else) (else)
2224 (try except finally) (except except) (finally)
2225 (for else) (while else)
2226 (def) (class) ) )
2227 first-symbol next-symbol)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002228
2229 (cond
2230 ;; if comment line, suck up the following comment lines
2231 ((looking-at "[ \t]*#")
2232 (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment
2233 (re-search-backward "^[ \t]*#") ; and back to last comment in block
2234 (setq last-pos (point)))
2235
2236 ;; else if line is a block line and EXTEND given, suck up
2237 ;; the whole structure
2238 ((and extend
2239 (setq first-symbol (py-suck-up-first-keyword) )
2240 (assq first-symbol followers))
2241 (while (and
2242 (or (py-goto-beyond-block) t) ; side effect
2243 (forward-line -1) ; side effect
2244 (setq last-pos (point)) ; side effect
2245 (py-goto-statement-below)
2246 (= (current-indentation) initial-indent)
2247 (setq next-symbol (py-suck-up-first-keyword))
2248 (memq next-symbol (cdr (assq first-symbol followers))))
2249 (setq first-symbol next-symbol)))
2250
2251 ;; else if line *opens* a block, search for next stmt indented <=
2252 ((py-statement-opens-block-p)
2253 (while (and
2254 (setq last-pos (point)) ; always true -- side effect
2255 (py-goto-statement-below)
2256 (> (current-indentation) initial-indent))
2257 nil))
2258
2259 ;; else plain code line; stop at next blank line, or stmt or
2260 ;; indenting comment line indented <
2261 (t
2262 (while (and
2263 (setq last-pos (point)) ; always true -- side effect
2264 (or (py-goto-beyond-final-line) t)
2265 (not (looking-at "[ \t]*$")) ; stop at blank line
2266 (or
2267 (>= (current-indentation) initial-indent)
2268 (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting #
2269 nil)))
2270
2271 ;; skip to end of last stmt
2272 (goto-char last-pos)
2273 (py-goto-beyond-final-line)
2274
2275 ;; set mark & display
2276 (if just-move
2277 () ; just return
2278 (push-mark (point) 'no-msg)
2279 (forward-line -1)
2280 (message "Mark set after: %s" (py-suck-up-leading-text))
2281 (goto-char initial-pos))))
2282
Barry Warsaw2518c671997-11-05 00:51:08 +00002283(defun py-mark-def-or-class (&optional class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002284 "Set region to body of def (or class, with prefix arg) enclosing point.
2285Pushes the current mark, then point, on the mark ring (all language
2286modes do this, but although it's handy it's never documented ...).
2287
2288In most Emacs language modes, this function bears at least a
Barry Warsawab0e86c1998-05-19 15:31:46 +00002289hallucinogenic resemblance to `\\[py-end-of-def-or-class]' and
2290`\\[py-beginning-of-def-or-class]'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002291
2292And in earlier versions of Python mode, all 3 were tightly connected.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002293Turned out that was more confusing than useful: the `goto start' and
2294`goto end' commands are usually used to search through a file, and
2295people expect them to act a lot like `search backward' and `search
2296forward' string-search commands. But because Python `def' and `class'
2297can nest to arbitrary levels, finding the smallest def containing
2298point cannot be done via a simple backward search: the def containing
2299point may not be the closest preceding def, or even the closest
2300preceding def that's indented less. The fancy algorithm required is
2301appropriate for the usual uses of this `mark' command, but not for the
2302`goto' variations.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002303
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002304So the def marked by this command may not be the one either of the
2305`goto' commands find: If point is on a blank or non-indenting comment
2306line, moves back to start of the closest preceding code statement or
2307indenting comment line. If this is a `def' statement, that's the def
2308we use. Else searches for the smallest enclosing `def' block and uses
2309that. Else signals an error.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002310
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002311When an enclosing def is found: The mark is left immediately beyond
2312the last line of the def block. Point is left at the start of the
2313def, except that: if the def is preceded by a number of comment lines
2314followed by (at most) one optional blank line, point is left at the
2315start of the comments; else if the def is preceded by a blank line,
2316point is left at its start.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002317
2318The intent is to mark the containing def/class and its associated
2319documentation, to make moving and duplicating functions and classes
2320pleasant."
2321 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002322 (let ((start (point))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002323 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2324 (class "class")
2325 (t "def"))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002326 (push-mark start)
2327 (if (not (py-go-up-tree-to-keyword which))
2328 (progn (goto-char start)
Barry Warsaw7c29b231998-07-07 17:45:38 +00002329 (error "Enclosing %s not found"
2330 (if (eq class 'either)
2331 "def or class"
2332 which)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002333 ;; else enclosing def/class found
2334 (setq start (point))
2335 (py-goto-beyond-block)
2336 (push-mark (point))
2337 (goto-char start)
2338 (if (zerop (forward-line -1)) ; if there is a preceding line
2339 (progn
2340 (if (looking-at "[ \t]*$") ; it's blank
2341 (setq start (point)) ; so reset start point
2342 (goto-char start)) ; else try again
2343 (if (zerop (forward-line -1))
2344 (if (looking-at "[ \t]*#") ; a comment
2345 ;; look back for non-comment line
2346 ;; tricky: note that the regexp matches a blank
2347 ;; line, cuz \n is in the 2nd character class
2348 (and
2349 (re-search-backward "^[ \t]*[^ \t#]" nil 'move)
2350 (forward-line 1))
2351 ;; no comment, so go back
Barry Warsaw4da6bd51997-11-26 06:00:26 +00002352 (goto-char start)))))))
2353 (exchange-point-and-mark)
2354 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002355
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002356;; ripped from cc-mode
2357(defun py-forward-into-nomenclature (&optional arg)
2358 "Move forward to end of a nomenclature section or word.
Barry Warsaw41a05c71998-08-10 16:33:12 +00002359With \\[universal-argument] (programmatically, optional argument ARG),
2360do it that many times.
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002361
2362A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2363 (interactive "p")
2364 (let ((case-fold-search nil))
2365 (if (> arg 0)
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002366 (re-search-forward
2367 "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)"
2368 (point-max) t arg)
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002369 (while (and (< arg 0)
2370 (re-search-backward
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002371 "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+"
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002372 (point-min) 0))
2373 (forward-char 1)
2374 (setq arg (1+ arg)))))
2375 (py-keep-region-active))
2376
2377(defun py-backward-into-nomenclature (&optional arg)
2378 "Move backward to beginning of a nomenclature section or word.
2379With optional ARG, move that many times. If ARG is negative, move
2380forward.
2381
2382A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2383 (interactive "p")
2384 (py-forward-into-nomenclature (- arg))
2385 (py-keep-region-active))
2386
2387
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002388
2389;; Documentation functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002390
2391;; dump the long form of the mode blurb; does the usual doc escapes,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002392;; plus lines of the form ^[vc]:name$ to suck variable & command docs
2393;; out of the right places, along with the keys they're on & current
2394;; values
Barry Warsaw7ae77681994-12-12 20:38:05 +00002395(defun py-dump-help-string (str)
2396 (with-output-to-temp-buffer "*Help*"
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002397 (let ((locals (buffer-local-variables))
2398 funckind funcname func funcdoc
2399 (start 0) mstart end
2400 keys )
Barry Warsaw7ae77681994-12-12 20:38:05 +00002401 (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start)
2402 (setq mstart (match-beginning 0) end (match-end 0)
2403 funckind (substring str (match-beginning 1) (match-end 1))
2404 funcname (substring str (match-beginning 2) (match-end 2))
2405 func (intern funcname))
2406 (princ (substitute-command-keys (substring str start mstart)))
2407 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002408 ((equal funckind "c") ; command
2409 (setq funcdoc (documentation func)
2410 keys (concat
2411 "Key(s): "
2412 (mapconcat 'key-description
2413 (where-is-internal func py-mode-map)
2414 ", "))))
2415 ((equal funckind "v") ; variable
Barry Warsaw604cefa1996-09-03 18:17:04 +00002416 (setq funcdoc (documentation-property func 'variable-documentation)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002417 keys (if (assq func locals)
2418 (concat
2419 "Local/Global values: "
2420 (prin1-to-string (symbol-value func))
2421 " / "
2422 (prin1-to-string (default-value func)))
2423 (concat
2424 "Value: "
2425 (prin1-to-string (symbol-value func))))))
2426 (t ; unexpected
2427 (error "Error in py-dump-help-string, tag `%s'" funckind)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002428 (princ (format "\n-> %s:\t%s\t%s\n\n"
2429 (if (equal funckind "c") "Command" "Variable")
2430 funcname keys))
2431 (princ funcdoc)
2432 (terpri)
2433 (setq start end))
2434 (princ (substitute-command-keys (substring str start))))
2435 (print-help-return-message)))
2436
2437(defun py-describe-mode ()
2438 "Dump long form of Python-mode docs."
2439 (interactive)
2440 (py-dump-help-string "Major mode for editing Python files.
2441Knows about Python indentation, tokens, comments and continuation lines.
2442Paragraphs are separated by blank lines only.
2443
2444Major sections below begin with the string `@'; specific function and
2445variable docs begin with `->'.
2446
2447@EXECUTING PYTHON CODE
2448
Barry Warsaw820273d1998-05-19 15:54:45 +00002449\\[py-execute-import-or-reload]\timports or reloads the file in the Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002450\\[py-execute-buffer]\tsends the entire buffer to the Python interpreter
2451\\[py-execute-region]\tsends the current region
Barry Warsaw820273d1998-05-19 15:54:45 +00002452\\[py-execute-def-or-class]\tsends the current function or class definition
2453\\[py-execute-string]\tsends an arbitrary string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002454\\[py-shell]\tstarts a Python interpreter window; this will be used by
Barry Warsaw820273d1998-05-19 15:54:45 +00002455\tsubsequent Python execution commands
2456%c:py-execute-import-or-reload
Barry Warsaw7ae77681994-12-12 20:38:05 +00002457%c:py-execute-buffer
2458%c:py-execute-region
Barry Warsaw820273d1998-05-19 15:54:45 +00002459%c:py-execute-def-or-class
2460%c:py-execute-string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002461%c:py-shell
2462
2463@VARIABLES
2464
2465py-indent-offset\tindentation increment
Barry Warsaw42f707f1996-07-29 21:05:05 +00002466py-block-comment-prefix\tcomment string used by comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002467
2468py-python-command\tshell command to invoke Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002469py-temp-directory\tdirectory used for temp files (if needed)
2470
2471py-beep-if-tab-change\tring the bell if tab-width is changed
2472%v:py-indent-offset
2473%v:py-block-comment-prefix
2474%v:py-python-command
Barry Warsaw7ae77681994-12-12 20:38:05 +00002475%v:py-temp-directory
2476%v:py-beep-if-tab-change
2477
2478@KINDS OF LINES
2479
2480Each physical line in the file is either a `continuation line' (the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002481preceding line ends with a backslash that's not part of a comment, or
2482the paren/bracket/brace nesting level at the start of the line is
2483non-zero, or both) or an `initial line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002484
2485An initial line is in turn a `blank line' (contains nothing except
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002486possibly blanks or tabs), a `comment line' (leftmost non-blank
2487character is `#'), or a `code line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002488
2489Comment Lines
2490
2491Although all comment lines are treated alike by Python, Python mode
2492recognizes two kinds that act differently with respect to indentation.
2493
2494An `indenting comment line' is a comment line with a blank, tab or
2495nothing after the initial `#'. The indentation commands (see below)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002496treat these exactly as if they were code lines: a line following an
Barry Warsaw7ae77681994-12-12 20:38:05 +00002497indenting comment line will be indented like the comment line. All
2498other comment lines (those with a non-whitespace character immediately
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002499following the initial `#') are `non-indenting comment lines', and
2500their indentation is ignored by the indentation commands.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002501
2502Indenting comment lines are by far the usual case, and should be used
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002503whenever possible. Non-indenting comment lines are useful in cases
2504like these:
Barry Warsaw7ae77681994-12-12 20:38:05 +00002505
2506\ta = b # a very wordy single-line comment that ends up being
2507\t #... continued onto another line
2508
2509\tif a == b:
2510##\t\tprint 'panic!' # old code we've `commented out'
2511\t\treturn a
2512
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002513Since the `#...' and `##' comment lines have a non-whitespace
2514character following the initial `#', Python mode ignores them when
2515computing the proper indentation for the next line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002516
2517Continuation Lines and Statements
2518
2519The Python-mode commands generally work on statements instead of on
2520individual lines, where a `statement' is a comment or blank line, or a
2521code line and all of its following continuation lines (if any)
2522considered as a single logical unit. The commands in this mode
2523generally (when it makes sense) automatically move to the start of the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002524statement containing point, even if point happens to be in the middle
2525of some continuation line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002526
2527
2528@INDENTATION
2529
2530Primarily for entering new code:
2531\t\\[indent-for-tab-command]\t indent line appropriately
2532\t\\[py-newline-and-indent]\t insert newline, then indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00002533\t\\[py-electric-backspace]\t reduce indentation, or delete single character
Barry Warsaw7ae77681994-12-12 20:38:05 +00002534
2535Primarily for reindenting existing code:
2536\t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally
2537\t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally
2538
2539\t\\[py-indent-region]\t reindent region to match its context
2540\t\\[py-shift-region-left]\t shift region left by py-indent-offset
2541\t\\[py-shift-region-right]\t shift region right by py-indent-offset
2542
2543Unlike most programming languages, Python uses indentation, and only
2544indentation, to specify block structure. Hence the indentation supplied
2545automatically by Python-mode is just an educated guess: only you know
2546the block structure you intend, so only you can supply correct
2547indentation.
2548
2549The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on
2550the indentation of preceding statements. E.g., assuming
2551py-indent-offset is 4, after you enter
2552\tif a > 0: \\[py-newline-and-indent]
2553the cursor will be moved to the position of the `_' (_ is not a
2554character in the file, it's just used here to indicate the location of
2555the cursor):
2556\tif a > 0:
2557\t _
2558If you then enter `c = d' \\[py-newline-and-indent], the cursor will move
2559to
2560\tif a > 0:
2561\t c = d
2562\t _
2563Python-mode cannot know whether that's what you intended, or whether
2564\tif a > 0:
2565\t c = d
2566\t_
2567was your intent. In general, Python-mode either reproduces the
2568indentation of the (closest code or indenting-comment) preceding
2569statement, or adds an extra py-indent-offset blanks if the preceding
2570statement has `:' as its last significant (non-whitespace and non-
2571comment) character. If the suggested indentation is too much, use
Barry Warsaw27ee1151997-12-03 05:03:44 +00002572\\[py-electric-backspace] to reduce it.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002573
2574Continuation lines are given extra indentation. If you don't like the
2575suggested indentation, change it to something you do like, and Python-
2576mode will strive to indent later lines of the statement in the same way.
2577
2578If a line is a continuation line by virtue of being in an unclosed
2579paren/bracket/brace structure (`list', for short), the suggested
2580indentation depends on whether the current line contains the first item
2581in the list. If it does, it's indented py-indent-offset columns beyond
2582the indentation of the line containing the open bracket. If you don't
2583like that, change it by hand. The remaining items in the list will mimic
2584whatever indentation you give to the first item.
2585
2586If a line is a continuation line because the line preceding it ends with
2587a backslash, the third and following lines of the statement inherit their
2588indentation from the line preceding them. The indentation of the second
2589line in the statement depends on the form of the first (base) line: if
2590the base line is an assignment statement with anything more interesting
2591than the backslash following the leftmost assigning `=', the second line
2592is indented two columns beyond that `='. Else it's indented to two
2593columns beyond the leftmost solid chunk of non-whitespace characters on
2594the base line.
2595
2596Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command]
2597repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block
2598structure you intend.
2599%c:indent-for-tab-command
2600%c:py-newline-and-indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00002601%c:py-electric-backspace
Barry Warsaw7ae77681994-12-12 20:38:05 +00002602
2603
2604The next function may be handy when editing code you didn't write:
2605%c:py-guess-indent-offset
2606
2607
2608The remaining `indent' functions apply to a region of Python code. They
2609assume the block structure (equals indentation, in Python) of the region
2610is correct, and alter the indentation in various ways while preserving
2611the block structure:
2612%c:py-indent-region
2613%c:py-shift-region-left
2614%c:py-shift-region-right
2615
2616@MARKING & MANIPULATING REGIONS OF CODE
2617
2618\\[py-mark-block]\t mark block of lines
Barry Warsaw2518c671997-11-05 00:51:08 +00002619\\[py-mark-def-or-class]\t mark smallest enclosing def
2620\\[universal-argument] \\[py-mark-def-or-class]\t mark smallest enclosing class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002621\\[comment-region]\t comment out region of code
2622\\[universal-argument] \\[comment-region]\t uncomment region of code
Barry Warsaw7ae77681994-12-12 20:38:05 +00002623%c:py-mark-block
Barry Warsaw2518c671997-11-05 00:51:08 +00002624%c:py-mark-def-or-class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002625%c:comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002626
2627@MOVING POINT
2628
2629\\[py-previous-statement]\t move to statement preceding point
2630\\[py-next-statement]\t move to statement following point
2631\\[py-goto-block-up]\t move up to start of current block
Barry Warsawab0e86c1998-05-19 15:31:46 +00002632\\[py-beginning-of-def-or-class]\t move to start of def
2633\\[universal-argument] \\[py-beginning-of-def-or-class]\t move to start of class
2634\\[py-end-of-def-or-class]\t move to end of def
2635\\[universal-argument] \\[py-end-of-def-or-class]\t move to end of class
Barry Warsaw7ae77681994-12-12 20:38:05 +00002636
2637The first two move to one statement beyond the statement that contains
2638point. A numeric prefix argument tells them to move that many
2639statements instead. Blank lines, comment lines, and continuation lines
2640do not count as `statements' for these commands. So, e.g., you can go
2641to the first code statement in a file by entering
2642\t\\[beginning-of-buffer]\t to move to the top of the file
2643\t\\[py-next-statement]\t to skip over initial comments and blank lines
2644Or do `\\[py-previous-statement]' with a huge prefix argument.
2645%c:py-previous-statement
2646%c:py-next-statement
2647%c:py-goto-block-up
Barry Warsawab0e86c1998-05-19 15:31:46 +00002648%c:py-beginning-of-def-or-class
2649%c:py-end-of-def-or-class
Barry Warsaw7ae77681994-12-12 20:38:05 +00002650
2651@LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE
2652
2653`\\[indent-new-comment-line]' is handy for entering a multi-line comment.
2654
2655`\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the
2656overall class and def structure of a module.
2657
2658`\\[back-to-indentation]' moves point to a line's first non-blank character.
2659
2660`\\[indent-relative]' is handy for creating odd indentation.
2661
2662@OTHER EMACS HINTS
2663
2664If you don't like the default value of a variable, change its value to
2665whatever you do like by putting a `setq' line in your .emacs file.
2666E.g., to set the indentation increment to 4, put this line in your
2667.emacs:
2668\t(setq py-indent-offset 4)
2669To see the value of a variable, do `\\[describe-variable]' and enter the variable
2670name at the prompt.
2671
2672When entering a key sequence like `C-c C-n', it is not necessary to
2673release the CONTROL key after doing the `C-c' part -- it suffices to
2674press the CONTROL key, press and release `c' (while still holding down
2675CONTROL), press and release `n' (while still holding down CONTROL), &
2676then release CONTROL.
2677
2678Entering Python mode calls with no arguments the value of the variable
2679`python-mode-hook', if that value exists and is not nil; for backward
2680compatibility it also tries `py-mode-hook'; see the `Hooks' section of
2681the Elisp manual for details.
2682
2683Obscure: When python-mode is first loaded, it looks for all bindings
2684to newline-and-indent in the global keymap, and shadows them with
2685local bindings to py-newline-and-indent."))
2686
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002687
2688;; Helper functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002689(defvar py-parse-state-re
2690 (concat
2691 "^[ \t]*\\(if\\|elif\\|else\\|while\\|def\\|class\\)\\>"
2692 "\\|"
2693 "^[^ #\t\n]"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002694
Barry Warsaw7ae77681994-12-12 20:38:05 +00002695(defun py-parse-state ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002696 "Return the parse state at point (see `parse-partial-sexp' docs)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002697 (save-excursion
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002698 (let ((here (point))
Barry Warsaw742a5111998-03-13 17:29:15 +00002699 pps done)
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002700 (while (not done)
2701 ;; back up to the first preceding line (if any; else start of
2702 ;; buffer) that begins with a popular Python keyword, or a
2703 ;; non- whitespace and non-comment character. These are good
2704 ;; places to start parsing to see whether where we started is
2705 ;; at a non-zero nesting level. It may be slow for people who
2706 ;; write huge code blocks or huge lists ... tough beans.
2707 (re-search-backward py-parse-state-re nil 'move)
2708 (beginning-of-line)
Barry Warsawf64b4051998-02-12 16:52:14 +00002709 ;; In XEmacs, we have a much better way to test for whether
2710 ;; we're in a triple-quoted string or not. Emacs does not
Barry Warsaw145ab1c1998-05-19 14:49:49 +00002711 ;; have this built-in function, which is its loss because
Barry Warsawf64b4051998-02-12 16:52:14 +00002712 ;; without scanning from the beginning of the buffer, there's
2713 ;; no accurate way to determine this otherwise.
2714 (if (not (fboundp 'buffer-syntactic-context))
2715 ;; Emacs
Barry Warsaw585f7331998-04-01 21:13:51 +00002716 (progn
2717 (save-excursion (setq pps (parse-partial-sexp (point) here)))
Barry Warsawf64b4051998-02-12 16:52:14 +00002718 ;; make sure we don't land inside a triple-quoted string
Barry Warsaw742a5111998-03-13 17:29:15 +00002719 (setq done (or (not (nth 3 pps))
2720 (bobp))))
Barry Warsawf64b4051998-02-12 16:52:14 +00002721 ;; XEmacs
2722 (setq done (or (not (buffer-syntactic-context))
2723 (bobp)))
2724 (when done
2725 (setq pps (parse-partial-sexp (point) here)))
2726 ))
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002727 pps)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002728
Barry Warsaw7ae77681994-12-12 20:38:05 +00002729(defun py-nesting-level ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002730 "Return the buffer position of the last unclosed enclosing list.
2731If nesting level is zero, return nil."
Barry Warsawf64b4051998-02-12 16:52:14 +00002732 (let ((status (py-parse-state)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002733 (if (zerop (car status))
2734 nil ; not in a nest
2735 (car (cdr status))))) ; char# of open bracket
2736
Barry Warsaw7ae77681994-12-12 20:38:05 +00002737(defun py-backslash-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002738 "Return t iff preceding line ends with backslash that is not in a comment."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002739 (save-excursion
2740 (beginning-of-line)
2741 (and
2742 ;; use a cheap test first to avoid the regexp if possible
2743 ;; use 'eq' because char-after may return nil
2744 (eq (char-after (- (point) 2)) ?\\ )
2745 ;; make sure; since eq test passed, there is a preceding line
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002746 (forward-line -1) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002747 (looking-at py-continued-re))))
2748
Barry Warsaw7ae77681994-12-12 20:38:05 +00002749(defun py-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002750 "Return t iff current line is a continuation line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002751 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002752 (beginning-of-line)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002753 (or (py-backslash-continuation-line-p)
2754 (py-nesting-level))))
2755
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002756(defun py-goto-beginning-of-tqs (delim)
2757 "Go to the beginning of the triple quoted string we find ourselves in.
2758DELIM is the TQS string delimiter character we're searching backwards
2759for."
2760 (let ((skip (and delim (make-string 1 delim))))
2761 (when skip
2762 (save-excursion
2763 (py-safe (search-backward skip))
2764 (if (and (eq (char-before) delim)
2765 (eq (char-before (1- (point))) delim))
2766 (setq skip (make-string 3 delim))))
2767 ;; we're looking at a triple-quoted string
2768 (py-safe (search-backward skip)))))
2769
Barry Warsaw7ae77681994-12-12 20:38:05 +00002770(defun py-goto-initial-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002771 "Go to the initial line of the current statement.
2772Usually this is the line we're on, but if we're on the 2nd or
2773following lines of a continuation block, we need to go up to the first
2774line of the block."
2775 ;; Tricky: We want to avoid quadratic-time behavior for long
2776 ;; continued blocks, whether of the backslash or open-bracket
2777 ;; varieties, or a mix of the two. The following manages to do that
2778 ;; in the usual cases.
2779 ;;
2780 ;; Also, if we're sitting inside a triple quoted string, this will
2781 ;; drop us at the line that begins the string.
Barry Warsaw9ec9fbc1998-01-21 05:15:57 +00002782 (let (open-bracket-pos)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002783 (while (py-continuation-line-p)
2784 (beginning-of-line)
2785 (if (py-backslash-continuation-line-p)
2786 (while (py-backslash-continuation-line-p)
2787 (forward-line -1))
2788 ;; else zip out of nested brackets/braces/parens
2789 (while (setq open-bracket-pos (py-nesting-level))
2790 (goto-char open-bracket-pos)))))
2791 (beginning-of-line))
2792
Barry Warsaw7ae77681994-12-12 20:38:05 +00002793(defun py-goto-beyond-final-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002794 "Go to the point just beyond the fine line of the current statement.
2795Usually this is the start of the next line, but if this is a
2796multi-line statement we need to skip over the continuation lines."
2797 ;; Tricky: Again we need to be clever to avoid quadratic time
2798 ;; behavior.
2799 ;;
2800 ;; XXX: Not quite the right solution, but deals with multi-line doc
2801 ;; strings
Barry Warsaw751f4931998-05-19 16:06:21 +00002802 (if (looking-at (concat "[ \t]*\\(" py-stringlit-re "\\)"))
2803 (goto-char (match-end 0)))
2804 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +00002805 (forward-line 1)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002806 (let (state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002807 (while (and (py-continuation-line-p)
2808 (not (eobp)))
2809 ;; skip over the backslash flavor
2810 (while (and (py-backslash-continuation-line-p)
2811 (not (eobp)))
2812 (forward-line 1))
2813 ;; if in nest, zip to the end of the nest
2814 (setq state (py-parse-state))
2815 (if (and (not (zerop (car state)))
2816 (not (eobp)))
2817 (progn
Barry Warsawaffc0ca1997-11-03 16:59:38 +00002818 (parse-partial-sexp (point) (point-max) 0 nil state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002819 (forward-line 1))))))
2820
Barry Warsaw7ae77681994-12-12 20:38:05 +00002821(defun py-statement-opens-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002822 "Return t iff the current statement opens a block.
2823I.e., iff it ends with a colon that is not in a comment. Point should
2824be at the start of a statement."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002825 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002826 (let ((start (point))
2827 (finish (progn (py-goto-beyond-final-line) (1- (point))))
2828 (searching t)
2829 (answer nil)
2830 state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002831 (goto-char start)
2832 (while searching
2833 ;; look for a colon with nothing after it except whitespace, and
2834 ;; maybe a comment
2835 (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$"
2836 finish t)
2837 (if (eq (point) finish) ; note: no `else' clause; just
2838 ; keep searching if we're not at
2839 ; the end yet
2840 ;; sure looks like it opens a block -- but it might
2841 ;; be in a comment
2842 (progn
2843 (setq searching nil) ; search is done either way
2844 (setq state (parse-partial-sexp start
2845 (match-beginning 0)))
2846 (setq answer (not (nth 4 state)))))
2847 ;; search failed: couldn't find another interesting colon
2848 (setq searching nil)))
2849 answer)))
2850
Barry Warsawf831d811996-07-31 20:42:59 +00002851(defun py-statement-closes-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002852 "Return t iff the current statement closes a block.
2853I.e., if the line starts with `return', `raise', `break', `continue',
2854and `pass'. This doesn't catch embedded statements."
Barry Warsawf831d811996-07-31 20:42:59 +00002855 (let ((here (point)))
2856 (back-to-indentation)
2857 (prog1
Barry Warsawaffc0ca1997-11-03 16:59:38 +00002858 (looking-at (concat py-block-closing-keywords-re "\\>"))
Barry Warsawf831d811996-07-31 20:42:59 +00002859 (goto-char here))))
2860
Barry Warsaw7ae77681994-12-12 20:38:05 +00002861(defun py-goto-beyond-block ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002862 "Go to point just beyond the final line of block begun by the current line.
2863This is the same as where `py-goto-beyond-final-line' goes unless
2864we're on colon line, in which case we go to the end of the block.
2865Assumes point is at the beginning of the line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002866 (if (py-statement-opens-block-p)
2867 (py-mark-block nil 'just-move)
2868 (py-goto-beyond-final-line)))
2869
Barry Warsaw7ae77681994-12-12 20:38:05 +00002870(defun py-goto-statement-at-or-above ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002871 "Go to the start of the first statement at or preceding point.
2872Return t if there is such a statement, otherwise nil. `Statement'
2873does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002874 (py-goto-initial-line)
2875 (if (looking-at py-blank-or-comment-re)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002876 ;; skip back over blank & comment lines
2877 ;; note: will skip a blank or comment line that happens to be
2878 ;; a continuation line too
2879 (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t)
2880 (progn (py-goto-initial-line) t)
2881 nil)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002882 t))
2883
Barry Warsaw7ae77681994-12-12 20:38:05 +00002884(defun py-goto-statement-below ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002885 "Go to start of the first statement following the statement containing point.
2886Return t if there is such a statement, otherwise nil. `Statement'
2887does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002888 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002889 (let ((start (point)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002890 (py-goto-beyond-final-line)
2891 (while (and
2892 (looking-at py-blank-or-comment-re)
2893 (not (eobp)))
2894 (forward-line 1))
2895 (if (eobp)
2896 (progn (goto-char start) nil)
2897 t)))
2898
Barry Warsaw7ae77681994-12-12 20:38:05 +00002899(defun py-go-up-tree-to-keyword (key)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002900 "Go to begining of statement starting with KEY, at or preceding point.
2901
2902KEY is a regular expression describing a Python keyword. Skip blank
2903lines and non-indenting comments. If the statement found starts with
2904KEY, then stop, otherwise go back to first enclosing block starting
2905with KEY. If successful, leave point at the start of the KEY line and
2906return t. Otherwise, leav point at an undefined place and return nil."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002907 ;; skip blanks and non-indenting #
2908 (py-goto-initial-line)
2909 (while (and
2910 (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2911 (zerop (forward-line -1))) ; go back
2912 nil)
2913 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002914 (let* ((re (concat "[ \t]*" key "\\b"))
2915 (case-fold-search nil) ; let* so looking-at sees this
2916 (found (looking-at re))
2917 (dead nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002918 (while (not (or found dead))
2919 (condition-case nil ; in case no enclosing block
2920 (py-goto-block-up 'no-mark)
2921 (error (setq dead t)))
2922 (or dead (setq found (looking-at re))))
2923 (beginning-of-line)
2924 found))
2925
Barry Warsaw7ae77681994-12-12 20:38:05 +00002926(defun py-suck-up-leading-text ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002927 "Return string in buffer from start of indentation to end of line.
2928Prefix with \"...\" if leading whitespace was skipped."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002929 (save-excursion
2930 (back-to-indentation)
2931 (concat
2932 (if (bolp) "" "...")
2933 (buffer-substring (point) (progn (end-of-line) (point))))))
2934
Barry Warsaw7ae77681994-12-12 20:38:05 +00002935(defun py-suck-up-first-keyword ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002936 "Return first keyword on the line as a Lisp symbol.
2937`Keyword' is defined (essentially) as the regular expression
2938([a-z]+). Returns nil if none was found."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002939 (let ((case-fold-search nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002940 (if (looking-at "[ \t]*\\([a-z]+\\)\\b")
2941 (intern (buffer-substring (match-beginning 1) (match-end 1)))
2942 nil)))
2943
Barry Warsawb3e81d51996-09-04 15:12:42 +00002944(defun py-current-defun ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002945 "Python value for `add-log-current-defun-function'.
2946This tells add-log.el how to find the current function/method/variable."
Barry Warsawb3e81d51996-09-04 15:12:42 +00002947 (save-excursion
2948 (if (re-search-backward py-defun-start-re nil t)
2949 (or (match-string 3)
2950 (let ((method (match-string 2)))
2951 (if (and (not (zerop (length (match-string 1))))
2952 (re-search-backward py-class-start-re nil t))
2953 (concat (match-string 1) "." method)
2954 method)))
2955 nil)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002956
2957
Barry Warsawfec75d61995-07-05 23:26:15 +00002958(defconst py-help-address "python-mode@python.org"
Barry Warsaw850437a1995-03-08 21:50:28 +00002959 "Address accepting submission of bug reports.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002960
Barry Warsaw850437a1995-03-08 21:50:28 +00002961(defun py-version ()
2962 "Echo the current version of `python-mode' in the minibuffer."
2963 (interactive)
2964 (message "Using `python-mode' version %s" py-version)
2965 (py-keep-region-active))
2966
2967;; only works under Emacs 19
2968;(eval-when-compile
2969; (require 'reporter))
2970
2971(defun py-submit-bug-report (enhancement-p)
2972 "Submit via mail a bug report on `python-mode'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00002973With \\[universal-argument] (programmatically, argument ENHANCEMENT-P
2974non-nil) just submit an enhancement request."
Barry Warsaw850437a1995-03-08 21:50:28 +00002975 (interactive
2976 (list (not (y-or-n-p
Barry Warsaw41a05c71998-08-10 16:33:12 +00002977 "Is this a bug report (hit `n' to send other comments)? "))))
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00002978 (let ((reporter-prompt-for-summary-p (if enhancement-p
2979 "(Very) brief summary: "
2980 t)))
Barry Warsaw850437a1995-03-08 21:50:28 +00002981 (require 'reporter)
2982 (reporter-submit-bug-report
2983 py-help-address ;address
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00002984 (concat "python-mode " py-version) ;pkgname
Barry Warsaw850437a1995-03-08 21:50:28 +00002985 ;; varlist
2986 (if enhancement-p nil
2987 '(py-python-command
2988 py-indent-offset
2989 py-block-comment-prefix
Barry Warsaw850437a1995-03-08 21:50:28 +00002990 py-temp-directory
2991 py-beep-if-tab-change))
2992 nil ;pre-hooks
2993 nil ;post-hooks
2994 "Dear Barry,") ;salutation
2995 (if enhancement-p nil
2996 (set-mark (point))
2997 (insert
2998"Please replace this text with a sufficiently large code sample\n\
2999and an exact recipe so that I can reproduce your problem. Failure\n\
3000to do so may mean a greater delay in fixing your bug.\n\n")
3001 (exchange-point-and-mark)
3002 (py-keep-region-active))))
3003
3004
Barry Warsaw47384781997-11-26 05:27:45 +00003005(defun py-kill-emacs-hook ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003006 "Delete files in `py-file-queue'.
3007These are Python temporary files awaiting execution."
Barry Warsaw47384781997-11-26 05:27:45 +00003008 (mapcar #'(lambda (filename)
3009 (py-safe (delete-file filename)))
3010 py-file-queue))
3011
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003012;; arrange to kill temp files when Emacs exists
Barry Warsawc72c11c1997-08-09 06:42:08 +00003013(add-hook 'kill-emacs-hook 'py-kill-emacs-hook)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003014
3015
3016
3017(provide 'python-mode)
3018;;; python-mode.el ends here