blob: 8a059f51decfb50c8a122c2fcba261a9f8dfd8a8 [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/>"
Barry Warsaw5ed843f1999-07-28 22:06:06 +0000100 :group 'languages
101 :prefix "py-")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000102
Barry Warsawc72c11c1997-08-09 06:42:08 +0000103(defcustom py-python-command "python"
104 "*Shell command used to start Python interpreter."
105 :type 'string
106 :group 'python)
107
Barry Warsawa2398801998-04-09 23:28:20 +0000108(defcustom py-jpython-command "jpython"
109 "*Shell command used to start the JPython interpreter."
110 :type 'string
Barry Warsaw5ed843f1999-07-28 22:06:06 +0000111 :group 'python
112 :tag "JPython Command")
Barry Warsawa2398801998-04-09 23:28:20 +0000113
Barry Warsawaa384fd1999-02-16 23:36:16 +0000114(defcustom py-default-interpreter 'cpython
115 "*Which Python interpreter is used by default.
116The value for this variable can be either `cpython' or `jpython'.
117
118When the value is `cpython', the variables `py-python-command' and
119`py-python-command-args' are consulted to determine the interpreter
120and arguments to use.
121
122When the value is `jpython', the variables `py-jpython-command' and
123`py-jpython-command-args' are consulted to determine the interpreter
124and arguments to use.
125
Barry Warsaw11f21561999-07-28 21:59:43 +0000126Note that this variable is consulted only the first time that a Python
127mode buffer is visited during an Emacs session. After that, use
Barry Warsawaa384fd1999-02-16 23:36:16 +0000128\\[py-toggle-shells] to change the interpreter shell."
129 :type '(choice (const :tag "Python (a.k.a. CPython)" cpython)
130 (const :tag "JPython" jpython))
131 :group 'python)
132
Barry Warsaw8f972b71998-02-05 20:45:49 +0000133(defcustom py-python-command-args '("-i")
134 "*List of string arguments to be used when starting a Python shell."
135 :type '(repeat string)
136 :group 'python)
137
Barry Warsawa2398801998-04-09 23:28:20 +0000138(defcustom py-jpython-command-args '("-i")
139 "*List of string arguments to be used when starting a JPython shell."
140 :type '(repeat string)
Barry Warsaw5ed843f1999-07-28 22:06:06 +0000141 :group 'python
142 :tag "JPython Command Args")
Barry Warsawa2398801998-04-09 23:28:20 +0000143
Barry Warsawc72c11c1997-08-09 06:42:08 +0000144(defcustom py-indent-offset 4
Barry Warsaw41a05c71998-08-10 16:33:12 +0000145 "*Amount of offset per level of indentation.
146`\\[py-guess-indent-offset]' can usually guess a good value when
147you're editing someone else's Python code."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000148 :type 'integer
149 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000150
Barry Warsaw742a5111998-03-13 17:29:15 +0000151(defcustom py-smart-indentation t
152 "*Should `python-mode' try to automagically set some indentation variables?
153When this variable is non-nil, two things happen when a buffer is set
154to `python-mode':
155
Barry Warsawc0d2d511999-06-03 22:18:59 +0000156 1. `py-indent-offset' is guessed from existing code in the buffer.
Barry Warsaw639eea61998-03-16 18:12:13 +0000157 Only guessed values between 2 and 8 are considered. If a valid
Barry Warsaw742a5111998-03-13 17:29:15 +0000158 guess can't be made (perhaps because you are visiting a new
Barry Warsaw639eea61998-03-16 18:12:13 +0000159 file), then the value in `py-indent-offset' is used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000160
Barry Warsaw639eea61998-03-16 18:12:13 +0000161 2. `indent-tabs-mode' is turned off if `py-indent-offset' does not
162 equal `tab-width' (`indent-tabs-mode' is never turned on by
163 Python mode). This means that for newly written code, tabs are
164 only inserted in indentation if one tab is one indentation
165 level, otherwise only spaces are used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000166
Barry Warsaw8046bef1998-03-13 20:04:52 +0000167Note that both these settings occur *after* `python-mode-hook' is run,
168so if you want to defeat the automagic configuration, you must also
169set `py-smart-indentation' to nil in your `python-mode-hook'."
Barry Warsaw742a5111998-03-13 17:29:15 +0000170 :type 'boolean
171 :group 'python)
172
Barry Warsawc72c11c1997-08-09 06:42:08 +0000173(defcustom py-align-multiline-strings-p t
174 "*Flag describing how multi-line triple quoted strings are aligned.
Barry Warsaw095e9c61995-09-19 20:01:42 +0000175When this flag is non-nil, continuation lines are lined up under the
176preceding line's indentation. When this flag is nil, continuation
Barry Warsawc72c11c1997-08-09 06:42:08 +0000177lines are aligned to column zero."
178 :type '(choice (const :tag "Align under preceding line" t)
179 (const :tag "Align to column zero" nil))
180 :group 'python)
Barry Warsaw095e9c61995-09-19 20:01:42 +0000181
Barry Warsaw218eb751998-09-22 19:51:47 +0000182(defcustom py-block-comment-prefix "##"
Barry Warsaw867a32a1996-03-07 18:30:26 +0000183 "*String used by \\[comment-region] to comment out a block of code.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000184This should follow the convention for non-indenting comment lines so
185that the indentation commands won't get confused (i.e., the string
186should be of the form `#x...' where `x' is not a blank or a tab, and
Barry Warsaw218eb751998-09-22 19:51:47 +0000187`...' is arbitrary). However, this string should not end in whitespace."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000188 :type 'string
189 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000190
Barry Warsawc72c11c1997-08-09 06:42:08 +0000191(defcustom py-honor-comment-indentation t
Barry Warsaw6d627751996-03-06 18:41:38 +0000192 "*Controls how comment lines influence subsequent indentation.
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000193
Barry Warsaw6d627751996-03-06 18:41:38 +0000194When nil, all comment lines are skipped for indentation purposes, and
Barry Warsawc72c11c1997-08-09 06:42:08 +0000195if possible, a faster algorithm is used (i.e. X/Emacs 19 and beyond).
Barry Warsaw6d627751996-03-06 18:41:38 +0000196
197When t, lines that begin with a single `#' are a hint to subsequent
198line indentation. If the previous line is such a comment line (as
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000199opposed to one that starts with `py-block-comment-prefix'), then its
Barry Warsaw6d627751996-03-06 18:41:38 +0000200indentation is used as a hint for this line's indentation. Lines that
201begin with `py-block-comment-prefix' are ignored for indentation
202purposes.
203
204When not nil or t, comment lines that begin with a `#' are used as
Barry Warsawc72c11c1997-08-09 06:42:08 +0000205indentation hints, unless the comment character is in column zero."
206 :type '(choice
207 (const :tag "Skip all comment lines (fast)" nil)
208 (const :tag "Single # `sets' indentation for next line" t)
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000209 (const :tag "Single # `sets' indentation except at column zero"
210 other)
Barry Warsawc72c11c1997-08-09 06:42:08 +0000211 )
212 :group 'python)
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000213
Barry Warsaw516b6201997-08-09 06:43:20 +0000214(defcustom py-temp-directory
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000215 (let ((ok '(lambda (x)
216 (and x
217 (setq x (expand-file-name x)) ; always true
218 (file-directory-p x)
219 (file-writable-p x)
220 x))))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000221 (or (funcall ok (getenv "TMPDIR"))
222 (funcall ok "/usr/tmp")
223 (funcall ok "/tmp")
224 (funcall ok ".")
225 (error
Barry Warsaw6c6db0a1998-02-25 16:33:56 +0000226 "Couldn't find a usable temp directory -- set `py-temp-directory'")))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000227 "*Directory used for temp files created by a *Python* process.
228By default, the first directory from this list that exists and that you
229can write into: the value (if any) of the environment variable TMPDIR,
Barry Warsawc72c11c1997-08-09 06:42:08 +0000230/usr/tmp, /tmp, or the current directory."
231 :type 'string
232 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000233
Barry Warsaw516b6201997-08-09 06:43:20 +0000234(defcustom py-beep-if-tab-change t
Barry Warsaw41a05c71998-08-10 16:33:12 +0000235 "*Ring the bell if `tab-width' is changed.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000236If a comment of the form
237
238 \t# vi:set tabsize=<number>:
239
240is found before the first code line when the file is entered, and the
241current value of (the general Emacs variable) `tab-width' does not
242equal <number>, `tab-width' is set to <number>, a message saying so is
243displayed in the echo area, and if `py-beep-if-tab-change' is non-nil
Barry Warsawc72c11c1997-08-09 06:42:08 +0000244the Emacs bell is also rung as a warning."
245 :type 'boolean
246 :group 'python)
247
Barry Warsaw9981d221997-12-03 05:25:48 +0000248(defcustom py-jump-on-exception t
249 "*Jump to innermost exception frame in *Python Output* buffer.
Barry Warsaw12c92941998-08-10 21:44:37 +0000250When this variable is non-nil and an exception occurs when running
Barry Warsaw9981d221997-12-03 05:25:48 +0000251Python code synchronously in a subprocess, jump immediately to the
Barry Warsaw12c92941998-08-10 21:44:37 +0000252source code of the innermost traceback frame."
Barry Warsaw3bfed5b1998-05-19 16:25:04 +0000253 :type 'boolean
254 :group 'python)
255
256(defcustom py-ask-about-save t
257 "If not nil, ask about which buffers to save before executing some code.
258Otherwise, all modified buffers are saved without asking."
259 :type 'boolean
260 :group 'python)
Barry Warsaw9981d221997-12-03 05:25:48 +0000261
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000262(defcustom py-backspace-function 'backward-delete-char-untabify
263 "*Function called by `py-electric-backspace' when deleting backwards."
264 :type 'function
265 :group 'python)
266
267(defcustom py-delete-function 'delete-char
268 "*Function called by `py-electric-delete' when deleting forwards."
269 :type 'function
270 :group 'python)
271
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000272(defcustom py-imenu-show-method-args-p nil
273 "*Controls echoing of arguments of functions & methods in the Imenu buffer.
274When non-nil, arguments are printed."
275 :type 'boolean
276 :group 'python)
277(make-variable-buffer-local 'py-indent-offset)
278
Barry Warsawc0ecb531998-01-20 21:43:34 +0000279;; Not customizable
280(defvar py-master-file nil
281 "If non-nil, execute the named file instead of the buffer's file.
Barry Warsaw50b3eb61998-02-25 15:57:47 +0000282The intent is to allow you to set this variable in the file's local
Barry Warsawc0ecb531998-01-20 21:43:34 +0000283variable section, e.g.:
284
285 # Local Variables:
286 # py-master-file: \"master.py\"
287 # End:
288
Barry Warsaw41a05c71998-08-10 16:33:12 +0000289so that typing \\[py-execute-buffer] in that buffer executes the named
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000290master file instead of the buffer's file. If the file name has a
291relative path, the value of variable `default-directory' for the
292buffer is prepended to come up with a file name.")
Barry Warsawc0ecb531998-01-20 21:43:34 +0000293(make-variable-buffer-local 'py-master-file)
294
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000295
Barry Warsawc72c11c1997-08-09 06:42:08 +0000296
297;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
298;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT
299
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000300(defconst py-emacs-features
301 (let (features)
302 ;; NTEmacs 19.34.6 has a broken make-temp-name; it always returns
303 ;; the same string.
304 (let ((tmp1 (make-temp-name ""))
305 (tmp2 (make-temp-name "")))
306 (if (string-equal tmp1 tmp2)
307 (push 'broken-temp-names features)))
308 ;; return the features
309 features)
Barry Warsawc12c62e1997-09-04 04:18:07 +0000310 "A list of features extant in the Emacs you are using.
Barry Warsaw6ae21ad1997-11-06 14:36:49 +0000311There are many flavors of Emacs out there, with different levels of
312support for features needed by `python-mode'.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000313
Barry Warsawfb07f401997-02-24 03:37:22 +0000314(defvar python-font-lock-keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000315 (let ((kw1 (mapconcat 'identity
316 '("and" "assert" "break" "class"
317 "continue" "def" "del" "elif"
318 "else" "except" "exec" "for"
319 "from" "global" "if" "import"
320 "in" "is" "lambda" "not"
321 "or" "pass" "print" "raise"
322 "return" "while"
323 )
324 "\\|"))
325 (kw2 (mapconcat 'identity
326 '("else:" "except:" "finally:" "try:")
327 "\\|"))
328 )
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000329 (list
Barry Warsawef3c8911997-11-05 18:55:50 +0000330 ;; keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000331 (cons (concat "\\b\\(" kw1 "\\)\\b[ \n\t(]") 1)
332 ;; block introducing keywords with immediately following colons.
333 ;; Yes "except" is in both lists.
334 (cons (concat "\\b\\(" kw2 "\\)[ \n\t(]") 1)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000335 ;; classes
336 '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
337 1 font-lock-type-face)
338 ;; functions
339 '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
340 1 font-lock-function-name-face)
341 ))
Barry Warsaw62d9d6e1996-03-06 20:32:27 +0000342 "Additional expressions to highlight in Python mode.")
Barry Warsawfb07f401997-02-24 03:37:22 +0000343(put 'python-mode 'font-lock-defaults '(python-font-lock-keywords))
344
Barry Warsawe467bfb1997-11-26 05:40:58 +0000345;; have to bind py-file-queue before installing the kill-emacs-hook
Barry Warsaw7ae77681994-12-12 20:38:05 +0000346(defvar py-file-queue nil
347 "Queue of Python temp files awaiting execution.
348Currently-active file is at the head of the list.")
349
Barry Warsawc72c11c1997-08-09 06:42:08 +0000350
351;; Constants
352
Barry Warsawc72c11c1997-08-09 06:42:08 +0000353(defconst py-stringlit-re
354 (concat
Barry Warsaw751f4931998-05-19 16:06:21 +0000355 ;; These fail if backslash-quote ends the string (not worth
356 ;; fixing?). They precede the short versions so that the first two
357 ;; quotes don't look like an empty short string.
358 ;;
359 ;; (maybe raw), long single quoted triple quoted strings (SQTQ),
360 ;; with potential embedded single quotes
361 "[rR]?'''[^']*\\(\\('[^']\\|''[^']\\)[^']*\\)*'''"
362 "\\|"
363 ;; (maybe raw), long double quoted triple quoted strings (DQTQ),
364 ;; with potential embedded double quotes
365 "[rR]?\"\"\"[^\"]*\\(\\(\"[^\"]\\|\"\"[^\"]\\)[^\"]*\\)*\"\"\""
366 "\\|"
367 "[rR]?'\\([^'\n\\]\\|\\\\.\\)*'" ; single-quoted
Barry Warsawc72c11c1997-08-09 06:42:08 +0000368 "\\|" ; or
Barry Warsaw751f4931998-05-19 16:06:21 +0000369 "[rR]?\"\\([^\"\n\\]\\|\\\\.\\)*\"" ; double-quoted
Barry Warsaw41a05c71998-08-10 16:33:12 +0000370 )
371 "Regular expression matching a Python string literal.")
Barry Warsaw751f4931998-05-19 16:06:21 +0000372
Barry Warsawc72c11c1997-08-09 06:42:08 +0000373(defconst py-continued-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000374 ;; This is tricky because a trailing backslash does not mean
375 ;; continuation if it's in a comment
Barry Warsawc72c11c1997-08-09 06:42:08 +0000376 (concat
377 "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*"
Barry Warsaw41a05c71998-08-10 16:33:12 +0000378 "\\\\$")
379 "Regular expression matching Python backslash continuation lines.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000380
Barry Warsaw41a05c71998-08-10 16:33:12 +0000381(defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)"
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000382 "Regular expression matching a blank or comment line.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000383
Barry Warsawc72c11c1997-08-09 06:42:08 +0000384(defconst py-outdent-re
385 (concat "\\(" (mapconcat 'identity
386 '("else:"
387 "except\\(\\s +.*\\)?:"
388 "finally:"
389 "elif\\s +.*:")
390 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000391 "\\)")
392 "Regular expression matching statements to be dedented one level.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000393
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000394(defconst py-block-closing-keywords-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000395 "\\(return\\|raise\\|break\\|continue\\|pass\\)"
396 "Regular expression matching keywords which typically close a block.")
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000397
Barry Warsawc72c11c1997-08-09 06:42:08 +0000398(defconst py-no-outdent-re
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000399 (concat
400 "\\("
401 (mapconcat 'identity
402 (list "try:"
403 "except\\(\\s +.*\\)?:"
404 "while\\s +.*:"
405 "for\\s +.*:"
406 "if\\s +.*:"
407 "elif\\s +.*:"
408 (concat py-block-closing-keywords-re "[ \t\n]")
409 )
410 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000411 "\\)")
412 "Regular expression matching lines not to dedent after.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000413
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000414(defconst py-defun-start-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000415 "^\\([ \t]*\\)def[ \t]+\\([a-zA-Z_0-9]+\\)\\|\\(^[a-zA-Z_0-9]+\\)[ \t]*="
416 ;; If you change this, you probably have to change py-current-defun
417 ;; as well. This is only used by py-current-defun to find the name
418 ;; for add-log.el.
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000419 "Regular expression matching a function, method, or variable assignment.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000420
Barry Warsaw41a05c71998-08-10 16:33:12 +0000421(defconst py-class-start-re "^class[ \t]*\\([a-zA-Z_0-9]+\\)"
422 ;; If you change this, you probably have to change py-current-defun
423 ;; as well. This is only used by py-current-defun to find the name
424 ;; for add-log.el.
425 "Regular expression for finding a class name.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000426
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000427(defconst py-traceback-line-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000428 "[ \t]+File \"\\([^\"]+\\)\", line \\([0-9]+\\)"
429 "Regular expression that describes tracebacks.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000430
431
432
Barry Warsawc72c11c1997-08-09 06:42:08 +0000433;; Major mode boilerplate
434
Barry Warsaw7ae77681994-12-12 20:38:05 +0000435;; define a mode-specific abbrev table for those who use such things
436(defvar python-mode-abbrev-table nil
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000437 "Abbrev table in use in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000438(define-abbrev-table 'python-mode-abbrev-table nil)
439
Barry Warsaw7ae77681994-12-12 20:38:05 +0000440(defvar python-mode-hook nil
441 "*Hook called by `python-mode'.")
442
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000443;; In previous version of python-mode.el, the hook was incorrectly
444;; called py-mode-hook, and was not defvar'd. Deprecate its use.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000445(and (fboundp 'make-obsolete-variable)
446 (make-obsolete-variable 'py-mode-hook 'python-mode-hook))
447
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000448(defvar py-mode-map ()
449 "Keymap used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000450(if py-mode-map
Barry Warsawc72c11c1997-08-09 06:42:08 +0000451 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000452 (setq py-mode-map (make-sparse-keymap))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000453 ;; electric keys
454 (define-key py-mode-map ":" 'py-electric-colon)
455 ;; indentation level modifiers
456 (define-key py-mode-map "\C-c\C-l" 'py-shift-region-left)
457 (define-key py-mode-map "\C-c\C-r" 'py-shift-region-right)
458 (define-key py-mode-map "\C-c<" 'py-shift-region-left)
459 (define-key py-mode-map "\C-c>" 'py-shift-region-right)
460 ;; subprocess commands
461 (define-key py-mode-map "\C-c\C-c" 'py-execute-buffer)
Barry Warsaw820273d1998-05-19 15:54:45 +0000462 (define-key py-mode-map "\C-c\C-m" 'py-execute-import-or-reload)
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000463 (define-key py-mode-map "\C-c\C-s" 'py-execute-string)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000464 (define-key py-mode-map "\C-c|" 'py-execute-region)
Barry Warsaw820273d1998-05-19 15:54:45 +0000465 (define-key py-mode-map "\e\C-x" 'py-execute-def-or-class)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000466 (define-key py-mode-map "\C-c!" 'py-shell)
Barry Warsawa2398801998-04-09 23:28:20 +0000467 (define-key py-mode-map "\C-c\C-t" 'py-toggle-shells)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000468 ;; Caution! Enter here at your own risk. We are trying to support
469 ;; several behaviors and it gets disgusting. :-( This logic ripped
470 ;; largely from CC Mode.
471 ;;
472 ;; In XEmacs 19, Emacs 19, and Emacs 20, we use this to bind
473 ;; backwards deletion behavior to DEL, which both Delete and
474 ;; Backspace get translated to. There's no way to separate this
475 ;; behavior in a clean way, so deal with it! Besides, it's been
476 ;; this way since the dawn of time.
477 (if (not (boundp 'delete-key-deletes-forward))
478 (define-key py-mode-map "\177" 'py-electric-backspace)
479 ;; However, XEmacs 20 actually achieved enlightenment. It is
480 ;; possible to sanely define both backward and forward deletion
481 ;; behavior under X separately (TTYs are forever beyond hope, but
482 ;; who cares? XEmacs 20 does the right thing with these too).
483 (define-key py-mode-map [delete] 'py-electric-delete)
484 (define-key py-mode-map [backspace] 'py-electric-backspace))
Barry Warsaw8c4a8de1997-11-26 20:30:33 +0000485 ;; Separate M-BS from C-M-h. The former should remain
486 ;; backward-kill-word.
487 (define-key py-mode-map [(control meta h)] 'py-mark-def-or-class)
Barry Warsaw2518c671997-11-05 00:51:08 +0000488 (define-key py-mode-map "\C-c\C-k" 'py-mark-block)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000489 ;; Miscellaneous
490 (define-key py-mode-map "\C-c:" 'py-guess-indent-offset)
491 (define-key py-mode-map "\C-c\t" 'py-indent-region)
492 (define-key py-mode-map "\C-c\C-n" 'py-next-statement)
493 (define-key py-mode-map "\C-c\C-p" 'py-previous-statement)
494 (define-key py-mode-map "\C-c\C-u" 'py-goto-block-up)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000495 (define-key py-mode-map "\C-c#" 'py-comment-region)
496 (define-key py-mode-map "\C-c?" 'py-describe-mode)
497 (define-key py-mode-map "\C-c\C-hm" 'py-describe-mode)
Barry Warsawab0e86c1998-05-19 15:31:46 +0000498 (define-key py-mode-map "\e\C-a" 'py-beginning-of-def-or-class)
499 (define-key py-mode-map "\e\C-e" 'py-end-of-def-or-class)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000500 (define-key py-mode-map "\C-c-" 'py-up-exception)
501 (define-key py-mode-map "\C-c=" 'py-down-exception)
Barry Warsawf8ddb6a1999-01-18 21:49:39 +0000502 ;; stuff that is `standard' but doesn't interface well with
503 ;; python-mode, which forces us to rebind to special commands
504 (define-key py-mode-map "\C-xnd" 'py-narrow-to-defun)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000505 ;; information
506 (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report)
507 (define-key py-mode-map "\C-c\C-v" 'py-version)
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000508 ;; shadow global bindings for newline-and-indent w/ the py- version.
509 ;; BAW - this is extremely bad form, but I'm not going to change it
510 ;; for now.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000511 (mapcar #'(lambda (key)
512 (define-key py-mode-map key 'py-newline-and-indent))
513 (where-is-internal 'newline-and-indent))
Barry Warsawf19feb81999-01-21 17:06:11 +0000514 ;; Force RET to be py-newline-and-indent even if it didn't get
515 ;; mapped by the above code. motivation: Emacs' default binding for
516 ;; RET is `newline' and C-j is `newline-and-indent'. Most Pythoneers
517 ;; expect RET to do a `py-newline-and-indent' and any Emacsers who
518 ;; dislike this are probably knowledgeable enough to do a rebind.
519 ;; However, we do *not* change C-j since many Emacsers have already
520 ;; swapped RET and C-j and they don't want C-j bound to `newline' to
521 ;; change.
522 (define-key py-mode-map "\C-m" 'py-newline-and-indent)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000523 )
524
525(defvar py-mode-output-map nil
Barry Warsaw41a05c71998-08-10 16:33:12 +0000526 "Keymap used in *Python Output* buffers.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000527(if py-mode-output-map
528 nil
529 (setq py-mode-output-map (make-sparse-keymap))
530 (define-key py-mode-output-map [button2] 'py-mouseto-exception)
531 (define-key py-mode-output-map "\C-c\C-c" 'py-goto-exception)
532 ;; TBD: Disable all self-inserting keys. This is bogus, we should
533 ;; really implement this as *Python Output* buffer being read-only
534 (mapcar #' (lambda (key)
535 (define-key py-mode-output-map key
536 #'(lambda () (interactive) (beep))))
537 (where-is-internal 'self-insert-command))
Barry Warsaw850437a1995-03-08 21:50:28 +0000538 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000539
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +0000540(defvar py-shell-map nil
541 "Keymap used in *Python* shell buffers.")
542(if py-shell-map
543 nil
544 (setq py-shell-map (copy-keymap comint-mode-map))
545 (define-key py-shell-map [tab] 'tab-to-tab-stop)
546 (define-key py-shell-map "\C-c-" 'py-up-exception)
547 (define-key py-shell-map "\C-c=" 'py-down-exception)
548 )
549
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000550(defvar py-mode-syntax-table nil
551 "Syntax table used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000552(if py-mode-syntax-table
Barry Warsawc72c11c1997-08-09 06:42:08 +0000553 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000554 (setq py-mode-syntax-table (make-syntax-table))
Barry Warsawc72c11c1997-08-09 06:42:08 +0000555 (modify-syntax-entry ?\( "()" py-mode-syntax-table)
556 (modify-syntax-entry ?\) ")(" py-mode-syntax-table)
557 (modify-syntax-entry ?\[ "(]" py-mode-syntax-table)
558 (modify-syntax-entry ?\] ")[" py-mode-syntax-table)
559 (modify-syntax-entry ?\{ "(}" py-mode-syntax-table)
560 (modify-syntax-entry ?\} "){" py-mode-syntax-table)
561 ;; Add operator symbols misassigned in the std table
562 (modify-syntax-entry ?\$ "." py-mode-syntax-table)
563 (modify-syntax-entry ?\% "." py-mode-syntax-table)
564 (modify-syntax-entry ?\& "." py-mode-syntax-table)
565 (modify-syntax-entry ?\* "." py-mode-syntax-table)
566 (modify-syntax-entry ?\+ "." py-mode-syntax-table)
567 (modify-syntax-entry ?\- "." py-mode-syntax-table)
568 (modify-syntax-entry ?\/ "." py-mode-syntax-table)
569 (modify-syntax-entry ?\< "." py-mode-syntax-table)
570 (modify-syntax-entry ?\= "." py-mode-syntax-table)
571 (modify-syntax-entry ?\> "." py-mode-syntax-table)
572 (modify-syntax-entry ?\| "." py-mode-syntax-table)
573 ;; For historical reasons, underscore is word class instead of
574 ;; symbol class. GNU conventions say it should be symbol class, but
575 ;; there's a natural conflict between what major mode authors want
576 ;; and what users expect from `forward-word' and `backward-word'.
577 ;; Guido and I have hashed this out and have decided to keep
578 ;; underscore in word class. If you're tempted to change it, try
579 ;; binding M-f and M-b to py-forward-into-nomenclature and
Barry Warsawaa384fd1999-02-16 23:36:16 +0000580 ;; py-backward-into-nomenclature instead. This doesn't help in all
581 ;; situations where you'd want the different behavior
582 ;; (e.g. backward-kill-word).
Barry Warsawc72c11c1997-08-09 06:42:08 +0000583 (modify-syntax-entry ?\_ "w" py-mode-syntax-table)
584 ;; Both single quote and double quote are string delimiters
585 (modify-syntax-entry ?\' "\"" py-mode-syntax-table)
586 (modify-syntax-entry ?\" "\"" py-mode-syntax-table)
587 ;; backquote is open and close paren
588 (modify-syntax-entry ?\` "$" py-mode-syntax-table)
589 ;; comment delimiters
590 (modify-syntax-entry ?\# "<" py-mode-syntax-table)
591 (modify-syntax-entry ?\n ">" py-mode-syntax-table)
592 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000593
Barry Warsawb3e81d51996-09-04 15:12:42 +0000594
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000595
Barry Warsawbc3760b1998-09-14 16:16:18 +0000596;; Utilities
597
598(defmacro py-safe (&rest body)
599 "Safely execute BODY, return nil if an error occurred."
600 (` (condition-case nil
601 (progn (,@ body))
602 (error nil))))
603
604(defsubst py-keep-region-active ()
605 "Keep the region active in XEmacs."
606 ;; Ignore byte-compiler warnings you might see. Also note that
607 ;; FSF's Emacs 19 does it differently; its policy doesn't require us
608 ;; to take explicit action.
609 (and (boundp 'zmacs-region-stays)
610 (setq zmacs-region-stays t)))
611
612(defsubst py-point (position)
613 "Returns the value of point at certain commonly referenced POSITIONs.
614POSITION can be one of the following symbols:
615
616 bol -- beginning of line
617 eol -- end of line
618 bod -- beginning of def or class
619 eod -- end of def or class
620 bob -- beginning of buffer
621 eob -- end of buffer
622 boi -- back to indentation
623 bos -- beginning of statement
624
625This function does not modify point or mark."
626 (let ((here (point)))
627 (cond
628 ((eq position 'bol) (beginning-of-line))
629 ((eq position 'eol) (end-of-line))
630 ((eq position 'bod) (py-beginning-of-def-or-class))
631 ((eq position 'eod) (py-end-of-def-or-class))
632 ;; Kind of funny, I know, but useful for py-up-exception.
633 ((eq position 'bob) (beginning-of-buffer))
634 ((eq position 'eob) (end-of-buffer))
635 ((eq position 'boi) (back-to-indentation))
636 ((eq position 'bos) (py-goto-initial-line))
637 (t (error "Unknown buffer position requested: %s" position))
638 )
639 (prog1
640 (point)
641 (goto-char here))))
642
643(defsubst py-highlight-line (from to file line)
644 (cond
645 ((fboundp 'make-extent)
646 ;; XEmacs
647 (let ((e (make-extent from to)))
648 (set-extent-property e 'mouse-face 'highlight)
649 (set-extent-property e 'py-exc-info (cons file line))
650 (set-extent-property e 'keymap py-mode-output-map)))
651 (t
652 ;; Emacs -- Please port this!
653 )
654 ))
655
656(defun py-in-literal (&optional lim)
657 "Return non-nil if point is in a Python literal (a comment or string).
658Optional argument LIM indicates the beginning of the containing form,
659i.e. the limit on how far back to scan."
660 ;; This is the version used for non-XEmacs, which has a nicer
661 ;; interface.
662 ;;
663 ;; WARNING: Watch out for infinite recursion.
664 (let* ((lim (or lim (py-point 'bod)))
665 (state (parse-partial-sexp lim (point))))
666 (cond
667 ((nth 3 state) 'string)
668 ((nth 4 state) 'comment)
669 (t nil))))
670
671;; XEmacs has a built-in function that should make this much quicker.
672;; In this case, lim is ignored
673(defun py-fast-in-literal (&optional lim)
674 "Fast version of `py-in-literal', used only by XEmacs.
675Optional LIM is ignored."
676 ;; don't have to worry about context == 'block-comment
677 (buffer-syntactic-context))
678
679(if (fboundp 'buffer-syntactic-context)
680 (defalias 'py-in-literal 'py-fast-in-literal))
681
682
683
Barry Warsaw42f707f1996-07-29 21:05:05 +0000684;; Menu definitions, only relevent if you have the easymenu.el package
685;; (standard in the latest Emacs 19 and XEmacs 19 distributions).
Barry Warsaw5490a061996-08-06 15:43:33 +0000686(defvar py-menu nil
687 "Menu for Python Mode.
Barry Warsawc72c11c1997-08-09 06:42:08 +0000688This menu will get created automatically if you have the `easymenu'
689package. Note that the latest X/Emacs releases contain this package.")
Barry Warsaw5490a061996-08-06 15:43:33 +0000690
Barry Warsawc72c11c1997-08-09 06:42:08 +0000691(and (py-safe (require 'easymenu) t)
692 (easy-menu-define
693 py-menu py-mode-map "Python Mode menu"
694 '("Python"
695 ["Comment Out Region" py-comment-region (mark)]
696 ["Uncomment Region" (py-comment-region (point) (mark) '(4)) (mark)]
697 "-"
698 ["Mark current block" py-mark-block t]
Barry Warsaw2518c671997-11-05 00:51:08 +0000699 ["Mark current def" py-mark-def-or-class t]
700 ["Mark current class" (py-mark-def-or-class t) t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000701 "-"
702 ["Shift region left" py-shift-region-left (mark)]
703 ["Shift region right" py-shift-region-right (mark)]
704 "-"
Barry Warsaw820273d1998-05-19 15:54:45 +0000705 ["Import/reload file" py-execute-import-or-reload t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000706 ["Execute buffer" py-execute-buffer t]
707 ["Execute region" py-execute-region (mark)]
Barry Warsaw820273d1998-05-19 15:54:45 +0000708 ["Execute def or class" py-execute-def-or-class (mark)]
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000709 ["Execute string" py-execute-string t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000710 ["Start interpreter..." py-shell t]
711 "-"
712 ["Go to start of block" py-goto-block-up t]
Barry Warsawab0e86c1998-05-19 15:31:46 +0000713 ["Go to start of class" (py-beginning-of-def-or-class t) t]
714 ["Move to end of class" (py-end-of-def-or-class t) t]
715 ["Move to start of def" py-beginning-of-def-or-class t]
716 ["Move to end of def" py-end-of-def-or-class t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000717 "-"
718 ["Describe mode" py-describe-mode t]
719 )))
Barry Warsaw42f707f1996-07-29 21:05:05 +0000720
Barry Warsaw81437461996-08-01 19:48:02 +0000721
722
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000723;; Imenu definitions
724(defvar py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000725 (concat ; <<classes>>
726 "\\(" ;
727 "^[ \t]*" ; newline and maybe whitespace
728 "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name
729 ; possibly multiple superclasses
Barry Warsaw3179fe01998-04-04 21:36:53 +0000730 "\\([ \t]*\\((\\([a-zA-Z0-9_,. \t\n]\\)*)\\)?\\)"
Barry Warsaw81437461996-08-01 19:48:02 +0000731 "[ \t]*:" ; and the final :
732 "\\)" ; >>classes<<
733 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000734 "Regexp for Python classes for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000735 )
736
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000737(defvar py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000738 (concat ; <<methods and functions>>
739 "\\(" ;
740 "^[ \t]*" ; new line and maybe whitespace
741 "\\(def[ \t]+" ; function definitions start with def
742 "\\([a-zA-Z0-9_]+\\)" ; name is here
743 ; function arguments...
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000744;; "[ \t]*(\\([-+/a-zA-Z0-9_=,\* \t\n.()\"'#]*\\))"
745 "[ \t]*(\\([^:#]*\\))"
Barry Warsaw81437461996-08-01 19:48:02 +0000746 "\\)" ; end of def
747 "[ \t]*:" ; and then the :
748 "\\)" ; >>methods and functions<<
749 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000750 "Regexp for Python methods/functions for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000751 )
752
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000753(defvar py-imenu-method-no-arg-parens '(2 8)
754 "Indices into groups of the Python regexp for use with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000755
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000756Using these values will result in smaller Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000757functions are not listed.
758
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000759See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000760information.")
761
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000762(defvar py-imenu-method-arg-parens '(2 7)
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000763 "Indices into groups of the Python regexp for use with imenu.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000764Using these values will result in large Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000765functions are listed.
766
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000767See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000768information.")
769
770;; Note that in this format, this variable can still be used with the
771;; imenu--generic-function. Otherwise, there is no real reason to have
772;; it.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000773(defvar py-imenu-generic-expression
Barry Warsaw81437461996-08-01 19:48:02 +0000774 (cons
775 (concat
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000776 py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000777 "\\|" ; or...
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000778 py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000779 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000780 py-imenu-method-no-arg-parens)
781 "Generic Python expression which may be used directly with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000782Used by setting the variable `imenu-generic-expression' to this value.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000783Also, see the function \\[py-imenu-create-index] for a better
784alternative for finding the index.")
Barry Warsaw81437461996-08-01 19:48:02 +0000785
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000786;; These next two variables are used when searching for the Python
Barry Warsaw81437461996-08-01 19:48:02 +0000787;; class/definitions. Just saving some time in accessing the
788;; generic-python-expression, really.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000789(defvar py-imenu-generic-regexp nil)
790(defvar py-imenu-generic-parens nil)
Barry Warsaw81437461996-08-01 19:48:02 +0000791
792
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000793(defun py-imenu-create-index-function ()
794 "Python interface function for the Imenu package.
795Finds all Python classes and functions/methods. Calls function
796\\[py-imenu-create-index-engine]. See that function for the details
797of how this works."
798 (setq py-imenu-generic-regexp (car py-imenu-generic-expression)
799 py-imenu-generic-parens (if py-imenu-show-method-args-p
800 py-imenu-method-arg-parens
801 py-imenu-method-no-arg-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000802 (goto-char (point-min))
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000803 ;; Warning: When the buffer has no classes or functions, this will
804 ;; return nil, which seems proper according to the Imenu API, but
805 ;; causes an error in the XEmacs port of Imenu. Sigh.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000806 (py-imenu-create-index-engine nil))
Barry Warsaw81437461996-08-01 19:48:02 +0000807
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000808(defun py-imenu-create-index-engine (&optional start-indent)
809 "Function for finding Imenu definitions in Python.
Barry Warsaw81437461996-08-01 19:48:02 +0000810
811Finds all definitions (classes, methods, or functions) in a Python
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000812file for the Imenu package.
Barry Warsaw81437461996-08-01 19:48:02 +0000813
814Returns a possibly nested alist of the form
815
816 (INDEX-NAME . INDEX-POSITION)
817
818The second element of the alist may be an alist, producing a nested
819list as in
820
821 (INDEX-NAME . INDEX-ALIST)
822
823This function should not be called directly, as it calls itself
824recursively and requires some setup. Rather this is the engine for
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000825the function \\[py-imenu-create-index-function].
Barry Warsaw81437461996-08-01 19:48:02 +0000826
827It works recursively by looking for all definitions at the current
828indention level. When it finds one, it adds it to the alist. If it
829finds a definition at a greater indentation level, it removes the
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000830previous definition from the alist. In its place it adds all
Barry Warsaw81437461996-08-01 19:48:02 +0000831definitions found at the next indentation level. When it finds a
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000832definition that is less indented then the current level, it returns
833the alist it has created thus far.
Barry Warsaw81437461996-08-01 19:48:02 +0000834
835The optional argument START-INDENT indicates the starting indentation
836at which to continue looking for Python classes, methods, or
837functions. If this is not supplied, the function uses the indentation
838of the first definition found."
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000839 (let (index-alist
840 sub-method-alist
Barry Warsaw81437461996-08-01 19:48:02 +0000841 looking-p
842 def-name prev-name
843 cur-indent def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000844 (class-paren (first py-imenu-generic-parens))
845 (def-paren (second py-imenu-generic-parens)))
Barry Warsaw81437461996-08-01 19:48:02 +0000846 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000847 (re-search-forward py-imenu-generic-regexp (point-max) t))
Barry Warsaw81437461996-08-01 19:48:02 +0000848 (while looking-p
849 (save-excursion
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000850 ;; used to set def-name to this value but generic-extract-name
851 ;; is new to imenu-1.14. this way it still works with
852 ;; imenu-1.11
853 ;;(imenu--generic-extract-name py-imenu-generic-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000854 (let ((cur-paren (if (match-beginning class-paren)
855 class-paren def-paren)))
856 (setq def-name
Barry Warsawc8520351997-11-26 06:14:40 +0000857 (buffer-substring-no-properties (match-beginning cur-paren)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000858 (match-end cur-paren))))
Barry Warsaw93c88cc1998-08-18 02:00:44 +0000859 (save-match-data
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000860 (py-beginning-of-def-or-class 'either))
Barry Warsaw81437461996-08-01 19:48:02 +0000861 (beginning-of-line)
862 (setq cur-indent (current-indentation)))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000863 ;; HACK: want to go to the next correct definition location. We
864 ;; explicitly list them here but it would be better to have them
865 ;; in a list.
Barry Warsaw81437461996-08-01 19:48:02 +0000866 (setq def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000867 (or (match-beginning class-paren)
868 (match-beginning def-paren)))
Barry Warsaw81437461996-08-01 19:48:02 +0000869 ;; if we don't have a starting indent level, take this one
870 (or start-indent
871 (setq start-indent cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000872 ;; if we don't have class name yet, take this one
873 (or prev-name
874 (setq prev-name def-name))
Barry Warsaw81437461996-08-01 19:48:02 +0000875 ;; what level is the next definition on? must be same, deeper
876 ;; or shallower indentation
877 (cond
878 ;; at the same indent level, add it to the list...
879 ((= start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000880 (push (cons def-name def-pos) index-alist))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000881 ;; deeper indented expression, recurse
Barry Warsaw81437461996-08-01 19:48:02 +0000882 ((< start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000883 ;; the point is currently on the expression we're supposed to
884 ;; start on, so go back to the last expression. The recursive
885 ;; call will find this place again and add it to the correct
886 ;; list
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000887 (re-search-backward py-imenu-generic-regexp (point-min) 'move)
888 (setq sub-method-alist (py-imenu-create-index-engine cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000889 (if sub-method-alist
890 ;; we put the last element on the index-alist on the start
891 ;; of the submethod alist so the user can still get to it.
892 (let ((save-elmt (pop index-alist)))
Barry Warsawc8520351997-11-26 06:14:40 +0000893 (push (cons prev-name
Barry Warsaw81437461996-08-01 19:48:02 +0000894 (cons save-elmt sub-method-alist))
895 index-alist))))
Barry Warsaw81437461996-08-01 19:48:02 +0000896 ;; found less indented expression, we're done.
897 (t
898 (setq looking-p nil)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000899 (re-search-backward py-imenu-generic-regexp (point-min) t)))
900 ;; end-cond
Barry Warsaw81437461996-08-01 19:48:02 +0000901 (setq prev-name def-name)
902 (and looking-p
903 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000904 (re-search-forward py-imenu-generic-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000905 (point-max) 'move))))
906 (nreverse index-alist)))
907
Barry Warsaw42f707f1996-07-29 21:05:05 +0000908
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000909;;;###autoload
Barry Warsaw7ae77681994-12-12 20:38:05 +0000910(defun python-mode ()
911 "Major mode for editing Python files.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000912To submit a problem report, enter `\\[py-submit-bug-report]' from a
913`python-mode' buffer. Do `\\[py-describe-mode]' for detailed
914documentation. To see what version of `python-mode' you are running,
915enter `\\[py-version]'.
916
917This mode knows about Python indentation, tokens, comments and
918continuation lines. Paragraphs are separated by blank lines only.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000919
920COMMANDS
921\\{py-mode-map}
922VARIABLES
923
Barry Warsaw42f707f1996-07-29 21:05:05 +0000924py-indent-offset\t\tindentation increment
Barry Warsaw41a05c71998-08-10 16:33:12 +0000925py-block-comment-prefix\t\tcomment string used by `comment-region'
Barry Warsaw42f707f1996-07-29 21:05:05 +0000926py-python-command\t\tshell command to invoke Python interpreter
Barry Warsaw42f707f1996-07-29 21:05:05 +0000927py-temp-directory\t\tdirectory used for temp files (if needed)
Barry Warsaw41a05c71998-08-10 16:33:12 +0000928py-beep-if-tab-change\t\tring the bell if `tab-width' is changed"
Barry Warsaw7ae77681994-12-12 20:38:05 +0000929 (interactive)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000930 ;; set up local variables
Barry Warsaw7ae77681994-12-12 20:38:05 +0000931 (kill-all-local-variables)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000932 (make-local-variable 'font-lock-defaults)
933 (make-local-variable 'paragraph-separate)
934 (make-local-variable 'paragraph-start)
935 (make-local-variable 'require-final-newline)
936 (make-local-variable 'comment-start)
Barry Warsaw5c8bef11996-12-17 21:56:10 +0000937 (make-local-variable 'comment-end)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000938 (make-local-variable 'comment-start-skip)
939 (make-local-variable 'comment-column)
Barry Warsaw003932a1998-07-07 15:11:24 +0000940 (make-local-variable 'comment-indent-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000941 (make-local-variable 'indent-region-function)
942 (make-local-variable 'indent-line-function)
Barry Warsawb3e81d51996-09-04 15:12:42 +0000943 (make-local-variable 'add-log-current-defun-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000944 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +0000945 (set-syntax-table py-mode-syntax-table)
Barry Warsaw003932a1998-07-07 15:11:24 +0000946 (setq major-mode 'python-mode
947 mode-name "Python"
948 local-abbrev-table python-mode-abbrev-table
949 font-lock-defaults '(python-font-lock-keywords)
950 paragraph-separate "^[ \t]*$"
951 paragraph-start "^[ \t]*$"
952 require-final-newline t
953 comment-start "# "
954 comment-end ""
955 comment-start-skip "# *"
956 comment-column 40
957 comment-indent-function 'py-comment-indent-function
958 indent-region-function 'py-indent-region
959 indent-line-function 'py-indent-line
Barry Warsawb3e81d51996-09-04 15:12:42 +0000960 ;; tell add-log.el how to find the current function/method/variable
961 add-log-current-defun-function 'py-current-defun
Barry Warsawb1f89511996-09-03 16:38:30 +0000962 )
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000963 (use-local-map py-mode-map)
Barry Warsaw42f707f1996-07-29 21:05:05 +0000964 ;; add the menu
965 (if py-menu
966 (easy-menu-add py-menu))
Barry Warsaw57697af1995-09-14 20:01:14 +0000967 ;; Emacs 19 requires this
Barry Warsawc72c11c1997-08-09 06:42:08 +0000968 (if (boundp 'comment-multi-line)
Barry Warsaw57697af1995-09-14 20:01:14 +0000969 (setq comment-multi-line nil))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000970 ;; Install Imenu if available
Barry Warsaw742a5111998-03-13 17:29:15 +0000971 (when (py-safe (require 'imenu))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000972 (setq imenu-create-index-function #'py-imenu-create-index-function)
973 (setq imenu-generic-expression py-imenu-generic-expression)
Barry Warsaw742a5111998-03-13 17:29:15 +0000974 (if (fboundp 'imenu-add-to-menubar)
975 (imenu-add-to-menubar (format "%s-%s" "IM" mode-name)))
976 )
977 ;; Run the mode hook. Note that py-mode-hook is deprecated.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000978 (if python-mode-hook
979 (run-hooks 'python-mode-hook)
Barry Warsaw742a5111998-03-13 17:29:15 +0000980 (run-hooks 'py-mode-hook))
981 ;; Now do the automagical guessing
982 (if py-smart-indentation
983 (let ((offset py-indent-offset))
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000984 ;; It's okay if this fails to guess a good value
Barry Warsaw742a5111998-03-13 17:29:15 +0000985 (if (and (py-safe (py-guess-indent-offset))
986 (<= py-indent-offset 8)
987 (>= py-indent-offset 2))
988 (setq offset py-indent-offset))
989 (setq py-indent-offset offset)
Barry Warsaw639eea61998-03-16 18:12:13 +0000990 ;; Only turn indent-tabs-mode off if tab-width !=
991 ;; py-indent-offset. Never turn it on, because the user must
992 ;; have explicitly turned it off.
993 (if (/= tab-width py-indent-offset)
994 (setq indent-tabs-mode nil))
Barry Warsaw11f21561999-07-28 21:59:43 +0000995 ))
996 ;; Set the default shell if not already set
997 (when (null py-which-shell)
998 (py-toggle-shells py-default-interpreter))
999 )
Barry Warsaw7ae77681994-12-12 20:38:05 +00001000
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001001
Barry Warsawb91b7431995-03-14 15:55:20 +00001002;; electric characters
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001003(defun py-outdent-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00001004 "Returns non-nil if the current line should dedent one level."
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001005 (save-excursion
1006 (and (progn (back-to-indentation)
1007 (looking-at py-outdent-re))
Barry Warsaw1a1c6bb1999-01-09 17:22:38 +00001008 ;; short circuit infloop on illegal construct
1009 (not (bobp))
Barry Warsawf06777d1998-01-21 05:36:18 +00001010 (progn (forward-line -1)
1011 (py-goto-initial-line)
1012 (back-to-indentation)
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001013 (while (or (looking-at py-blank-or-comment-re)
1014 (bobp))
1015 (backward-to-indentation 1))
1016 (not (looking-at py-no-outdent-re)))
1017 )))
1018
Barry Warsawb91b7431995-03-14 15:55:20 +00001019(defun py-electric-colon (arg)
1020 "Insert a colon.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001021In certain cases the line is dedented appropriately. If a numeric
1022argument ARG is provided, that many colons are inserted
1023non-electrically. Electric behavior is inhibited inside a string or
1024comment."
Barry Warsawb91b7431995-03-14 15:55:20 +00001025 (interactive "P")
1026 (self-insert-command (prefix-numeric-value arg))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001027 ;; are we in a string or comment?
1028 (if (save-excursion
1029 (let ((pps (parse-partial-sexp (save-excursion
Barry Warsawab0e86c1998-05-19 15:31:46 +00001030 (py-beginning-of-def-or-class)
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001031 (point))
1032 (point))))
1033 (not (or (nth 3 pps) (nth 4 pps)))))
1034 (save-excursion
1035 (let ((here (point))
1036 (outdent 0)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001037 (indent (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001038 (if (and (not arg)
1039 (py-outdent-p)
1040 (= indent (save-excursion
Barry Warsawa7661821996-08-02 16:22:43 +00001041 (py-next-statement -1)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001042 (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001043 )
1044 (setq outdent py-indent-offset))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001045 ;; Don't indent, only dedent. This assumes that any lines
1046 ;; that are already dedented relative to
1047 ;; py-compute-indentation were put there on purpose. It's
1048 ;; highly annoying to have `:' indent for you. Use TAB, C-c
1049 ;; C-l or C-c C-r to adjust. TBD: Is there a better way to
1050 ;; determine this???
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001051 (if (< (current-indentation) indent) nil
1052 (goto-char here)
1053 (beginning-of-line)
1054 (delete-horizontal-space)
1055 (indent-to (- indent outdent))
1056 )))))
Barry Warsawb91b7431995-03-14 15:55:20 +00001057
1058
Barry Warsawa97a3f31997-11-04 18:47:06 +00001059;; Python subprocess utilities and filters
1060(defun py-execute-file (proc filename)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001061 "Send to Python interpreter process PROC \"execfile('FILENAME')\".
1062Make that process's buffer visible and force display. Also make
1063comint believe the user typed this string so that
1064`kill-output-from-shell' does The Right Thing."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001065 (let ((curbuf (current-buffer))
1066 (procbuf (process-buffer proc))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001067; (comint-scroll-to-bottom-on-output t)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001068 (msg (format "## working on region in file %s...\n" filename))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001069 (cmd (format "execfile(r'%s')\n" filename)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001070 (unwind-protect
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001071 (save-excursion
Barry Warsawa97a3f31997-11-04 18:47:06 +00001072 (set-buffer procbuf)
1073 (goto-char (point-max))
1074 (move-marker (process-mark proc) (point))
1075 (funcall (process-filter proc) proc msg))
1076 (set-buffer curbuf))
1077 (process-send-string proc cmd)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001078
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001079(defun py-comint-output-filter-function (string)
1080 "Watch output for Python prompt and exec next file waiting in queue.
1081This function is appropriate for `comint-output-filter-functions'."
Barry Warsaw014e0e21998-11-17 19:24:47 +00001082 ;; TBD: this should probably use split-string
Barry Warsaw4f94c731998-09-25 19:40:10 +00001083 (when (and (or (string-equal string ">>> ")
Barry Warsaw4f94c731998-09-25 19:40:10 +00001084 (and (>= (length string) 5)
1085 (string-equal (substring string -5) "\n>>> ")))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001086 py-file-queue)
1087 (py-safe (delete-file (car py-file-queue)))
1088 (setq py-file-queue (cdr py-file-queue))
1089 (if py-file-queue
1090 (let ((pyproc (get-buffer-process (current-buffer))))
1091 (py-execute-file pyproc (car py-file-queue))))
1092 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001093
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001094(defun py-postprocess-output-buffer (buf)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001095 "Highlight exceptions found in BUF.
1096If an exception occurred return t, otherwise return nil. BUF must exist."
Barry Warsawf9b99f41998-03-26 16:08:59 +00001097 (let (line file bol err-p)
Barry Warsaw9981d221997-12-03 05:25:48 +00001098 (save-excursion
1099 (set-buffer buf)
1100 (beginning-of-buffer)
1101 (while (re-search-forward py-traceback-line-re nil t)
1102 (setq file (match-string 1)
1103 line (string-to-int (match-string 2))
1104 bol (py-point 'bol))
Barry Warsawf9b99f41998-03-26 16:08:59 +00001105 (py-highlight-line bol (py-point 'eol) file line)))
1106 (when (and py-jump-on-exception line)
1107 (beep)
1108 (py-jump-to-exception file line)
1109 (setq err-p t))
1110 err-p))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001111
Barry Warsaw9981d221997-12-03 05:25:48 +00001112
Barry Warsawa97a3f31997-11-04 18:47:06 +00001113
1114;;; Subprocess commands
1115
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001116;; only used when (memq 'broken-temp-names py-emacs-features)
1117(defvar py-serial-number 0)
1118(defvar py-exception-buffer nil)
1119(defconst py-output-buffer "*Python Output*")
Barry Warsawa2398801998-04-09 23:28:20 +00001120(make-variable-buffer-local 'py-output-buffer)
1121
1122;; for toggling between CPython and JPython
Barry Warsawaa384fd1999-02-16 23:36:16 +00001123(defvar py-which-shell nil)
Barry Warsawa2398801998-04-09 23:28:20 +00001124(defvar py-which-args py-python-command-args)
1125(defvar py-which-bufname "Python")
1126(make-variable-buffer-local 'py-which-shell)
1127(make-variable-buffer-local 'py-which-args)
1128(make-variable-buffer-local 'py-which-bufname)
1129
1130(defun py-toggle-shells (arg)
1131 "Toggles between the CPython and JPython shells.
Barry Warsaw11f21561999-07-28 21:59:43 +00001132
Barry Warsaw41a05c71998-08-10 16:33:12 +00001133With positive argument ARG (interactively \\[universal-argument]),
1134uses the CPython shell, with negative ARG uses the JPython shell, and
Barry Warsaw11f21561999-07-28 21:59:43 +00001135with a zero argument, toggles the shell.
1136
1137Programmatically, ARG can also be one of the symbols `cpython' or
1138`jpython', equivalent to positive arg and negative arg respectively."
Barry Warsawa2398801998-04-09 23:28:20 +00001139 (interactive "P")
1140 ;; default is to toggle
1141 (if (null arg)
1142 (setq arg 0))
Barry Warsaw11f21561999-07-28 21:59:43 +00001143 ;; preprocess arg
1144 (cond
1145 ((equal arg 0)
1146 ;; toggle
1147 (if (string-equal py-which-bufname "Python")
1148 (setq arg -1)
1149 (setq arg 1)))
1150 ((equal arg 'cpython) (setq arg 1))
1151 ((equal arg 'jpython) (setq arg -1)))
Barry Warsawa2398801998-04-09 23:28:20 +00001152 (let (msg)
1153 (cond
1154 ((< 0 arg)
1155 ;; set to CPython
1156 (setq py-which-shell py-python-command
1157 py-which-args py-python-command-args
1158 py-which-bufname "Python"
1159 msg "CPython"
1160 mode-name "Python"))
1161 ((> 0 arg)
1162 (setq py-which-shell py-jpython-command
1163 py-which-args py-jpython-command-args
1164 py-which-bufname "JPython"
1165 msg "JPython"
1166 mode-name "JPython"))
1167 )
Barry Warsawea609c11998-04-10 16:08:26 +00001168 (message "Using the %s shell" msg)
Barry Warsawa2398801998-04-09 23:28:20 +00001169 (setq py-output-buffer (format "*%s Output*" py-which-bufname))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001170
Barry Warsawa97a3f31997-11-04 18:47:06 +00001171;;;###autoload
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001172(defun py-shell (&optional argprompt)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001173 "Start an interactive Python interpreter in another window.
1174This is like Shell mode, except that Python is running in the window
1175instead of a shell. See the `Interactive Shell' and `Shell Mode'
1176sections of the Emacs manual for details, especially for the key
1177bindings active in the `*Python*' buffer.
1178
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001179With optional \\[universal-argument], the user is prompted for the
1180flags to pass to the Python interpreter. This has no effect when this
1181command is used to switch to an existing process, only when a new
1182process is started. If you use this, you will probably want to ensure
1183that the current arguments are retained (they will be included in the
1184prompt). This argument is ignored when this function is called
1185programmatically, or when running in Emacs 19.34 or older.
1186
Barry Warsawa2398801998-04-09 23:28:20 +00001187Note: You can toggle between using the CPython interpreter and the
1188JPython interpreter by hitting \\[py-toggle-shells]. This toggles
1189buffer local variables which control whether all your subshell
1190interactions happen to the `*JPython*' or `*Python*' buffers (the
1191latter is the name used for the CPython buffer).
1192
Barry Warsawa97a3f31997-11-04 18:47:06 +00001193Warning: Don't use an interactive Python if you change sys.ps1 or
1194sys.ps2 from their default values, or if you're running code that
1195prints `>>> ' or `... ' at the start of a line. `python-mode' can't
1196distinguish your output from Python's output, and assumes that `>>> '
1197at the start of a line is a prompt from Python. Similarly, the Emacs
1198Shell mode code assumes that both `>>> ' and `... ' at the start of a
1199line are Python prompts. Bad things can happen if you fool either
1200mode.
1201
1202Warning: If you do any editing *in* the process buffer *while* the
1203buffer is accepting output from Python, do NOT attempt to `undo' the
1204changes. Some of the output (nowhere near the parts you changed!) may
1205be lost if you do. This appears to be an Emacs bug, an unfortunate
1206interaction between undo and process filters; the same problem exists in
1207non-Python process buffers using the default (Emacs-supplied) process
1208filter."
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001209 (interactive "P")
Barry Warsaw50765ab1999-08-10 21:49:00 +00001210 ;; Set the default shell if not already set
1211 (when (null py-which-shell)
1212 (py-toggle-shells py-default-interpreter))
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001213 (let ((args py-which-args))
1214 (when (and argprompt
1215 (interactive-p)
1216 (fboundp 'split-string))
1217 ;; TBD: Perhaps force "-i" in the final list?
1218 (setq args (split-string
1219 (read-string (concat py-which-bufname
1220 " arguments: ")
1221 (concat
1222 (mapconcat 'identity py-which-args " ") " ")
1223 ))))
1224 (switch-to-buffer-other-window
1225 (apply 'make-comint py-which-bufname py-which-shell nil args))
1226 (make-local-variable 'comint-prompt-regexp)
1227 (setq comint-prompt-regexp "^>>> \\|^[.][.][.] \\|^(pdb) ")
1228 (add-hook 'comint-output-filter-functions
1229 'py-comint-output-filter-function)
1230 (set-syntax-table py-mode-syntax-table)
1231 (use-local-map py-shell-map)
1232 ))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001233
Barry Warsawa97a3f31997-11-04 18:47:06 +00001234(defun py-clear-queue ()
1235 "Clear the queue of temporary files waiting to execute."
1236 (interactive)
1237 (let ((n (length py-file-queue)))
1238 (mapcar 'delete-file py-file-queue)
1239 (setq py-file-queue nil)
1240 (message "%d pending files de-queued." n)))
1241
Barry Warsaw820273d1998-05-19 15:54:45 +00001242
Barry Warsawa97a3f31997-11-04 18:47:06 +00001243(defun py-execute-region (start end &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001244 "Execute the region in a Python interpreter.
1245
Barry Warsawa97a3f31997-11-04 18:47:06 +00001246The region is first copied into a temporary file (in the directory
1247`py-temp-directory'). If there is no Python interpreter shell
1248running, this file is executed synchronously using
Barry Warsaw41a05c71998-08-10 16:33:12 +00001249`shell-command-on-region'. If the program is long running, use
1250\\[universal-argument] to run the command asynchronously in its own
1251buffer.
1252
1253When this function is used programmatically, arguments START and END
1254specify the region to execute, and optional third argument ASYNC, if
1255non-nil, specifies to run the command asynchronously in its own
1256buffer.
Barry Warsawa97a3f31997-11-04 18:47:06 +00001257
1258If the Python interpreter shell is running, the region is execfile()'d
1259in that shell. If you try to execute regions too quickly,
1260`python-mode' will queue them up and execute them one at a time when
1261it sees a `>>> ' prompt from Python. Each time this happens, the
1262process buffer is popped into a window (if it's not already in some
1263window) so you can see it, and a comment of the form
1264
1265 \t## working on region in file <name>...
1266
1267is inserted at the end. See also the command `py-clear-queue'."
1268 (interactive "r\nP")
1269 (or (< start end)
1270 (error "Region is empty"))
Barry Warsaw014e0e21998-11-17 19:24:47 +00001271 (let* ((proc (get-process py-which-bufname))
Barry Warsaw5e21cb01997-11-05 18:41:11 +00001272 (temp (if (memq 'broken-temp-names py-emacs-features)
Barry Warsaw1b344241998-08-07 22:24:16 +00001273 (let
1274 ((sn py-serial-number)
1275 (pid (and (fboundp 'emacs-pid) (emacs-pid))))
1276 (setq py-serial-number (1+ py-serial-number))
1277 (if pid
1278 (format "python-%d-%d" sn pid)
1279 (format "python-%d" sn)))
Barry Warsaw2f32fbb1998-02-25 16:45:43 +00001280 (make-temp-name "python-")))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001281 (file (expand-file-name temp py-temp-directory))
1282 (cur (current-buffer))
1283 (buf (get-buffer-create file)))
1284 ;; Write the contents of the buffer, watching out for indented regions.
1285 (save-excursion
1286 (goto-char start)
Barry Warsaw99eadf42000-06-23 20:24:25 +00001287 (let ((needs-if (/= (py-point 'bol) (py-point 'boi))))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001288 (set-buffer buf)
Barry Warsaw99eadf42000-06-23 20:24:25 +00001289 (when needs-if
1290 (insert "if 1:\n"))
1291 (insert-buffer-substring cur start end)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001292 (cond
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001293 ;; always run the code in its own asynchronous subprocess
Barry Warsawa97a3f31997-11-04 18:47:06 +00001294 (async
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001295 ;; User explicitly wants this to run in its own async subprocess
1296 (save-excursion
1297 (set-buffer buf)
1298 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsaw34d83171998-11-20 03:04:07 +00001299 (let* ((buf (generate-new-buffer-name py-output-buffer))
1300 ;; TBD: a horrible hack, but why create new Custom variables?
1301 (arg (if (string-equal py-which-bufname "Python")
1302 "-u" "")))
1303 (start-process py-which-bufname buf py-which-shell arg file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001304 (pop-to-buffer buf)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001305 (py-postprocess-output-buffer buf)
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001306 ;; TBD: clean up the temporary file!
Barry Warsawa97a3f31997-11-04 18:47:06 +00001307 ))
1308 ;; if the Python interpreter shell is running, queue it up for
1309 ;; execution there.
1310 (proc
1311 ;; use the existing python shell
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001312 (save-excursion
1313 (set-buffer buf)
1314 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001315 (if (not py-file-queue)
1316 (py-execute-file proc file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001317 (message "File %s queued for execution" file))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001318 (setq py-file-queue (append py-file-queue (list file)))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001319 (setq py-exception-buffer (cons file (current-buffer))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001320 (t
Barry Warsaw34d83171998-11-20 03:04:07 +00001321 ;; TBD: a horrible hack, buy why create new Custom variables?
1322 (let ((cmd (concat py-which-shell
1323 (if (string-equal py-which-bufname "JPython")
1324 " -" ""))))
1325 ;; otherwise either run it synchronously in a subprocess
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001326 (save-excursion
1327 (set-buffer buf)
1328 (shell-command-on-region (point-min) (point-max)
1329 cmd py-output-buffer))
Barry Warsaw34d83171998-11-20 03:04:07 +00001330 ;; shell-command-on-region kills the output buffer if it never
1331 ;; existed and there's no output from the command
1332 (if (not (get-buffer py-output-buffer))
1333 (message "No output.")
1334 (setq py-exception-buffer (current-buffer))
1335 (let ((err-p (py-postprocess-output-buffer py-output-buffer)))
1336 (pop-to-buffer py-output-buffer)
1337 (if err-p
1338 (pop-to-buffer py-exception-buffer)))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001339 ))
1340 ;; TBD: delete the buffer
1341 )
Barry Warsaw512af041998-03-25 23:27:17 +00001342 )))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001343
Barry Warsaw820273d1998-05-19 15:54:45 +00001344
1345;; Code execution commands
Barry Warsawa97a3f31997-11-04 18:47:06 +00001346(defun py-execute-buffer (&optional async)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001347 "Send the contents of the buffer to a Python interpreter.
Barry Warsawc0ecb531998-01-20 21:43:34 +00001348If the file local variable `py-master-file' is non-nil, execute the
1349named file instead of the buffer's file.
1350
Barry Warsaw7ae77681994-12-12 20:38:05 +00001351If there is a *Python* process buffer it is used. If a clipping
1352restriction is in effect, only the accessible portion of the buffer is
1353sent. A trailing newline will be supplied if needed.
1354
Barry Warsaw41a05c71998-08-10 16:33:12 +00001355See the `\\[py-execute-region]' docs for an account of some
1356subtleties, including the use of the optional ASYNC argument."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001357 (interactive "P")
Barry Warsawc0ecb531998-01-20 21:43:34 +00001358 (if py-master-file
1359 (let* ((filename (expand-file-name py-master-file))
1360 (buffer (or (get-file-buffer filename)
1361 (find-file-noselect filename))))
1362 (set-buffer buffer)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001363 (py-execute-region (point-min) (point-max) async))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001364
Barry Warsaw820273d1998-05-19 15:54:45 +00001365(defun py-execute-import-or-reload (&optional async)
1366 "Import the current buffer's file in a Python interpreter.
1367
1368If the file has already been imported, then do reload instead to get
Barry Warsaw7c29b231998-07-07 17:45:38 +00001369the latest version.
1370
1371If the file's name does not end in \".py\", then do execfile instead.
1372
1373If the current buffer is not visiting a file, do `py-execute-buffer'
1374instead.
1375
1376If the file local variable `py-master-file' is non-nil, import or
1377reload the named file instead of the buffer's file. The file may be
1378saved based on the value of `py-execute-import-or-reload-save-p'.
Barry Warsaw820273d1998-05-19 15:54:45 +00001379
Barry Warsaw41a05c71998-08-10 16:33:12 +00001380See the `\\[py-execute-region]' docs for an account of some
1381subtleties, including the use of the optional ASYNC argument.
Barry Warsaw820273d1998-05-19 15:54:45 +00001382
Barry Warsaw7c29b231998-07-07 17:45:38 +00001383This may be preferable to `\\[py-execute-buffer]' because:
Barry Warsaw820273d1998-05-19 15:54:45 +00001384
1385 - Definitions stay in their module rather than appearing at top
1386 level, where they would clutter the global namespace and not affect
1387 uses of qualified names (MODULE.NAME).
1388
1389 - The Python debugger gets line number information about the functions."
1390 (interactive "P")
1391 ;; Check file local variable py-master-file
1392 (if py-master-file
1393 (let* ((filename (expand-file-name py-master-file))
1394 (buffer (or (get-file-buffer filename)
1395 (find-file-noselect filename))))
1396 (set-buffer buffer)))
1397 (let ((file (buffer-file-name (current-buffer))))
1398 (if file
1399 (progn
Barry Warsaw3bfed5b1998-05-19 16:25:04 +00001400 ;; Maybe save some buffers
1401 (save-some-buffers (not py-ask-about-save) nil)
Barry Warsaw820273d1998-05-19 15:54:45 +00001402 (py-execute-string
1403 (if (string-match "\\.py$" file)
1404 (let ((f (file-name-sans-extension
1405 (file-name-nondirectory file))))
1406 (format "if globals().has_key('%s'):\n reload(%s)\nelse:\n import %s\n"
1407 f f f))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001408 (format "execfile(r'%s')\n" file))
Barry Warsaw820273d1998-05-19 15:54:45 +00001409 async))
1410 ;; else
1411 (py-execute-buffer async))))
1412
1413
1414(defun py-execute-def-or-class (&optional async)
1415 "Send the current function or class definition to a Python interpreter.
1416
1417If there is a *Python* process buffer it is used.
1418
Barry Warsaw41a05c71998-08-10 16:33:12 +00001419See the `\\[py-execute-region]' docs for an account of some
1420subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001421 (interactive "P")
1422 (save-excursion
1423 (py-mark-def-or-class)
1424 ;; mark is before point
1425 (py-execute-region (mark) (point) async)))
1426
1427
1428(defun py-execute-string (string &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001429 "Send the argument STRING to a Python interpreter.
Barry Warsaw820273d1998-05-19 15:54:45 +00001430
1431If there is a *Python* process buffer it is used.
1432
Barry Warsaw41a05c71998-08-10 16:33:12 +00001433See the `\\[py-execute-region]' docs for an account of some
1434subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001435 (interactive "sExecute Python command: ")
1436 (save-excursion
1437 (set-buffer (get-buffer-create
1438 (generate-new-buffer-name " *Python Command*")))
1439 (insert string)
1440 (py-execute-region (point-min) (point-max) async)))
1441
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001442
1443
1444(defun py-jump-to-exception (file line)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001445 "Jump to the Python code in FILE at LINE."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001446 (let ((buffer (cond ((string-equal file "<stdin>")
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001447 (if (consp py-exception-buffer)
1448 (cdr py-exception-buffer)
1449 py-exception-buffer))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001450 ((and (consp py-exception-buffer)
1451 (string-equal file (car py-exception-buffer)))
1452 (cdr py-exception-buffer))
1453 ((py-safe (find-file-noselect file)))
1454 ;; could not figure out what file the exception
1455 ;; is pointing to, so prompt for it
1456 (t (find-file (read-file-name "Exception file: "
1457 nil
1458 file t))))))
1459 (pop-to-buffer buffer)
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001460 ;; Force Python mode
Barry Warsaw820273d1998-05-19 15:54:45 +00001461 (if (not (eq major-mode 'python-mode))
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001462 (python-mode))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001463 (goto-line line)
1464 (message "Jumping to exception in file %s on line %d" file line)))
1465
1466(defun py-mouseto-exception (event)
Barry Warsaw12c92941998-08-10 21:44:37 +00001467 "Jump to the code which caused the Python exception at EVENT.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001468EVENT is usually a mouse click."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001469 (interactive "e")
1470 (cond
1471 ((fboundp 'event-point)
1472 ;; XEmacs
1473 (let* ((point (event-point event))
1474 (buffer (event-buffer event))
1475 (e (and point buffer (extent-at point buffer 'py-exc-info)))
1476 (info (and e (extent-property e 'py-exc-info))))
1477 (message "Event point: %d, info: %s" point info)
1478 (and info
1479 (py-jump-to-exception (car info) (cdr info)))
1480 ))
1481 ;; Emacs -- Please port this!
1482 ))
1483
1484(defun py-goto-exception ()
1485 "Go to the line indicated by the traceback."
1486 (interactive)
1487 (let (file line)
1488 (save-excursion
1489 (beginning-of-line)
1490 (if (looking-at py-traceback-line-re)
1491 (setq file (match-string 1)
1492 line (string-to-int (match-string 2)))))
1493 (if (not file)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001494 (error "Not on a traceback line"))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001495 (py-jump-to-exception file line)))
1496
1497(defun py-find-next-exception (start buffer searchdir errwhere)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001498 "Find the next Python exception and jump to the code that caused it.
1499START is the buffer position in BUFFER from which to begin searching
1500for an exception. SEARCHDIR is a function, either
1501`re-search-backward' or `re-search-forward' indicating the direction
1502to search. ERRWHERE is used in an error message if the limit (top or
1503bottom) of the trackback stack is encountered."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001504 (let (file line)
1505 (save-excursion
1506 (set-buffer buffer)
1507 (goto-char (py-point start))
1508 (if (funcall searchdir py-traceback-line-re nil t)
1509 (setq file (match-string 1)
1510 line (string-to-int (match-string 2)))))
1511 (if (and file line)
1512 (py-jump-to-exception file line)
1513 (error "%s of traceback" errwhere))))
1514
1515(defun py-down-exception (&optional bottom)
1516 "Go to the next line down in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001517With \\[univeral-argument] (programmatically, optional argument
1518BOTTOM), jump to the bottom (innermost) exception in the exception
1519stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001520 (interactive "P")
1521 (let* ((proc (get-process "Python"))
1522 (buffer (if proc "*Python*" py-output-buffer)))
1523 (if bottom
1524 (py-find-next-exception 'eob buffer 're-search-backward "Bottom")
1525 (py-find-next-exception 'eol buffer 're-search-forward "Bottom"))))
1526
1527(defun py-up-exception (&optional top)
1528 "Go to the previous line up in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001529With \\[universal-argument] (programmatically, optional argument TOP)
1530jump to the top (outermost) exception in the exception stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001531 (interactive "P")
1532 (let* ((proc (get-process "Python"))
1533 (buffer (if proc "*Python*" py-output-buffer)))
1534 (if top
1535 (py-find-next-exception 'bob buffer 're-search-forward "Top")
Barry Warsawffbc17d1997-11-27 20:08:14 +00001536 (py-find-next-exception 'bol buffer 're-search-backward "Top"))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001537
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001538
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001539;; Electric deletion
1540(defun py-electric-backspace (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001541 "Delete preceding character or levels of indentation.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001542Deletion is performed by calling the function in `py-backspace-function'
Barry Warsawb0539931996-12-17 22:05:07 +00001543with a single argument (the number of characters to delete).
Barry Warsaw7ae77681994-12-12 20:38:05 +00001544
Barry Warsaw41a05c71998-08-10 16:33:12 +00001545If point is at the leftmost column, delete the preceding newline.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001546
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001547Otherwise, if point is at the leftmost non-whitespace character of a
1548line that is neither a continuation line nor a non-indenting comment
1549line, or if point is at the end of a blank line, this command reduces
1550the indentation to match that of the line that opened the current
1551block of code. The line that opened the block is displayed in the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001552echo area to help you keep track of where you are. With
1553\\[universal-argument] dedents that many blocks (but not past column
1554zero).
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001555
1556Otherwise the preceding character is deleted, converting a tab to
1557spaces if needed so that only a single column position is deleted.
Barry Warsawfa2def21999-05-24 21:43:37 +00001558\\[universal-argument] specifies how many characters to delete;
1559default is 1.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001560
1561When used programmatically, argument ARG specifies the number of
1562blocks to dedent, or the number of characters to delete, as indicated
1563above."
Barry Warsaw03970731996-07-03 23:12:52 +00001564 (interactive "*p")
Barry Warsaw7ae77681994-12-12 20:38:05 +00001565 (if (or (/= (current-indentation) (current-column))
1566 (bolp)
1567 (py-continuation-line-p)
Barry Warsawfa2def21999-05-24 21:43:37 +00001568; (not py-honor-comment-indentation)
1569; (looking-at "#[^ \t\n]") ; non-indenting #
1570 )
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001571 (funcall py-backspace-function arg)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001572 ;; else indent the same as the colon line that opened the block
Barry Warsaw7ae77681994-12-12 20:38:05 +00001573 ;; force non-blank so py-goto-block-up doesn't ignore it
1574 (insert-char ?* 1)
1575 (backward-char)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001576 (let ((base-indent 0) ; indentation of base line
1577 (base-text "") ; and text of base line
1578 (base-found-p nil))
Barry Warsaw03970731996-07-03 23:12:52 +00001579 (save-excursion
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001580 (while (< 0 arg)
Barry Warsaw03970731996-07-03 23:12:52 +00001581 (condition-case nil ; in case no enclosing block
1582 (progn
1583 (py-goto-block-up 'no-mark)
1584 (setq base-indent (current-indentation)
1585 base-text (py-suck-up-leading-text)
1586 base-found-p t))
1587 (error nil))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001588 (setq arg (1- arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001589 (delete-char 1) ; toss the dummy character
1590 (delete-horizontal-space)
1591 (indent-to base-indent)
1592 (if base-found-p
1593 (message "Closes block: %s" base-text)))))
1594
Barry Warsawfc8a01f1995-03-09 16:07:29 +00001595
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001596(defun py-electric-delete (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001597 "Delete preceding or following character or levels of whitespace.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001598
1599The behavior of this function depends on the variable
1600`delete-key-deletes-forward'. If this variable is nil (or does not
Barry Warsaw41a05c71998-08-10 16:33:12 +00001601exist, as in older Emacsen and non-XEmacs versions), then this
1602function behaves identically to \\[c-electric-backspace].
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001603
1604If `delete-key-deletes-forward' is non-nil and is supported in your
1605Emacs, then deletion occurs in the forward direction, by calling the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001606function in `py-delete-function'.
1607
1608\\[universal-argument] (programmatically, argument ARG) specifies the
1609number of characters to delete (default is 1)."
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001610 (interactive "*p")
Barry Warsaw1d7b0fa1999-01-15 02:12:31 +00001611 (if (or (and (fboundp 'delete-forward-p) ;XEmacs 21
1612 (delete-forward-p))
1613 (and (boundp 'delete-key-deletes-forward) ;XEmacs 20
1614 delete-key-deletes-forward))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001615 (funcall py-delete-function arg)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001616 (py-electric-backspace arg)))
1617
1618;; required for pending-del and delsel modes
1619(put 'py-electric-backspace 'delete-selection 'supersede) ;delsel
1620(put 'py-electric-backspace 'pending-delete 'supersede) ;pending-del
1621(put 'py-electric-delete 'delete-selection 'supersede) ;delsel
1622(put 'py-electric-delete 'pending-delete 'supersede) ;pending-del
1623
1624
1625
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001626(defun py-indent-line (&optional arg)
1627 "Fix the indentation of the current line according to Python rules.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001628With \\[universal-argument] (programmatically, the optional argument
1629ARG non-nil), ignore dedenting rules for block closing statements
1630(e.g. return, raise, break, continue, pass)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001631
1632This function is normally bound to `indent-line-function' so
1633\\[indent-for-tab-command] will call it."
1634 (interactive "P")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001635 (let* ((ci (current-indentation))
1636 (move-to-indentation-p (<= (current-column) ci))
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001637 (need (py-compute-indentation (not arg))))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001638 ;; see if we need to dedent
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001639 (if (py-outdent-p)
Barry Warsaw0012c1e1995-03-14 16:32:55 +00001640 (setq need (- need py-indent-offset)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001641 (if (/= ci need)
1642 (save-excursion
1643 (beginning-of-line)
1644 (delete-horizontal-space)
1645 (indent-to need)))
1646 (if move-to-indentation-p (back-to-indentation))))
1647
1648(defun py-newline-and-indent ()
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001649 "Strives to act like the Emacs `newline-and-indent'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001650This is just `strives to' because correct indentation can't be computed
1651from scratch for Python code. In general, deletes the whitespace before
1652point, inserts a newline, and takes an educated guess as to how you want
1653the new line indented."
1654 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001655 (let ((ci (current-indentation)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001656 (if (< ci (current-column)) ; if point beyond indentation
1657 (newline-and-indent)
1658 ;; else try to act like newline-and-indent "normally" acts
1659 (beginning-of-line)
1660 (insert-char ?\n 1)
1661 (move-to-column ci))))
1662
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001663(defun py-compute-indentation (honor-block-close-p)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001664 "Compute Python indentation.
1665When HONOR-BLOCK-CLOSE-P is non-nil, statements such as `return',
1666`raise', `break', `continue', and `pass' force one level of
1667dedenting."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001668 (save-excursion
Barry Warsawf64b4051998-02-12 16:52:14 +00001669 (beginning-of-line)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001670 (let* ((bod (py-point 'bod))
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001671 (pps (parse-partial-sexp bod (point)))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001672 (boipps (parse-partial-sexp bod (py-point 'boi)))
1673 placeholder)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001674 (cond
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001675 ;; are we inside a multi-line string or comment?
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001676 ((or (and (nth 3 pps) (nth 3 boipps))
1677 (and (nth 4 pps) (nth 4 boipps)))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001678 (save-excursion
1679 (if (not py-align-multiline-strings-p) 0
1680 ;; skip back over blank & non-indenting comment lines
1681 ;; note: will skip a blank or non-indenting comment line
1682 ;; that happens to be a continuation line too
1683 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move)
1684 (back-to-indentation)
1685 (current-column))))
1686 ;; are we on a continuation line?
1687 ((py-continuation-line-p)
1688 (let ((startpos (point))
1689 (open-bracket-pos (py-nesting-level))
Barry Warsawce60bc71996-08-01 18:17:14 +00001690 endpos searching found state)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001691 (if open-bracket-pos
1692 (progn
1693 ;; align with first item in list; else a normal
1694 ;; indent beyond the line with the open bracket
1695 (goto-char (1+ open-bracket-pos)) ; just beyond bracket
1696 ;; is the first list item on the same line?
1697 (skip-chars-forward " \t")
1698 (if (null (memq (following-char) '(?\n ?# ?\\)))
1699 ; yes, so line up with it
1700 (current-column)
1701 ;; first list item on another line, or doesn't exist yet
1702 (forward-line 1)
1703 (while (and (< (point) startpos)
1704 (looking-at "[ \t]*[#\n\\\\]")) ; skip noise
1705 (forward-line 1))
Barry Warsaw92166d91998-04-01 21:59:41 +00001706 (if (and (< (point) startpos)
1707 (/= startpos
1708 (save-excursion
1709 (goto-char (1+ open-bracket-pos))
Barry Warsaw77d1fce1998-04-16 20:04:59 +00001710 (forward-comment (point-max))
Barry Warsaw92166d91998-04-01 21:59:41 +00001711 (point))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001712 ;; again mimic the first list item
1713 (current-indentation)
1714 ;; else they're about to enter the first item
1715 (goto-char open-bracket-pos)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001716 (setq placeholder (point))
1717 (py-goto-initial-line)
1718 (py-goto-beginning-of-tqs
1719 (save-excursion (nth 3 (parse-partial-sexp
1720 placeholder (point)))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001721 (+ (current-indentation) py-indent-offset))))
1722
1723 ;; else on backslash continuation line
1724 (forward-line -1)
1725 (if (py-continuation-line-p) ; on at least 3rd line in block
1726 (current-indentation) ; so just continue the pattern
1727 ;; else started on 2nd line in block, so indent more.
1728 ;; if base line is an assignment with a start on a RHS,
1729 ;; indent to 2 beyond the leftmost "="; else skip first
1730 ;; chunk of non-whitespace characters on base line, + 1 more
1731 ;; column
1732 (end-of-line)
1733 (setq endpos (point) searching t)
1734 (back-to-indentation)
1735 (setq startpos (point))
1736 ;; look at all "=" from left to right, stopping at first
1737 ;; one not nested in a list or string
1738 (while searching
1739 (skip-chars-forward "^=" endpos)
1740 (if (= (point) endpos)
1741 (setq searching nil)
1742 (forward-char 1)
1743 (setq state (parse-partial-sexp startpos (point)))
1744 (if (and (zerop (car state)) ; not in a bracket
1745 (null (nth 3 state))) ; & not in a string
1746 (progn
1747 (setq searching nil) ; done searching in any case
1748 (setq found
1749 (not (or
1750 (eq (following-char) ?=)
1751 (memq (char-after (- (point) 2))
1752 '(?< ?> ?!)))))))))
1753 (if (or (not found) ; not an assignment
1754 (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash>
1755 (progn
1756 (goto-char startpos)
1757 (skip-chars-forward "^ \t\n")))
1758 (1+ (current-column))))))
1759
1760 ;; not on a continuation line
Barry Warsawa7891711996-08-01 15:53:09 +00001761 ((bobp) (current-indentation))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001762
Barry Warsawa7891711996-08-01 15:53:09 +00001763 ;; Dfn: "Indenting comment line". A line containing only a
1764 ;; comment, but which is treated like a statement for
1765 ;; indentation calculation purposes. Such lines are only
1766 ;; treated specially by the mode; they are not treated
1767 ;; specially by the Python interpreter.
1768
1769 ;; The rules for indenting comment lines are a line where:
1770 ;; - the first non-whitespace character is `#', and
1771 ;; - the character following the `#' is whitespace, and
Barry Warsaw41a05c71998-08-10 16:33:12 +00001772 ;; - the line is dedented with respect to (i.e. to the left
Barry Warsawa7891711996-08-01 15:53:09 +00001773 ;; of) the indentation of the preceding non-blank line.
1774
1775 ;; The first non-blank line following an indenting comment
1776 ;; line is given the same amount of indentation as the
1777 ;; indenting comment line.
1778
1779 ;; All other comment-only lines are ignored for indentation
1780 ;; purposes.
1781
1782 ;; Are we looking at a comment-only line which is *not* an
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001783 ;; indenting comment line? If so, we assume that it's been
Barry Warsawa7891711996-08-01 15:53:09 +00001784 ;; placed at the desired indentation, so leave it alone.
1785 ;; Indenting comment lines are aligned as statements down
1786 ;; below.
1787 ((and (looking-at "[ \t]*#[^ \t\n]")
1788 ;; NOTE: this test will not be performed in older Emacsen
1789 (fboundp 'forward-comment)
1790 (<= (current-indentation)
1791 (save-excursion
1792 (forward-comment (- (point-max)))
1793 (current-indentation))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001794 (current-indentation))
1795
1796 ;; else indentation based on that of the statement that
1797 ;; precedes us; use the first line of that statement to
1798 ;; establish the base, in case the user forced a non-std
1799 ;; indentation for the continuation lines (if any)
1800 (t
Barry Warsawc01c5c81995-09-14 18:49:11 +00001801 ;; skip back over blank & non-indenting comment lines note:
1802 ;; will skip a blank or non-indenting comment line that
Barry Warsawfd0fb381996-03-04 17:15:40 +00001803 ;; happens to be a continuation line too. use fast Emacs 19
1804 ;; function if it's there.
Barry Warsaw6d627751996-03-06 18:41:38 +00001805 (if (and (eq py-honor-comment-indentation nil)
Barry Warsaw33d6ec01996-03-05 16:28:07 +00001806 (fboundp 'forward-comment))
Barry Warsawfd0fb381996-03-04 17:15:40 +00001807 (forward-comment (- (point-max)))
Barry Warsaw218eb751998-09-22 19:51:47 +00001808 (let ((prefix-re (concat py-block-comment-prefix "[ \t]*"))
1809 done)
Barry Warsaw6d627751996-03-06 18:41:38 +00001810 (while (not done)
Barry Warsaw12c92941998-08-10 21:44:37 +00001811 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#\\)" nil 'move)
1812 (setq done (or (bobp)
1813 (and (eq py-honor-comment-indentation t)
1814 (save-excursion
1815 (back-to-indentation)
Barry Warsaw218eb751998-09-22 19:51:47 +00001816 (not (looking-at prefix-re))
Barry Warsaw12c92941998-08-10 21:44:37 +00001817 ))
1818 (and (not (eq py-honor-comment-indentation t))
1819 (save-excursion
1820 (back-to-indentation)
1821 (not (zerop (current-column)))))
1822 ))
Barry Warsaw6d627751996-03-06 18:41:38 +00001823 )))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001824 ;; if we landed inside a string, go to the beginning of that
1825 ;; string. this handles triple quoted, multi-line spanning
1826 ;; strings.
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001827 (py-goto-beginning-of-tqs (nth 3 (parse-partial-sexp bod (point))))
Barry Warsawc210e691998-01-20 22:52:56 +00001828 ;; now skip backward over continued lines
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001829 (setq placeholder (point))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001830 (py-goto-initial-line)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001831 ;; we may *now* have landed in a TQS, so find the beginning of
1832 ;; this string.
1833 (py-goto-beginning-of-tqs
1834 (save-excursion (nth 3 (parse-partial-sexp
1835 placeholder (point)))))
Barry Warsawf831d811996-07-31 20:42:59 +00001836 (+ (current-indentation)
1837 (if (py-statement-opens-block-p)
1838 py-indent-offset
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001839 (if (and honor-block-close-p (py-statement-closes-block-p))
Barry Warsawf831d811996-07-31 20:42:59 +00001840 (- py-indent-offset)
1841 0)))
1842 )))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001843
1844(defun py-guess-indent-offset (&optional global)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001845 "Guess a good value for, and change, `py-indent-offset'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001846
1847By default, make a buffer-local copy of `py-indent-offset' with the
1848new value, so that other Python buffers are not affected. With
1849\\[universal-argument] (programmatically, optional argument GLOBAL),
1850change the global value of `py-indent-offset'. This affects all
1851Python buffers (that don't have their own buffer-local copy), both
1852those currently existing and those created later in the Emacs session.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001853
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001854Some people use a different value for `py-indent-offset' than you use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001855There's no excuse for such foolishness, but sometimes you have to deal
1856with their ugly code anyway. This function examines the file and sets
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001857`py-indent-offset' to what it thinks it was when they created the
1858mess.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001859
1860Specifically, it searches forward from the statement containing point,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001861looking for a line that opens a block of code. `py-indent-offset' is
1862set to the difference in indentation between that line and the Python
Barry Warsaw7ae77681994-12-12 20:38:05 +00001863statement following it. If the search doesn't succeed going forward,
1864it's tried again going backward."
1865 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001866 (let (new-value
1867 (start (point))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001868 (restart (point))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001869 (found nil)
1870 colon-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001871 (py-goto-initial-line)
1872 (while (not (or found (eobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001873 (when (and (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1874 (not (py-in-literal restart)))
1875 (setq restart (point))
1876 (py-goto-initial-line)
1877 (if (py-statement-opens-block-p)
1878 (setq found t)
1879 (goto-char restart))))
1880 (unless found
Barry Warsaw7ae77681994-12-12 20:38:05 +00001881 (goto-char start)
1882 (py-goto-initial-line)
1883 (while (not (or found (bobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001884 (setq found (and
1885 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1886 (or (py-goto-initial-line) t) ; always true -- side effect
1887 (py-statement-opens-block-p)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001888 (setq colon-indent (current-indentation)
1889 found (and found (zerop (py-next-statement 1)))
1890 new-value (- (current-indentation) colon-indent))
1891 (goto-char start)
Barry Warsawe908b6b1998-03-19 22:48:02 +00001892 (if (not found)
1893 (error "Sorry, couldn't guess a value for py-indent-offset")
1894 (funcall (if global 'kill-local-variable 'make-local-variable)
1895 'py-indent-offset)
1896 (setq py-indent-offset new-value)
Barry Warsawd35c2551998-09-25 00:08:38 +00001897 (or noninteractive
1898 (message "%s value of py-indent-offset set to %d"
1899 (if global "Global" "Local")
1900 py-indent-offset)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001901 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001902
Barry Warsaw003932a1998-07-07 15:11:24 +00001903(defun py-comment-indent-function ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00001904 "Python version of `comment-indent-function'."
1905 ;; This is required when filladapt is turned off. Without it, when
1906 ;; filladapt is not used, comments which start in column zero
1907 ;; cascade one character to the right
Barry Warsaw003932a1998-07-07 15:11:24 +00001908 (save-excursion
1909 (beginning-of-line)
1910 (let ((eol (py-point 'eol)))
1911 (and comment-start-skip
1912 (re-search-forward comment-start-skip eol t)
1913 (setq eol (match-beginning 0)))
1914 (goto-char eol)
1915 (skip-chars-backward " \t")
1916 (max comment-column (+ (current-column) (if (bolp) 0 1)))
1917 )))
1918
Barry Warsawf8ddb6a1999-01-18 21:49:39 +00001919(defun py-narrow-to-defun (&optional class)
1920 "Make text outside current defun invisible.
1921The defun visible is the one that contains point or follows point.
1922Optional CLASS is passed directly to `py-beginning-of-def-or-class'."
1923 (interactive "P")
1924 (save-excursion
1925 (widen)
1926 (py-end-of-def-or-class class)
1927 (let ((end (point)))
1928 (py-beginning-of-def-or-class class)
1929 (narrow-to-region (point) end))))
1930
Barry Warsaw003932a1998-07-07 15:11:24 +00001931
Barry Warsaw7ae77681994-12-12 20:38:05 +00001932(defun py-shift-region (start end count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001933 "Indent lines from START to END by COUNT spaces."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001934 (save-excursion
Barry Warsaw41a05c71998-08-10 16:33:12 +00001935 (goto-char end)
1936 (beginning-of-line)
1937 (setq end (point))
1938 (goto-char start)
1939 (beginning-of-line)
1940 (setq start (point))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001941 (indent-rigidly start end count)))
1942
1943(defun py-shift-region-left (start end &optional count)
1944 "Shift region of Python code to the left.
1945The lines from the line containing the start of the current region up
1946to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001947shifted to the left, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001948
1949If a prefix argument is given, the region is instead shifted by that
Barry Warsaw41a05c71998-08-10 16:33:12 +00001950many columns. With no active region, dedent only the current line.
1951You cannot dedent the region if any line is already at column zero."
Barry Warsawdea4a291996-07-03 22:59:12 +00001952 (interactive
1953 (let ((p (point))
1954 (m (mark))
1955 (arg current-prefix-arg))
1956 (if m
1957 (list (min p m) (max p m) arg)
1958 (list p (save-excursion (forward-line 1) (point)) arg))))
1959 ;; if any line is at column zero, don't shift the region
1960 (save-excursion
1961 (goto-char start)
1962 (while (< (point) end)
1963 (back-to-indentation)
Barry Warsaw71e315b1996-07-23 15:03:16 +00001964 (if (and (zerop (current-column))
1965 (not (looking-at "\\s *$")))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001966 (error "Region is at left edge"))
Barry Warsawdea4a291996-07-03 22:59:12 +00001967 (forward-line 1)))
1968 (py-shift-region start end (- (prefix-numeric-value
1969 (or count py-indent-offset))))
1970 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001971
1972(defun py-shift-region-right (start end &optional count)
1973 "Shift region of Python code to the right.
1974The lines from the line containing the start of the current region up
1975to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001976shifted to the right, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001977
1978If a prefix argument is given, the region is instead shifted by that
Barry Warsawdea4a291996-07-03 22:59:12 +00001979many columns. With no active region, indent only the current line."
1980 (interactive
1981 (let ((p (point))
1982 (m (mark))
1983 (arg current-prefix-arg))
1984 (if m
1985 (list (min p m) (max p m) arg)
1986 (list p (save-excursion (forward-line 1) (point)) arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001987 (py-shift-region start end (prefix-numeric-value
Barry Warsawdea4a291996-07-03 22:59:12 +00001988 (or count py-indent-offset)))
1989 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001990
1991(defun py-indent-region (start end &optional indent-offset)
1992 "Reindent a region of Python code.
Barry Warsaw867a32a1996-03-07 18:30:26 +00001993
Barry Warsaw7ae77681994-12-12 20:38:05 +00001994The lines from the line containing the start of the current region up
1995to (but not including) the line containing the end of the region are
1996reindented. If the first line of the region has a non-whitespace
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001997character in the first column, the first line is left alone and the
1998rest of the region is reindented with respect to it. Else the entire
Barry Warsaw867a32a1996-03-07 18:30:26 +00001999region is reindented with respect to the (closest code or indenting
2000comment) statement immediately preceding the region.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002001
2002This is useful when code blocks are moved or yanked, when enclosing
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002003control structures are introduced or removed, or to reformat code
2004using a new value for the indentation offset.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002005
2006If a numeric prefix argument is given, it will be used as the value of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002007the indentation offset. Else the value of `py-indent-offset' will be
Barry Warsaw7ae77681994-12-12 20:38:05 +00002008used.
2009
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002010Warning: The region must be consistently indented before this function
Barry Warsaw7ae77681994-12-12 20:38:05 +00002011is called! This function does not compute proper indentation from
2012scratch (that's impossible in Python), it merely adjusts the existing
2013indentation to be correct in context.
2014
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002015Warning: This function really has no idea what to do with
2016non-indenting comment lines, and shifts them as if they were indenting
2017comment lines. Fixing this appears to require telepathy.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002018
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002019Special cases: whitespace is deleted from blank lines; continuation
2020lines are shifted by the same amount their initial line was shifted,
2021in order to preserve their relative indentation with respect to their
Barry Warsaw7ae77681994-12-12 20:38:05 +00002022initial line; and comment lines beginning in column 1 are ignored."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002023 (interactive "*r\nP") ; region; raw prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002024 (save-excursion
2025 (goto-char end) (beginning-of-line) (setq end (point-marker))
2026 (goto-char start) (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002027 (let ((py-indent-offset (prefix-numeric-value
2028 (or indent-offset py-indent-offset)))
2029 (indents '(-1)) ; stack of active indent levels
2030 (target-column 0) ; column to which to indent
2031 (base-shifted-by 0) ; amount last base line was shifted
2032 (indent-base (if (looking-at "[ \t\n]")
Barry Warsaw7cb505c1996-10-23 20:44:59 +00002033 (py-compute-indentation t)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002034 0))
2035 ci)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002036 (while (< (point) end)
2037 (setq ci (current-indentation))
2038 ;; figure out appropriate target column
2039 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002040 ((or (eq (following-char) ?#) ; comment in column 1
2041 (looking-at "[ \t]*$")) ; entirely blank
2042 (setq target-column 0))
2043 ((py-continuation-line-p) ; shift relative to base line
2044 (setq target-column (+ ci base-shifted-by)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002045 (t ; new base line
2046 (if (> ci (car indents)) ; going deeper; push it
2047 (setq indents (cons ci indents))
2048 ;; else we should have seen this indent before
2049 (setq indents (memq ci indents)) ; pop deeper indents
2050 (if (null indents)
2051 (error "Bad indentation in region, at line %d"
2052 (save-restriction
2053 (widen)
2054 (1+ (count-lines 1 (point)))))))
2055 (setq target-column (+ indent-base
2056 (* py-indent-offset
2057 (- (length indents) 2))))
2058 (setq base-shifted-by (- target-column ci))))
2059 ;; shift as needed
2060 (if (/= ci target-column)
2061 (progn
2062 (delete-horizontal-space)
2063 (indent-to target-column)))
2064 (forward-line 1))))
2065 (set-marker end nil))
2066
Barry Warsawa7891711996-08-01 15:53:09 +00002067(defun py-comment-region (beg end &optional arg)
2068 "Like `comment-region' but uses double hash (`#') comment starter."
2069 (interactive "r\nP")
Barry Warsaw3fcaf611996-08-01 20:11:51 +00002070 (let ((comment-start py-block-comment-prefix))
Barry Warsawa7891711996-08-01 15:53:09 +00002071 (comment-region beg end arg)))
2072
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002073
2074;; Functions for moving point
Barry Warsaw7ae77681994-12-12 20:38:05 +00002075(defun py-previous-statement (count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002076 "Go to the start of the COUNTth preceding Python statement.
2077By default, goes to the previous statement. If there is no such
2078statement, goes to the first statement. Return count of statements
2079left to move. `Statements' do not include blank, comment, or
2080continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002081 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002082 (if (< count 0) (py-next-statement (- count))
2083 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002084 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002085 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002086 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002087 (> count 0)
2088 (zerop (forward-line -1))
2089 (py-goto-statement-at-or-above))
2090 (setq count (1- count)))
2091 (if (> count 0) (goto-char start)))
2092 count))
2093
2094(defun py-next-statement (count)
2095 "Go to the start of next Python statement.
2096If the statement at point is the i'th Python statement, goes to the
2097start of statement i+COUNT. If there is no such statement, goes to the
2098last statement. Returns count of statements left to move. `Statements'
2099do not include blank, comment, or continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002100 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002101 (if (< count 0) (py-previous-statement (- count))
2102 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002103 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002104 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002105 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002106 (> count 0)
2107 (py-goto-statement-below))
2108 (setq count (1- count)))
2109 (if (> count 0) (goto-char start)))
2110 count))
2111
2112(defun py-goto-block-up (&optional nomark)
2113 "Move up to start of current block.
2114Go to the statement that starts the smallest enclosing block; roughly
2115speaking, this will be the closest preceding statement that ends with a
2116colon and is indented less than the statement you started on. If
2117successful, also sets the mark to the starting point.
2118
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002119`\\[py-mark-block]' can be used afterward to mark the whole code
2120block, if desired.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002121
2122If called from a program, the mark will not be set if optional argument
2123NOMARK is not nil."
2124 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002125 (let ((start (point))
2126 (found nil)
2127 initial-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002128 (py-goto-initial-line)
2129 ;; if on blank or non-indenting comment line, use the preceding stmt
2130 (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2131 (progn
2132 (py-goto-statement-at-or-above)
2133 (setq found (py-statement-opens-block-p))))
2134 ;; search back for colon line indented less
2135 (setq initial-indent (current-indentation))
2136 (if (zerop initial-indent)
2137 ;; force fast exit
2138 (goto-char (point-min)))
2139 (while (not (or found (bobp)))
2140 (setq found
2141 (and
2142 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2143 (or (py-goto-initial-line) t) ; always true -- side effect
2144 (< (current-indentation) initial-indent)
2145 (py-statement-opens-block-p))))
2146 (if found
2147 (progn
2148 (or nomark (push-mark start))
2149 (back-to-indentation))
2150 (goto-char start)
2151 (error "Enclosing block not found"))))
2152
Barry Warsawab0e86c1998-05-19 15:31:46 +00002153(defun py-beginning-of-def-or-class (&optional class count)
2154 "Move point to start of `def' or `class'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002155
2156Searches back for the closest preceding `def'. If you supply a prefix
Barry Warsawab0e86c1998-05-19 15:31:46 +00002157arg, looks for a `class' instead. The docs below assume the `def'
2158case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002159Programmatically, if CLASS is `either', then moves to either `class'
2160or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002161
Barry Warsawab0e86c1998-05-19 15:31:46 +00002162When second optional argument is given programmatically, move to the
2163COUNTth start of `def'.
2164
2165If point is in a `def' statement already, and after the `d', simply
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002166moves point to the start of the statement.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002167
Barry Warsawab0e86c1998-05-19 15:31:46 +00002168Otherwise (i.e. when point is not in a `def' statement, or at or
2169before the `d' of a `def' statement), searches for the closest
2170preceding `def' statement, and leaves point at its start. If no such
2171statement can be found, leaves point at the start of the buffer.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002172
Barry Warsawab0e86c1998-05-19 15:31:46 +00002173Returns t iff a `def' statement is found by these rules.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002174
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002175Note that doing this command repeatedly will take you closer to the
2176start of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002177
Barry Warsaw7c29b231998-07-07 17:45:38 +00002178To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002179 (interactive "P") ; raw prefix arg
Barry Warsaw6839d3a1998-10-28 00:10:45 +00002180 (setq count (or count 1))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002181 (let ((at-or-before-p (<= (current-column) (current-indentation)))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002182 (start-of-line (goto-char (py-point 'bol)))
2183 (start-of-stmt (goto-char (py-point 'bos)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002184 (start-re (cond ((eq class 'either) "^[ \t]*\\(class\\|def\\)\\>")
2185 (class "^[ \t]*class\\>")
2186 (t "^[ \t]*def\\>")))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002187 )
2188 ;; searching backward
2189 (if (and (< 0 count)
2190 (or (/= start-of-stmt start-of-line)
2191 (not at-or-before-p)))
2192 (end-of-line))
2193 ;; search forward
2194 (if (and (> 0 count)
2195 (zerop (current-column))
2196 (looking-at start-re))
2197 (end-of-line))
Barry Warsawddc46961999-07-27 21:40:02 +00002198 (if (re-search-backward start-re nil 'move count)
2199 (goto-char (match-beginning 0)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002200
Barry Warsawab0e86c1998-05-19 15:31:46 +00002201;; Backwards compatibility
2202(defalias 'beginning-of-python-def-or-class 'py-beginning-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002203
Barry Warsawab0e86c1998-05-19 15:31:46 +00002204(defun py-end-of-def-or-class (&optional class count)
2205 "Move point beyond end of `def' or `class' body.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002206
Barry Warsawab0e86c1998-05-19 15:31:46 +00002207By default, looks for an appropriate `def'. If you supply a prefix
2208arg, looks for a `class' instead. The docs below assume the `def'
2209case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002210Programmatically, if CLASS is `either', then moves to either `class'
2211or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002212
Barry Warsawab0e86c1998-05-19 15:31:46 +00002213When second optional argument is given programmatically, move to the
2214COUNTth end of `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002215
Barry Warsawab0e86c1998-05-19 15:31:46 +00002216If point is in a `def' statement already, this is the `def' we use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002217
Barry Warsawab0e86c1998-05-19 15:31:46 +00002218Else, if the `def' found by `\\[py-beginning-of-def-or-class]'
2219contains the statement you started on, that's the `def' we use.
2220
2221Otherwise, we search forward for the closest following `def', and use that.
2222
2223If a `def' can be found by these rules, point is moved to the start of
2224the line immediately following the `def' block, and the position of the
2225start of the `def' is returned.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002226
2227Else point is moved to the end of the buffer, and nil is returned.
2228
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002229Note that doing this command repeatedly will take you closer to the
2230end of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002231
Barry Warsaw7c29b231998-07-07 17:45:38 +00002232To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002233 (interactive "P") ; raw prefix arg
Barry Warsawab0e86c1998-05-19 15:31:46 +00002234 (if (and count (/= count 1))
2235 (py-beginning-of-def-or-class (- 1 count)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002236 (let ((start (progn (py-goto-initial-line) (point)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002237 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2238 (class "class")
2239 (t "def")))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002240 (state 'not-found))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002241 ;; move point to start of appropriate def/class
2242 (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one
2243 (setq state 'at-beginning)
Barry Warsawab0e86c1998-05-19 15:31:46 +00002244 ;; else see if py-beginning-of-def-or-class hits container
2245 (if (and (py-beginning-of-def-or-class class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002246 (progn (py-goto-beyond-block)
2247 (> (point) start)))
2248 (setq state 'at-end)
2249 ;; else search forward
2250 (goto-char start)
2251 (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move)
2252 (progn (setq state 'at-beginning)
2253 (beginning-of-line)))))
2254 (cond
2255 ((eq state 'at-beginning) (py-goto-beyond-block) t)
2256 ((eq state 'at-end) t)
2257 ((eq state 'not-found) nil)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002258 (t (error "Internal error in `py-end-of-def-or-class'")))))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002259
2260;; Backwards compabitility
Barry Warsaw820273d1998-05-19 15:54:45 +00002261(defalias 'end-of-python-def-or-class 'py-end-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002262
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002263
2264;; Functions for marking regions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002265(defun py-mark-block (&optional extend just-move)
2266 "Mark following block of lines. With prefix arg, mark structure.
2267Easier to use than explain. It sets the region to an `interesting'
2268block of succeeding lines. If point is on a blank line, it goes down to
2269the next non-blank line. That will be the start of the region. The end
2270of the region depends on the kind of line at the start:
2271
2272 - If a comment, the region will include all succeeding comment lines up
2273 to (but not including) the next non-comment line (if any).
2274
2275 - Else if a prefix arg is given, and the line begins one of these
2276 structures:
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002277
2278 if elif else try except finally for while def class
2279
Barry Warsaw7ae77681994-12-12 20:38:05 +00002280 the region will be set to the body of the structure, including
2281 following blocks that `belong' to it, but excluding trailing blank
2282 and comment lines. E.g., if on a `try' statement, the `try' block
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002283 and all (if any) of the following `except' and `finally' blocks
2284 that belong to the `try' structure will be in the region. Ditto
2285 for if/elif/else, for/else and while/else structures, and (a bit
2286 degenerate, since they're always one-block structures) def and
2287 class blocks.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002288
2289 - Else if no prefix argument is given, and the line begins a Python
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002290 block (see list above), and the block is not a `one-liner' (i.e.,
2291 the statement ends with a colon, not with code), the region will
2292 include all succeeding lines up to (but not including) the next
2293 code statement (if any) that's indented no more than the starting
2294 line, except that trailing blank and comment lines are excluded.
2295 E.g., if the starting line begins a multi-statement `def'
2296 structure, the region will be set to the full function definition,
2297 but without any trailing `noise' lines.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002298
2299 - Else the region will include all succeeding lines up to (but not
2300 including) the next blank line, or code or indenting-comment line
2301 indented strictly less than the starting line. Trailing indenting
2302 comment lines are included in this case, but not trailing blank
2303 lines.
2304
2305A msg identifying the location of the mark is displayed in the echo
2306area; or do `\\[exchange-point-and-mark]' to flip down to the end.
2307
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002308If called from a program, optional argument EXTEND plays the role of
2309the prefix arg, and if optional argument JUST-MOVE is not nil, just
2310moves to the end of the block (& does not set mark or display a msg)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002311 (interactive "P") ; raw prefix arg
2312 (py-goto-initial-line)
2313 ;; skip over blank lines
2314 (while (and
2315 (looking-at "[ \t]*$") ; while blank line
2316 (not (eobp))) ; & somewhere to go
2317 (forward-line 1))
2318 (if (eobp)
2319 (error "Hit end of buffer without finding a non-blank stmt"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002320 (let ((initial-pos (point))
2321 (initial-indent (current-indentation))
2322 last-pos ; position of last stmt in region
2323 (followers
2324 '((if elif else) (elif elif else) (else)
2325 (try except finally) (except except) (finally)
2326 (for else) (while else)
2327 (def) (class) ) )
2328 first-symbol next-symbol)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002329
2330 (cond
2331 ;; if comment line, suck up the following comment lines
2332 ((looking-at "[ \t]*#")
2333 (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment
2334 (re-search-backward "^[ \t]*#") ; and back to last comment in block
2335 (setq last-pos (point)))
2336
2337 ;; else if line is a block line and EXTEND given, suck up
2338 ;; the whole structure
2339 ((and extend
2340 (setq first-symbol (py-suck-up-first-keyword) )
2341 (assq first-symbol followers))
2342 (while (and
2343 (or (py-goto-beyond-block) t) ; side effect
2344 (forward-line -1) ; side effect
2345 (setq last-pos (point)) ; side effect
2346 (py-goto-statement-below)
2347 (= (current-indentation) initial-indent)
2348 (setq next-symbol (py-suck-up-first-keyword))
2349 (memq next-symbol (cdr (assq first-symbol followers))))
2350 (setq first-symbol next-symbol)))
2351
2352 ;; else if line *opens* a block, search for next stmt indented <=
2353 ((py-statement-opens-block-p)
2354 (while (and
2355 (setq last-pos (point)) ; always true -- side effect
2356 (py-goto-statement-below)
2357 (> (current-indentation) initial-indent))
2358 nil))
2359
2360 ;; else plain code line; stop at next blank line, or stmt or
2361 ;; indenting comment line indented <
2362 (t
2363 (while (and
2364 (setq last-pos (point)) ; always true -- side effect
2365 (or (py-goto-beyond-final-line) t)
2366 (not (looking-at "[ \t]*$")) ; stop at blank line
2367 (or
2368 (>= (current-indentation) initial-indent)
2369 (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting #
2370 nil)))
2371
2372 ;; skip to end of last stmt
2373 (goto-char last-pos)
2374 (py-goto-beyond-final-line)
2375
2376 ;; set mark & display
2377 (if just-move
2378 () ; just return
2379 (push-mark (point) 'no-msg)
2380 (forward-line -1)
2381 (message "Mark set after: %s" (py-suck-up-leading-text))
2382 (goto-char initial-pos))))
2383
Barry Warsaw2518c671997-11-05 00:51:08 +00002384(defun py-mark-def-or-class (&optional class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002385 "Set region to body of def (or class, with prefix arg) enclosing point.
2386Pushes the current mark, then point, on the mark ring (all language
2387modes do this, but although it's handy it's never documented ...).
2388
2389In most Emacs language modes, this function bears at least a
Barry Warsawab0e86c1998-05-19 15:31:46 +00002390hallucinogenic resemblance to `\\[py-end-of-def-or-class]' and
2391`\\[py-beginning-of-def-or-class]'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002392
2393And in earlier versions of Python mode, all 3 were tightly connected.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002394Turned out that was more confusing than useful: the `goto start' and
2395`goto end' commands are usually used to search through a file, and
2396people expect them to act a lot like `search backward' and `search
2397forward' string-search commands. But because Python `def' and `class'
2398can nest to arbitrary levels, finding the smallest def containing
2399point cannot be done via a simple backward search: the def containing
2400point may not be the closest preceding def, or even the closest
2401preceding def that's indented less. The fancy algorithm required is
2402appropriate for the usual uses of this `mark' command, but not for the
2403`goto' variations.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002404
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002405So the def marked by this command may not be the one either of the
2406`goto' commands find: If point is on a blank or non-indenting comment
2407line, moves back to start of the closest preceding code statement or
2408indenting comment line. If this is a `def' statement, that's the def
2409we use. Else searches for the smallest enclosing `def' block and uses
2410that. Else signals an error.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002411
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002412When an enclosing def is found: The mark is left immediately beyond
2413the last line of the def block. Point is left at the start of the
2414def, except that: if the def is preceded by a number of comment lines
2415followed by (at most) one optional blank line, point is left at the
2416start of the comments; else if the def is preceded by a blank line,
2417point is left at its start.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002418
2419The intent is to mark the containing def/class and its associated
2420documentation, to make moving and duplicating functions and classes
2421pleasant."
2422 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002423 (let ((start (point))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002424 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2425 (class "class")
2426 (t "def"))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002427 (push-mark start)
2428 (if (not (py-go-up-tree-to-keyword which))
2429 (progn (goto-char start)
Barry Warsaw7c29b231998-07-07 17:45:38 +00002430 (error "Enclosing %s not found"
2431 (if (eq class 'either)
2432 "def or class"
2433 which)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002434 ;; else enclosing def/class found
2435 (setq start (point))
2436 (py-goto-beyond-block)
2437 (push-mark (point))
2438 (goto-char start)
2439 (if (zerop (forward-line -1)) ; if there is a preceding line
2440 (progn
2441 (if (looking-at "[ \t]*$") ; it's blank
2442 (setq start (point)) ; so reset start point
2443 (goto-char start)) ; else try again
2444 (if (zerop (forward-line -1))
2445 (if (looking-at "[ \t]*#") ; a comment
2446 ;; look back for non-comment line
2447 ;; tricky: note that the regexp matches a blank
2448 ;; line, cuz \n is in the 2nd character class
2449 (and
2450 (re-search-backward "^[ \t]*[^ \t#]" nil 'move)
2451 (forward-line 1))
2452 ;; no comment, so go back
Barry Warsaw4da6bd51997-11-26 06:00:26 +00002453 (goto-char start)))))))
2454 (exchange-point-and-mark)
2455 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002456
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002457;; ripped from cc-mode
2458(defun py-forward-into-nomenclature (&optional arg)
2459 "Move forward to end of a nomenclature section or word.
Barry Warsaw41a05c71998-08-10 16:33:12 +00002460With \\[universal-argument] (programmatically, optional argument ARG),
2461do it that many times.
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002462
2463A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2464 (interactive "p")
2465 (let ((case-fold-search nil))
2466 (if (> arg 0)
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002467 (re-search-forward
2468 "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)"
2469 (point-max) t arg)
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002470 (while (and (< arg 0)
2471 (re-search-backward
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002472 "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+"
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002473 (point-min) 0))
2474 (forward-char 1)
2475 (setq arg (1+ arg)))))
2476 (py-keep-region-active))
2477
2478(defun py-backward-into-nomenclature (&optional arg)
2479 "Move backward to beginning of a nomenclature section or word.
2480With optional ARG, move that many times. If ARG is negative, move
2481forward.
2482
2483A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2484 (interactive "p")
2485 (py-forward-into-nomenclature (- arg))
2486 (py-keep-region-active))
2487
2488
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002489
2490;; Documentation functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002491
2492;; dump the long form of the mode blurb; does the usual doc escapes,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002493;; plus lines of the form ^[vc]:name$ to suck variable & command docs
2494;; out of the right places, along with the keys they're on & current
2495;; values
Barry Warsaw7ae77681994-12-12 20:38:05 +00002496(defun py-dump-help-string (str)
2497 (with-output-to-temp-buffer "*Help*"
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002498 (let ((locals (buffer-local-variables))
2499 funckind funcname func funcdoc
2500 (start 0) mstart end
2501 keys )
Barry Warsaw7ae77681994-12-12 20:38:05 +00002502 (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start)
2503 (setq mstart (match-beginning 0) end (match-end 0)
2504 funckind (substring str (match-beginning 1) (match-end 1))
2505 funcname (substring str (match-beginning 2) (match-end 2))
2506 func (intern funcname))
2507 (princ (substitute-command-keys (substring str start mstart)))
2508 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002509 ((equal funckind "c") ; command
2510 (setq funcdoc (documentation func)
2511 keys (concat
2512 "Key(s): "
2513 (mapconcat 'key-description
2514 (where-is-internal func py-mode-map)
2515 ", "))))
2516 ((equal funckind "v") ; variable
Barry Warsaw604cefa1996-09-03 18:17:04 +00002517 (setq funcdoc (documentation-property func 'variable-documentation)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002518 keys (if (assq func locals)
2519 (concat
2520 "Local/Global values: "
2521 (prin1-to-string (symbol-value func))
2522 " / "
2523 (prin1-to-string (default-value func)))
2524 (concat
2525 "Value: "
2526 (prin1-to-string (symbol-value func))))))
2527 (t ; unexpected
2528 (error "Error in py-dump-help-string, tag `%s'" funckind)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002529 (princ (format "\n-> %s:\t%s\t%s\n\n"
2530 (if (equal funckind "c") "Command" "Variable")
2531 funcname keys))
2532 (princ funcdoc)
2533 (terpri)
2534 (setq start end))
2535 (princ (substitute-command-keys (substring str start))))
2536 (print-help-return-message)))
2537
2538(defun py-describe-mode ()
2539 "Dump long form of Python-mode docs."
2540 (interactive)
2541 (py-dump-help-string "Major mode for editing Python files.
2542Knows about Python indentation, tokens, comments and continuation lines.
2543Paragraphs are separated by blank lines only.
2544
2545Major sections below begin with the string `@'; specific function and
2546variable docs begin with `->'.
2547
2548@EXECUTING PYTHON CODE
2549
Barry Warsaw820273d1998-05-19 15:54:45 +00002550\\[py-execute-import-or-reload]\timports or reloads the file in the Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002551\\[py-execute-buffer]\tsends the entire buffer to the Python interpreter
2552\\[py-execute-region]\tsends the current region
Barry Warsaw820273d1998-05-19 15:54:45 +00002553\\[py-execute-def-or-class]\tsends the current function or class definition
2554\\[py-execute-string]\tsends an arbitrary string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002555\\[py-shell]\tstarts a Python interpreter window; this will be used by
Barry Warsaw820273d1998-05-19 15:54:45 +00002556\tsubsequent Python execution commands
2557%c:py-execute-import-or-reload
Barry Warsaw7ae77681994-12-12 20:38:05 +00002558%c:py-execute-buffer
2559%c:py-execute-region
Barry Warsaw820273d1998-05-19 15:54:45 +00002560%c:py-execute-def-or-class
2561%c:py-execute-string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002562%c:py-shell
2563
2564@VARIABLES
2565
2566py-indent-offset\tindentation increment
Barry Warsaw42f707f1996-07-29 21:05:05 +00002567py-block-comment-prefix\tcomment string used by comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002568
2569py-python-command\tshell command to invoke Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002570py-temp-directory\tdirectory used for temp files (if needed)
2571
2572py-beep-if-tab-change\tring the bell if tab-width is changed
2573%v:py-indent-offset
2574%v:py-block-comment-prefix
2575%v:py-python-command
Barry Warsaw7ae77681994-12-12 20:38:05 +00002576%v:py-temp-directory
2577%v:py-beep-if-tab-change
2578
2579@KINDS OF LINES
2580
2581Each physical line in the file is either a `continuation line' (the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002582preceding line ends with a backslash that's not part of a comment, or
2583the paren/bracket/brace nesting level at the start of the line is
2584non-zero, or both) or an `initial line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002585
2586An initial line is in turn a `blank line' (contains nothing except
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002587possibly blanks or tabs), a `comment line' (leftmost non-blank
2588character is `#'), or a `code line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002589
2590Comment Lines
2591
2592Although all comment lines are treated alike by Python, Python mode
2593recognizes two kinds that act differently with respect to indentation.
2594
2595An `indenting comment line' is a comment line with a blank, tab or
2596nothing after the initial `#'. The indentation commands (see below)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002597treat these exactly as if they were code lines: a line following an
Barry Warsaw7ae77681994-12-12 20:38:05 +00002598indenting comment line will be indented like the comment line. All
2599other comment lines (those with a non-whitespace character immediately
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002600following the initial `#') are `non-indenting comment lines', and
2601their indentation is ignored by the indentation commands.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002602
2603Indenting comment lines are by far the usual case, and should be used
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002604whenever possible. Non-indenting comment lines are useful in cases
2605like these:
Barry Warsaw7ae77681994-12-12 20:38:05 +00002606
2607\ta = b # a very wordy single-line comment that ends up being
2608\t #... continued onto another line
2609
2610\tif a == b:
2611##\t\tprint 'panic!' # old code we've `commented out'
2612\t\treturn a
2613
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002614Since the `#...' and `##' comment lines have a non-whitespace
2615character following the initial `#', Python mode ignores them when
2616computing the proper indentation for the next line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002617
2618Continuation Lines and Statements
2619
2620The Python-mode commands generally work on statements instead of on
2621individual lines, where a `statement' is a comment or blank line, or a
2622code line and all of its following continuation lines (if any)
2623considered as a single logical unit. The commands in this mode
2624generally (when it makes sense) automatically move to the start of the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002625statement containing point, even if point happens to be in the middle
2626of some continuation line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002627
2628
2629@INDENTATION
2630
2631Primarily for entering new code:
2632\t\\[indent-for-tab-command]\t indent line appropriately
2633\t\\[py-newline-and-indent]\t insert newline, then indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00002634\t\\[py-electric-backspace]\t reduce indentation, or delete single character
Barry Warsaw7ae77681994-12-12 20:38:05 +00002635
2636Primarily for reindenting existing code:
2637\t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally
2638\t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally
2639
2640\t\\[py-indent-region]\t reindent region to match its context
2641\t\\[py-shift-region-left]\t shift region left by py-indent-offset
2642\t\\[py-shift-region-right]\t shift region right by py-indent-offset
2643
2644Unlike most programming languages, Python uses indentation, and only
2645indentation, to specify block structure. Hence the indentation supplied
2646automatically by Python-mode is just an educated guess: only you know
2647the block structure you intend, so only you can supply correct
2648indentation.
2649
2650The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on
2651the indentation of preceding statements. E.g., assuming
2652py-indent-offset is 4, after you enter
2653\tif a > 0: \\[py-newline-and-indent]
2654the cursor will be moved to the position of the `_' (_ is not a
2655character in the file, it's just used here to indicate the location of
2656the cursor):
2657\tif a > 0:
2658\t _
2659If you then enter `c = d' \\[py-newline-and-indent], the cursor will move
2660to
2661\tif a > 0:
2662\t c = d
2663\t _
2664Python-mode cannot know whether that's what you intended, or whether
2665\tif a > 0:
2666\t c = d
2667\t_
2668was your intent. In general, Python-mode either reproduces the
2669indentation of the (closest code or indenting-comment) preceding
2670statement, or adds an extra py-indent-offset blanks if the preceding
2671statement has `:' as its last significant (non-whitespace and non-
2672comment) character. If the suggested indentation is too much, use
Barry Warsaw27ee1151997-12-03 05:03:44 +00002673\\[py-electric-backspace] to reduce it.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002674
2675Continuation lines are given extra indentation. If you don't like the
2676suggested indentation, change it to something you do like, and Python-
2677mode will strive to indent later lines of the statement in the same way.
2678
2679If a line is a continuation line by virtue of being in an unclosed
2680paren/bracket/brace structure (`list', for short), the suggested
2681indentation depends on whether the current line contains the first item
2682in the list. If it does, it's indented py-indent-offset columns beyond
2683the indentation of the line containing the open bracket. If you don't
2684like that, change it by hand. The remaining items in the list will mimic
2685whatever indentation you give to the first item.
2686
2687If a line is a continuation line because the line preceding it ends with
2688a backslash, the third and following lines of the statement inherit their
2689indentation from the line preceding them. The indentation of the second
2690line in the statement depends on the form of the first (base) line: if
2691the base line is an assignment statement with anything more interesting
2692than the backslash following the leftmost assigning `=', the second line
2693is indented two columns beyond that `='. Else it's indented to two
2694columns beyond the leftmost solid chunk of non-whitespace characters on
2695the base line.
2696
2697Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command]
2698repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block
2699structure you intend.
2700%c:indent-for-tab-command
2701%c:py-newline-and-indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00002702%c:py-electric-backspace
Barry Warsaw7ae77681994-12-12 20:38:05 +00002703
2704
2705The next function may be handy when editing code you didn't write:
2706%c:py-guess-indent-offset
2707
2708
2709The remaining `indent' functions apply to a region of Python code. They
2710assume the block structure (equals indentation, in Python) of the region
2711is correct, and alter the indentation in various ways while preserving
2712the block structure:
2713%c:py-indent-region
2714%c:py-shift-region-left
2715%c:py-shift-region-right
2716
2717@MARKING & MANIPULATING REGIONS OF CODE
2718
2719\\[py-mark-block]\t mark block of lines
Barry Warsaw2518c671997-11-05 00:51:08 +00002720\\[py-mark-def-or-class]\t mark smallest enclosing def
2721\\[universal-argument] \\[py-mark-def-or-class]\t mark smallest enclosing class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002722\\[comment-region]\t comment out region of code
2723\\[universal-argument] \\[comment-region]\t uncomment region of code
Barry Warsaw7ae77681994-12-12 20:38:05 +00002724%c:py-mark-block
Barry Warsaw2518c671997-11-05 00:51:08 +00002725%c:py-mark-def-or-class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002726%c:comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002727
2728@MOVING POINT
2729
2730\\[py-previous-statement]\t move to statement preceding point
2731\\[py-next-statement]\t move to statement following point
2732\\[py-goto-block-up]\t move up to start of current block
Barry Warsawab0e86c1998-05-19 15:31:46 +00002733\\[py-beginning-of-def-or-class]\t move to start of def
2734\\[universal-argument] \\[py-beginning-of-def-or-class]\t move to start of class
2735\\[py-end-of-def-or-class]\t move to end of def
2736\\[universal-argument] \\[py-end-of-def-or-class]\t move to end of class
Barry Warsaw7ae77681994-12-12 20:38:05 +00002737
2738The first two move to one statement beyond the statement that contains
2739point. A numeric prefix argument tells them to move that many
2740statements instead. Blank lines, comment lines, and continuation lines
2741do not count as `statements' for these commands. So, e.g., you can go
2742to the first code statement in a file by entering
2743\t\\[beginning-of-buffer]\t to move to the top of the file
2744\t\\[py-next-statement]\t to skip over initial comments and blank lines
2745Or do `\\[py-previous-statement]' with a huge prefix argument.
2746%c:py-previous-statement
2747%c:py-next-statement
2748%c:py-goto-block-up
Barry Warsawab0e86c1998-05-19 15:31:46 +00002749%c:py-beginning-of-def-or-class
2750%c:py-end-of-def-or-class
Barry Warsaw7ae77681994-12-12 20:38:05 +00002751
2752@LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE
2753
2754`\\[indent-new-comment-line]' is handy for entering a multi-line comment.
2755
2756`\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the
2757overall class and def structure of a module.
2758
2759`\\[back-to-indentation]' moves point to a line's first non-blank character.
2760
2761`\\[indent-relative]' is handy for creating odd indentation.
2762
2763@OTHER EMACS HINTS
2764
2765If you don't like the default value of a variable, change its value to
2766whatever you do like by putting a `setq' line in your .emacs file.
2767E.g., to set the indentation increment to 4, put this line in your
2768.emacs:
2769\t(setq py-indent-offset 4)
2770To see the value of a variable, do `\\[describe-variable]' and enter the variable
2771name at the prompt.
2772
2773When entering a key sequence like `C-c C-n', it is not necessary to
2774release the CONTROL key after doing the `C-c' part -- it suffices to
2775press the CONTROL key, press and release `c' (while still holding down
2776CONTROL), press and release `n' (while still holding down CONTROL), &
2777then release CONTROL.
2778
2779Entering Python mode calls with no arguments the value of the variable
2780`python-mode-hook', if that value exists and is not nil; for backward
2781compatibility it also tries `py-mode-hook'; see the `Hooks' section of
2782the Elisp manual for details.
2783
2784Obscure: When python-mode is first loaded, it looks for all bindings
2785to newline-and-indent in the global keymap, and shadows them with
2786local bindings to py-newline-and-indent."))
2787
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002788
2789;; Helper functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002790(defvar py-parse-state-re
2791 (concat
2792 "^[ \t]*\\(if\\|elif\\|else\\|while\\|def\\|class\\)\\>"
2793 "\\|"
2794 "^[^ #\t\n]"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002795
Barry Warsaw7ae77681994-12-12 20:38:05 +00002796(defun py-parse-state ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002797 "Return the parse state at point (see `parse-partial-sexp' docs)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002798 (save-excursion
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002799 (let ((here (point))
Barry Warsaw742a5111998-03-13 17:29:15 +00002800 pps done)
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002801 (while (not done)
2802 ;; back up to the first preceding line (if any; else start of
2803 ;; buffer) that begins with a popular Python keyword, or a
2804 ;; non- whitespace and non-comment character. These are good
2805 ;; places to start parsing to see whether where we started is
2806 ;; at a non-zero nesting level. It may be slow for people who
2807 ;; write huge code blocks or huge lists ... tough beans.
2808 (re-search-backward py-parse-state-re nil 'move)
2809 (beginning-of-line)
Barry Warsawf64b4051998-02-12 16:52:14 +00002810 ;; In XEmacs, we have a much better way to test for whether
2811 ;; we're in a triple-quoted string or not. Emacs does not
Barry Warsaw145ab1c1998-05-19 14:49:49 +00002812 ;; have this built-in function, which is its loss because
Barry Warsawf64b4051998-02-12 16:52:14 +00002813 ;; without scanning from the beginning of the buffer, there's
2814 ;; no accurate way to determine this otherwise.
2815 (if (not (fboundp 'buffer-syntactic-context))
2816 ;; Emacs
Barry Warsaw585f7331998-04-01 21:13:51 +00002817 (progn
2818 (save-excursion (setq pps (parse-partial-sexp (point) here)))
Barry Warsawf64b4051998-02-12 16:52:14 +00002819 ;; make sure we don't land inside a triple-quoted string
Barry Warsaw742a5111998-03-13 17:29:15 +00002820 (setq done (or (not (nth 3 pps))
Barry Warsaw53db8591999-05-24 19:57:32 +00002821 (bobp)))
2822 ;; Just go ahead and short circuit the test back to the
2823 ;; beginning of the buffer. This will be slow, but not
2824 ;; nearly as slow as looping through many
2825 ;; re-search-backwards.
2826 (if (not done)
2827 (goto-char (point-min))))
Barry Warsawf64b4051998-02-12 16:52:14 +00002828 ;; XEmacs
2829 (setq done (or (not (buffer-syntactic-context))
2830 (bobp)))
2831 (when done
2832 (setq pps (parse-partial-sexp (point) here)))
2833 ))
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002834 pps)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002835
Barry Warsaw7ae77681994-12-12 20:38:05 +00002836(defun py-nesting-level ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002837 "Return the buffer position of the last unclosed enclosing list.
2838If nesting level is zero, return nil."
Barry Warsawf64b4051998-02-12 16:52:14 +00002839 (let ((status (py-parse-state)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002840 (if (zerop (car status))
2841 nil ; not in a nest
2842 (car (cdr status))))) ; char# of open bracket
2843
Barry Warsaw7ae77681994-12-12 20:38:05 +00002844(defun py-backslash-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002845 "Return t iff preceding line ends with backslash that is not in a comment."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002846 (save-excursion
2847 (beginning-of-line)
2848 (and
2849 ;; use a cheap test first to avoid the regexp if possible
2850 ;; use 'eq' because char-after may return nil
2851 (eq (char-after (- (point) 2)) ?\\ )
2852 ;; make sure; since eq test passed, there is a preceding line
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002853 (forward-line -1) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002854 (looking-at py-continued-re))))
2855
Barry Warsaw7ae77681994-12-12 20:38:05 +00002856(defun py-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002857 "Return t iff current line is a continuation line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002858 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002859 (beginning-of-line)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002860 (or (py-backslash-continuation-line-p)
2861 (py-nesting-level))))
2862
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002863(defun py-goto-beginning-of-tqs (delim)
2864 "Go to the beginning of the triple quoted string we find ourselves in.
2865DELIM is the TQS string delimiter character we're searching backwards
2866for."
2867 (let ((skip (and delim (make-string 1 delim))))
2868 (when skip
2869 (save-excursion
2870 (py-safe (search-backward skip))
2871 (if (and (eq (char-before) delim)
2872 (eq (char-before (1- (point))) delim))
2873 (setq skip (make-string 3 delim))))
2874 ;; we're looking at a triple-quoted string
2875 (py-safe (search-backward skip)))))
2876
Barry Warsaw7ae77681994-12-12 20:38:05 +00002877(defun py-goto-initial-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002878 "Go to the initial line of the current statement.
2879Usually this is the line we're on, but if we're on the 2nd or
2880following lines of a continuation block, we need to go up to the first
2881line of the block."
2882 ;; Tricky: We want to avoid quadratic-time behavior for long
2883 ;; continued blocks, whether of the backslash or open-bracket
2884 ;; varieties, or a mix of the two. The following manages to do that
2885 ;; in the usual cases.
2886 ;;
2887 ;; Also, if we're sitting inside a triple quoted string, this will
2888 ;; drop us at the line that begins the string.
Barry Warsaw9ec9fbc1998-01-21 05:15:57 +00002889 (let (open-bracket-pos)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002890 (while (py-continuation-line-p)
2891 (beginning-of-line)
2892 (if (py-backslash-continuation-line-p)
2893 (while (py-backslash-continuation-line-p)
2894 (forward-line -1))
2895 ;; else zip out of nested brackets/braces/parens
2896 (while (setq open-bracket-pos (py-nesting-level))
2897 (goto-char open-bracket-pos)))))
2898 (beginning-of-line))
2899
Barry Warsaw7ae77681994-12-12 20:38:05 +00002900(defun py-goto-beyond-final-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002901 "Go to the point just beyond the fine line of the current statement.
2902Usually this is the start of the next line, but if this is a
2903multi-line statement we need to skip over the continuation lines."
2904 ;; Tricky: Again we need to be clever to avoid quadratic time
2905 ;; behavior.
2906 ;;
2907 ;; XXX: Not quite the right solution, but deals with multi-line doc
2908 ;; strings
Barry Warsaw751f4931998-05-19 16:06:21 +00002909 (if (looking-at (concat "[ \t]*\\(" py-stringlit-re "\\)"))
2910 (goto-char (match-end 0)))
2911 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +00002912 (forward-line 1)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002913 (let (state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002914 (while (and (py-continuation-line-p)
2915 (not (eobp)))
2916 ;; skip over the backslash flavor
2917 (while (and (py-backslash-continuation-line-p)
2918 (not (eobp)))
2919 (forward-line 1))
2920 ;; if in nest, zip to the end of the nest
2921 (setq state (py-parse-state))
2922 (if (and (not (zerop (car state)))
2923 (not (eobp)))
2924 (progn
Barry Warsawaffc0ca1997-11-03 16:59:38 +00002925 (parse-partial-sexp (point) (point-max) 0 nil state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002926 (forward-line 1))))))
2927
Barry Warsaw7ae77681994-12-12 20:38:05 +00002928(defun py-statement-opens-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002929 "Return t iff the current statement opens a block.
2930I.e., iff it ends with a colon that is not in a comment. Point should
2931be at the start of a statement."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002932 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002933 (let ((start (point))
2934 (finish (progn (py-goto-beyond-final-line) (1- (point))))
2935 (searching t)
2936 (answer nil)
2937 state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002938 (goto-char start)
2939 (while searching
2940 ;; look for a colon with nothing after it except whitespace, and
2941 ;; maybe a comment
2942 (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$"
2943 finish t)
2944 (if (eq (point) finish) ; note: no `else' clause; just
2945 ; keep searching if we're not at
2946 ; the end yet
2947 ;; sure looks like it opens a block -- but it might
2948 ;; be in a comment
2949 (progn
2950 (setq searching nil) ; search is done either way
2951 (setq state (parse-partial-sexp start
2952 (match-beginning 0)))
2953 (setq answer (not (nth 4 state)))))
2954 ;; search failed: couldn't find another interesting colon
2955 (setq searching nil)))
2956 answer)))
2957
Barry Warsawf831d811996-07-31 20:42:59 +00002958(defun py-statement-closes-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002959 "Return t iff the current statement closes a block.
2960I.e., if the line starts with `return', `raise', `break', `continue',
2961and `pass'. This doesn't catch embedded statements."
Barry Warsawf831d811996-07-31 20:42:59 +00002962 (let ((here (point)))
Barry Warsawa8f99ba1999-05-24 18:37:57 +00002963 (py-goto-initial-line)
Barry Warsawc0d2d511999-06-03 22:18:59 +00002964 (back-to-indentation)
Barry Warsawf831d811996-07-31 20:42:59 +00002965 (prog1
Barry Warsawaffc0ca1997-11-03 16:59:38 +00002966 (looking-at (concat py-block-closing-keywords-re "\\>"))
Barry Warsawf831d811996-07-31 20:42:59 +00002967 (goto-char here))))
2968
Barry Warsaw7ae77681994-12-12 20:38:05 +00002969(defun py-goto-beyond-block ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002970 "Go to point just beyond the final line of block begun by the current line.
2971This is the same as where `py-goto-beyond-final-line' goes unless
2972we're on colon line, in which case we go to the end of the block.
2973Assumes point is at the beginning of the line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002974 (if (py-statement-opens-block-p)
2975 (py-mark-block nil 'just-move)
2976 (py-goto-beyond-final-line)))
2977
Barry Warsaw7ae77681994-12-12 20:38:05 +00002978(defun py-goto-statement-at-or-above ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002979 "Go to the start of the first statement at or preceding point.
2980Return t if there is such a statement, otherwise nil. `Statement'
2981does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002982 (py-goto-initial-line)
2983 (if (looking-at py-blank-or-comment-re)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002984 ;; skip back over blank & comment lines
2985 ;; note: will skip a blank or comment line that happens to be
2986 ;; a continuation line too
2987 (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t)
2988 (progn (py-goto-initial-line) t)
2989 nil)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002990 t))
2991
Barry Warsaw7ae77681994-12-12 20:38:05 +00002992(defun py-goto-statement-below ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002993 "Go to start of the first statement following the statement containing point.
2994Return t if there is such a statement, otherwise nil. `Statement'
2995does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002996 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002997 (let ((start (point)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002998 (py-goto-beyond-final-line)
2999 (while (and
3000 (looking-at py-blank-or-comment-re)
3001 (not (eobp)))
3002 (forward-line 1))
3003 (if (eobp)
3004 (progn (goto-char start) nil)
3005 t)))
3006
Barry Warsaw7ae77681994-12-12 20:38:05 +00003007(defun py-go-up-tree-to-keyword (key)
Barry Warsaw41a05c71998-08-10 16:33:12 +00003008 "Go to begining of statement starting with KEY, at or preceding point.
3009
3010KEY is a regular expression describing a Python keyword. Skip blank
3011lines and non-indenting comments. If the statement found starts with
3012KEY, then stop, otherwise go back to first enclosing block starting
3013with KEY. If successful, leave point at the start of the KEY line and
3014return t. Otherwise, leav point at an undefined place and return nil."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003015 ;; skip blanks and non-indenting #
3016 (py-goto-initial-line)
3017 (while (and
3018 (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
3019 (zerop (forward-line -1))) ; go back
3020 nil)
3021 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003022 (let* ((re (concat "[ \t]*" key "\\b"))
3023 (case-fold-search nil) ; let* so looking-at sees this
3024 (found (looking-at re))
3025 (dead nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003026 (while (not (or found dead))
3027 (condition-case nil ; in case no enclosing block
3028 (py-goto-block-up 'no-mark)
3029 (error (setq dead t)))
3030 (or dead (setq found (looking-at re))))
3031 (beginning-of-line)
3032 found))
3033
Barry Warsaw7ae77681994-12-12 20:38:05 +00003034(defun py-suck-up-leading-text ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003035 "Return string in buffer from start of indentation to end of line.
3036Prefix with \"...\" if leading whitespace was skipped."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003037 (save-excursion
3038 (back-to-indentation)
3039 (concat
3040 (if (bolp) "" "...")
3041 (buffer-substring (point) (progn (end-of-line) (point))))))
3042
Barry Warsaw7ae77681994-12-12 20:38:05 +00003043(defun py-suck-up-first-keyword ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003044 "Return first keyword on the line as a Lisp symbol.
3045`Keyword' is defined (essentially) as the regular expression
3046([a-z]+). Returns nil if none was found."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003047 (let ((case-fold-search nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003048 (if (looking-at "[ \t]*\\([a-z]+\\)\\b")
3049 (intern (buffer-substring (match-beginning 1) (match-end 1)))
3050 nil)))
3051
Barry Warsawb3e81d51996-09-04 15:12:42 +00003052(defun py-current-defun ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003053 "Python value for `add-log-current-defun-function'.
3054This tells add-log.el how to find the current function/method/variable."
Barry Warsawb3e81d51996-09-04 15:12:42 +00003055 (save-excursion
3056 (if (re-search-backward py-defun-start-re nil t)
3057 (or (match-string 3)
3058 (let ((method (match-string 2)))
3059 (if (and (not (zerop (length (match-string 1))))
3060 (re-search-backward py-class-start-re nil t))
3061 (concat (match-string 1) "." method)
3062 method)))
3063 nil)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003064
3065
Barry Warsawfec75d61995-07-05 23:26:15 +00003066(defconst py-help-address "python-mode@python.org"
Barry Warsaw850437a1995-03-08 21:50:28 +00003067 "Address accepting submission of bug reports.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003068
Barry Warsaw850437a1995-03-08 21:50:28 +00003069(defun py-version ()
3070 "Echo the current version of `python-mode' in the minibuffer."
3071 (interactive)
3072 (message "Using `python-mode' version %s" py-version)
3073 (py-keep-region-active))
3074
3075;; only works under Emacs 19
3076;(eval-when-compile
3077; (require 'reporter))
3078
3079(defun py-submit-bug-report (enhancement-p)
3080 "Submit via mail a bug report on `python-mode'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00003081With \\[universal-argument] (programmatically, argument ENHANCEMENT-P
3082non-nil) just submit an enhancement request."
Barry Warsaw850437a1995-03-08 21:50:28 +00003083 (interactive
3084 (list (not (y-or-n-p
Barry Warsaw41a05c71998-08-10 16:33:12 +00003085 "Is this a bug report (hit `n' to send other comments)? "))))
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003086 (let ((reporter-prompt-for-summary-p (if enhancement-p
3087 "(Very) brief summary: "
3088 t)))
Barry Warsaw850437a1995-03-08 21:50:28 +00003089 (require 'reporter)
3090 (reporter-submit-bug-report
3091 py-help-address ;address
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003092 (concat "python-mode " py-version) ;pkgname
Barry Warsaw850437a1995-03-08 21:50:28 +00003093 ;; varlist
3094 (if enhancement-p nil
3095 '(py-python-command
3096 py-indent-offset
3097 py-block-comment-prefix
Barry Warsaw850437a1995-03-08 21:50:28 +00003098 py-temp-directory
3099 py-beep-if-tab-change))
3100 nil ;pre-hooks
3101 nil ;post-hooks
3102 "Dear Barry,") ;salutation
3103 (if enhancement-p nil
3104 (set-mark (point))
3105 (insert
3106"Please replace this text with a sufficiently large code sample\n\
3107and an exact recipe so that I can reproduce your problem. Failure\n\
3108to do so may mean a greater delay in fixing your bug.\n\n")
3109 (exchange-point-and-mark)
3110 (py-keep-region-active))))
3111
3112
Barry Warsaw47384781997-11-26 05:27:45 +00003113(defun py-kill-emacs-hook ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003114 "Delete files in `py-file-queue'.
3115These are Python temporary files awaiting execution."
Barry Warsaw47384781997-11-26 05:27:45 +00003116 (mapcar #'(lambda (filename)
3117 (py-safe (delete-file filename)))
3118 py-file-queue))
3119
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003120;; arrange to kill temp files when Emacs exists
Barry Warsawc72c11c1997-08-09 06:42:08 +00003121(add-hook 'kill-emacs-hook 'py-kill-emacs-hook)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003122
3123
3124
3125(provide 'python-mode)
3126;;; python-mode.el ends here