blob: b780b752ac05bc7c161aae7c00cd86e2f3917848 [file] [log] [blame]
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001;;; python-mode.el --- Major mode for editing Python programs
2
3;; Copyright (C) 1992,1993,1994 Tim Peters
4
Barry Warsaw71534602001-02-20 23:07:56 +00005;; Author: 1995-2001 Barry A. Warsaw
Barry Warsawfec75d61995-07-05 23:26:15 +00006;; 1992-1994 Tim Peters
Barry Warsawa97a3f31997-11-04 18:47:06 +00007;; Maintainer: python-mode@python.org
8;; Created: Feb 1992
9;; Keywords: python languages oop
Barry Warsaw7b0f5681995-03-08 21:33:04 +000010
Barry Warsaw38e21e71998-10-27 22:09:25 +000011(defconst py-version "$Revision$"
Barry Warsawc72c11c1997-08-09 06:42:08 +000012 "`python-mode' version number.")
13
Barry Warsawcfec3591995-03-10 15:58:16 +000014;; This software is provided as-is, without express or implied
15;; warranty. Permission to use, copy, modify, distribute or sell this
16;; software, without fee, for any purpose and by any individual or
17;; organization, is hereby granted, provided that the above copyright
18;; notice and this paragraph appear in all copies.
Barry Warsaw7b0f5681995-03-08 21:33:04 +000019
20;;; Commentary:
Barry Warsaw755c6711996-08-01 20:02:55 +000021
Barry Warsaw7b0f5681995-03-08 21:33:04 +000022;; This is a major mode for editing Python programs. It was developed
Barry Warsaw261f87d1996-08-20 19:57:34 +000023;; by Tim Peters after an original idea by Michael A. Guravage. Tim
Barry Warsawf7039e21998-08-20 22:10:46 +000024;; subsequently left the net; in 1995, Barry Warsaw inherited the mode
Barry Warsaw38e21e71998-10-27 22:09:25 +000025;; and is the current maintainer. Tim's now back but disavows all
26;; responsibility for the mode. Smart Tim :-)
Barry Warsaw7b0f5681995-03-08 21:33:04 +000027
Barry 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 Warsawe0c182f2000-12-27 17:41:47 +0000335 ;; `as' but only in "import foo as bar"
336 '("[ \t]*\\(\\bfrom\\b.*\\)?\\bimport\\b.*\\b\\(as\\)\\b" . 2)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000337 ;; classes
338 '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
339 1 font-lock-type-face)
340 ;; functions
341 '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
342 1 font-lock-function-name-face)
343 ))
Barry Warsaw62d9d6e1996-03-06 20:32:27 +0000344 "Additional expressions to highlight in Python mode.")
Barry Warsawfb07f401997-02-24 03:37:22 +0000345(put 'python-mode 'font-lock-defaults '(python-font-lock-keywords))
346
Barry Warsawe467bfb1997-11-26 05:40:58 +0000347;; have to bind py-file-queue before installing the kill-emacs-hook
Barry Warsaw7ae77681994-12-12 20:38:05 +0000348(defvar py-file-queue nil
349 "Queue of Python temp files awaiting execution.
350Currently-active file is at the head of the list.")
351
Barry Warsawc72c11c1997-08-09 06:42:08 +0000352
353;; Constants
354
Barry Warsawc72c11c1997-08-09 06:42:08 +0000355(defconst py-stringlit-re
356 (concat
Barry Warsaw751f4931998-05-19 16:06:21 +0000357 ;; These fail if backslash-quote ends the string (not worth
358 ;; fixing?). They precede the short versions so that the first two
359 ;; quotes don't look like an empty short string.
360 ;;
361 ;; (maybe raw), long single quoted triple quoted strings (SQTQ),
362 ;; with potential embedded single quotes
363 "[rR]?'''[^']*\\(\\('[^']\\|''[^']\\)[^']*\\)*'''"
364 "\\|"
365 ;; (maybe raw), long double quoted triple quoted strings (DQTQ),
366 ;; with potential embedded double quotes
367 "[rR]?\"\"\"[^\"]*\\(\\(\"[^\"]\\|\"\"[^\"]\\)[^\"]*\\)*\"\"\""
368 "\\|"
369 "[rR]?'\\([^'\n\\]\\|\\\\.\\)*'" ; single-quoted
Barry Warsawc72c11c1997-08-09 06:42:08 +0000370 "\\|" ; or
Barry Warsaw751f4931998-05-19 16:06:21 +0000371 "[rR]?\"\\([^\"\n\\]\\|\\\\.\\)*\"" ; double-quoted
Barry Warsaw41a05c71998-08-10 16:33:12 +0000372 )
373 "Regular expression matching a Python string literal.")
Barry Warsaw751f4931998-05-19 16:06:21 +0000374
Barry Warsawc72c11c1997-08-09 06:42:08 +0000375(defconst py-continued-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000376 ;; This is tricky because a trailing backslash does not mean
377 ;; continuation if it's in a comment
Barry Warsawc72c11c1997-08-09 06:42:08 +0000378 (concat
379 "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*"
Barry Warsaw41a05c71998-08-10 16:33:12 +0000380 "\\\\$")
381 "Regular expression matching Python backslash continuation lines.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000382
Barry Warsaw41a05c71998-08-10 16:33:12 +0000383(defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)"
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000384 "Regular expression matching a blank or comment line.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000385
Barry Warsawc72c11c1997-08-09 06:42:08 +0000386(defconst py-outdent-re
387 (concat "\\(" (mapconcat 'identity
388 '("else:"
389 "except\\(\\s +.*\\)?:"
390 "finally:"
391 "elif\\s +.*:")
392 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000393 "\\)")
394 "Regular expression matching statements to be dedented one level.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000395
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000396(defconst py-block-closing-keywords-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000397 "\\(return\\|raise\\|break\\|continue\\|pass\\)"
398 "Regular expression matching keywords which typically close a block.")
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000399
Barry Warsawc72c11c1997-08-09 06:42:08 +0000400(defconst py-no-outdent-re
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000401 (concat
402 "\\("
403 (mapconcat 'identity
404 (list "try:"
405 "except\\(\\s +.*\\)?:"
406 "while\\s +.*:"
407 "for\\s +.*:"
408 "if\\s +.*:"
409 "elif\\s +.*:"
410 (concat py-block-closing-keywords-re "[ \t\n]")
411 )
412 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000413 "\\)")
414 "Regular expression matching lines not to dedent after.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000415
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000416(defconst py-defun-start-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000417 "^\\([ \t]*\\)def[ \t]+\\([a-zA-Z_0-9]+\\)\\|\\(^[a-zA-Z_0-9]+\\)[ \t]*="
418 ;; If you change this, you probably have to change py-current-defun
419 ;; as well. This is only used by py-current-defun to find the name
420 ;; for add-log.el.
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000421 "Regular expression matching a function, method, or variable assignment.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000422
Barry Warsaw41a05c71998-08-10 16:33:12 +0000423(defconst py-class-start-re "^class[ \t]*\\([a-zA-Z_0-9]+\\)"
424 ;; If you change this, you probably have to change py-current-defun
425 ;; as well. This is only used by py-current-defun to find the name
426 ;; for add-log.el.
427 "Regular expression for finding a class name.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000428
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000429(defconst py-traceback-line-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000430 "[ \t]+File \"\\([^\"]+\\)\", line \\([0-9]+\\)"
431 "Regular expression that describes tracebacks.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000432
433
434
Barry Warsawc72c11c1997-08-09 06:42:08 +0000435;; Major mode boilerplate
436
Barry Warsaw7ae77681994-12-12 20:38:05 +0000437;; define a mode-specific abbrev table for those who use such things
438(defvar python-mode-abbrev-table nil
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000439 "Abbrev table in use in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000440(define-abbrev-table 'python-mode-abbrev-table nil)
441
Barry Warsaw7ae77681994-12-12 20:38:05 +0000442(defvar python-mode-hook nil
443 "*Hook called by `python-mode'.")
444
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000445;; In previous version of python-mode.el, the hook was incorrectly
446;; called py-mode-hook, and was not defvar'd. Deprecate its use.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000447(and (fboundp 'make-obsolete-variable)
448 (make-obsolete-variable 'py-mode-hook 'python-mode-hook))
449
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000450(defvar py-mode-map ()
451 "Keymap used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000452(if py-mode-map
Barry Warsawc72c11c1997-08-09 06:42:08 +0000453 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000454 (setq py-mode-map (make-sparse-keymap))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000455 ;; electric keys
456 (define-key py-mode-map ":" 'py-electric-colon)
457 ;; indentation level modifiers
458 (define-key py-mode-map "\C-c\C-l" 'py-shift-region-left)
459 (define-key py-mode-map "\C-c\C-r" 'py-shift-region-right)
460 (define-key py-mode-map "\C-c<" 'py-shift-region-left)
461 (define-key py-mode-map "\C-c>" 'py-shift-region-right)
462 ;; subprocess commands
463 (define-key py-mode-map "\C-c\C-c" 'py-execute-buffer)
Barry Warsaw820273d1998-05-19 15:54:45 +0000464 (define-key py-mode-map "\C-c\C-m" 'py-execute-import-or-reload)
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000465 (define-key py-mode-map "\C-c\C-s" 'py-execute-string)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000466 (define-key py-mode-map "\C-c|" 'py-execute-region)
Barry Warsaw820273d1998-05-19 15:54:45 +0000467 (define-key py-mode-map "\e\C-x" 'py-execute-def-or-class)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000468 (define-key py-mode-map "\C-c!" 'py-shell)
Barry Warsawa2398801998-04-09 23:28:20 +0000469 (define-key py-mode-map "\C-c\C-t" 'py-toggle-shells)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000470 ;; Caution! Enter here at your own risk. We are trying to support
471 ;; several behaviors and it gets disgusting. :-( This logic ripped
472 ;; largely from CC Mode.
473 ;;
474 ;; In XEmacs 19, Emacs 19, and Emacs 20, we use this to bind
475 ;; backwards deletion behavior to DEL, which both Delete and
476 ;; Backspace get translated to. There's no way to separate this
477 ;; behavior in a clean way, so deal with it! Besides, it's been
478 ;; this way since the dawn of time.
479 (if (not (boundp 'delete-key-deletes-forward))
480 (define-key py-mode-map "\177" 'py-electric-backspace)
481 ;; However, XEmacs 20 actually achieved enlightenment. It is
482 ;; possible to sanely define both backward and forward deletion
483 ;; behavior under X separately (TTYs are forever beyond hope, but
484 ;; who cares? XEmacs 20 does the right thing with these too).
485 (define-key py-mode-map [delete] 'py-electric-delete)
486 (define-key py-mode-map [backspace] 'py-electric-backspace))
Barry Warsaw8c4a8de1997-11-26 20:30:33 +0000487 ;; Separate M-BS from C-M-h. The former should remain
488 ;; backward-kill-word.
489 (define-key py-mode-map [(control meta h)] 'py-mark-def-or-class)
Barry Warsaw2518c671997-11-05 00:51:08 +0000490 (define-key py-mode-map "\C-c\C-k" 'py-mark-block)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000491 ;; Miscellaneous
492 (define-key py-mode-map "\C-c:" 'py-guess-indent-offset)
493 (define-key py-mode-map "\C-c\t" 'py-indent-region)
494 (define-key py-mode-map "\C-c\C-n" 'py-next-statement)
495 (define-key py-mode-map "\C-c\C-p" 'py-previous-statement)
496 (define-key py-mode-map "\C-c\C-u" 'py-goto-block-up)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000497 (define-key py-mode-map "\C-c#" 'py-comment-region)
498 (define-key py-mode-map "\C-c?" 'py-describe-mode)
499 (define-key py-mode-map "\C-c\C-hm" 'py-describe-mode)
Barry Warsawab0e86c1998-05-19 15:31:46 +0000500 (define-key py-mode-map "\e\C-a" 'py-beginning-of-def-or-class)
501 (define-key py-mode-map "\e\C-e" 'py-end-of-def-or-class)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000502 (define-key py-mode-map "\C-c-" 'py-up-exception)
503 (define-key py-mode-map "\C-c=" 'py-down-exception)
Barry Warsawf8ddb6a1999-01-18 21:49:39 +0000504 ;; stuff that is `standard' but doesn't interface well with
505 ;; python-mode, which forces us to rebind to special commands
506 (define-key py-mode-map "\C-xnd" 'py-narrow-to-defun)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000507 ;; information
508 (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report)
509 (define-key py-mode-map "\C-c\C-v" 'py-version)
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000510 ;; shadow global bindings for newline-and-indent w/ the py- version.
511 ;; BAW - this is extremely bad form, but I'm not going to change it
512 ;; for now.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000513 (mapcar #'(lambda (key)
514 (define-key py-mode-map key 'py-newline-and-indent))
515 (where-is-internal 'newline-and-indent))
Barry Warsawf19feb81999-01-21 17:06:11 +0000516 ;; Force RET to be py-newline-and-indent even if it didn't get
517 ;; mapped by the above code. motivation: Emacs' default binding for
518 ;; RET is `newline' and C-j is `newline-and-indent'. Most Pythoneers
519 ;; expect RET to do a `py-newline-and-indent' and any Emacsers who
520 ;; dislike this are probably knowledgeable enough to do a rebind.
521 ;; However, we do *not* change C-j since many Emacsers have already
522 ;; swapped RET and C-j and they don't want C-j bound to `newline' to
523 ;; change.
524 (define-key py-mode-map "\C-m" 'py-newline-and-indent)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000525 )
526
527(defvar py-mode-output-map nil
Barry Warsaw41a05c71998-08-10 16:33:12 +0000528 "Keymap used in *Python Output* buffers.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000529(if py-mode-output-map
530 nil
531 (setq py-mode-output-map (make-sparse-keymap))
532 (define-key py-mode-output-map [button2] 'py-mouseto-exception)
533 (define-key py-mode-output-map "\C-c\C-c" 'py-goto-exception)
534 ;; TBD: Disable all self-inserting keys. This is bogus, we should
535 ;; really implement this as *Python Output* buffer being read-only
536 (mapcar #' (lambda (key)
537 (define-key py-mode-output-map key
538 #'(lambda () (interactive) (beep))))
539 (where-is-internal 'self-insert-command))
Barry Warsaw850437a1995-03-08 21:50:28 +0000540 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000541
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +0000542(defvar py-shell-map nil
543 "Keymap used in *Python* shell buffers.")
544(if py-shell-map
545 nil
546 (setq py-shell-map (copy-keymap comint-mode-map))
547 (define-key py-shell-map [tab] 'tab-to-tab-stop)
548 (define-key py-shell-map "\C-c-" 'py-up-exception)
549 (define-key py-shell-map "\C-c=" 'py-down-exception)
550 )
551
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000552(defvar py-mode-syntax-table nil
553 "Syntax table used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000554(if py-mode-syntax-table
Barry Warsawc72c11c1997-08-09 06:42:08 +0000555 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000556 (setq py-mode-syntax-table (make-syntax-table))
Barry Warsawc72c11c1997-08-09 06:42:08 +0000557 (modify-syntax-entry ?\( "()" py-mode-syntax-table)
558 (modify-syntax-entry ?\) ")(" py-mode-syntax-table)
559 (modify-syntax-entry ?\[ "(]" py-mode-syntax-table)
560 (modify-syntax-entry ?\] ")[" py-mode-syntax-table)
561 (modify-syntax-entry ?\{ "(}" py-mode-syntax-table)
562 (modify-syntax-entry ?\} "){" py-mode-syntax-table)
563 ;; Add operator symbols misassigned in the std table
564 (modify-syntax-entry ?\$ "." py-mode-syntax-table)
565 (modify-syntax-entry ?\% "." py-mode-syntax-table)
566 (modify-syntax-entry ?\& "." py-mode-syntax-table)
567 (modify-syntax-entry ?\* "." py-mode-syntax-table)
568 (modify-syntax-entry ?\+ "." py-mode-syntax-table)
569 (modify-syntax-entry ?\- "." py-mode-syntax-table)
570 (modify-syntax-entry ?\/ "." py-mode-syntax-table)
571 (modify-syntax-entry ?\< "." py-mode-syntax-table)
572 (modify-syntax-entry ?\= "." py-mode-syntax-table)
573 (modify-syntax-entry ?\> "." py-mode-syntax-table)
574 (modify-syntax-entry ?\| "." py-mode-syntax-table)
575 ;; For historical reasons, underscore is word class instead of
576 ;; symbol class. GNU conventions say it should be symbol class, but
577 ;; there's a natural conflict between what major mode authors want
578 ;; and what users expect from `forward-word' and `backward-word'.
579 ;; Guido and I have hashed this out and have decided to keep
580 ;; underscore in word class. If you're tempted to change it, try
581 ;; binding M-f and M-b to py-forward-into-nomenclature and
Barry Warsawaa384fd1999-02-16 23:36:16 +0000582 ;; py-backward-into-nomenclature instead. This doesn't help in all
583 ;; situations where you'd want the different behavior
584 ;; (e.g. backward-kill-word).
Barry Warsawc72c11c1997-08-09 06:42:08 +0000585 (modify-syntax-entry ?\_ "w" py-mode-syntax-table)
586 ;; Both single quote and double quote are string delimiters
587 (modify-syntax-entry ?\' "\"" py-mode-syntax-table)
588 (modify-syntax-entry ?\" "\"" py-mode-syntax-table)
589 ;; backquote is open and close paren
590 (modify-syntax-entry ?\` "$" py-mode-syntax-table)
591 ;; comment delimiters
592 (modify-syntax-entry ?\# "<" py-mode-syntax-table)
593 (modify-syntax-entry ?\n ">" py-mode-syntax-table)
594 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000595
Barry Warsawb3e81d51996-09-04 15:12:42 +0000596
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000597
Barry Warsawbc3760b1998-09-14 16:16:18 +0000598;; Utilities
599
600(defmacro py-safe (&rest body)
601 "Safely execute BODY, return nil if an error occurred."
602 (` (condition-case nil
603 (progn (,@ body))
604 (error nil))))
605
606(defsubst py-keep-region-active ()
607 "Keep the region active in XEmacs."
608 ;; Ignore byte-compiler warnings you might see. Also note that
609 ;; FSF's Emacs 19 does it differently; its policy doesn't require us
610 ;; to take explicit action.
611 (and (boundp 'zmacs-region-stays)
612 (setq zmacs-region-stays t)))
613
614(defsubst py-point (position)
615 "Returns the value of point at certain commonly referenced POSITIONs.
616POSITION can be one of the following symbols:
617
618 bol -- beginning of line
619 eol -- end of line
620 bod -- beginning of def or class
621 eod -- end of def or class
622 bob -- beginning of buffer
623 eob -- end of buffer
624 boi -- back to indentation
625 bos -- beginning of statement
626
627This function does not modify point or mark."
628 (let ((here (point)))
629 (cond
630 ((eq position 'bol) (beginning-of-line))
631 ((eq position 'eol) (end-of-line))
632 ((eq position 'bod) (py-beginning-of-def-or-class))
633 ((eq position 'eod) (py-end-of-def-or-class))
634 ;; Kind of funny, I know, but useful for py-up-exception.
635 ((eq position 'bob) (beginning-of-buffer))
636 ((eq position 'eob) (end-of-buffer))
637 ((eq position 'boi) (back-to-indentation))
638 ((eq position 'bos) (py-goto-initial-line))
639 (t (error "Unknown buffer position requested: %s" position))
640 )
641 (prog1
642 (point)
643 (goto-char here))))
644
645(defsubst py-highlight-line (from to file line)
646 (cond
647 ((fboundp 'make-extent)
648 ;; XEmacs
649 (let ((e (make-extent from to)))
650 (set-extent-property e 'mouse-face 'highlight)
651 (set-extent-property e 'py-exc-info (cons file line))
652 (set-extent-property e 'keymap py-mode-output-map)))
653 (t
654 ;; Emacs -- Please port this!
655 )
656 ))
657
658(defun py-in-literal (&optional lim)
659 "Return non-nil if point is in a Python literal (a comment or string).
660Optional argument LIM indicates the beginning of the containing form,
661i.e. the limit on how far back to scan."
662 ;; This is the version used for non-XEmacs, which has a nicer
663 ;; interface.
664 ;;
665 ;; WARNING: Watch out for infinite recursion.
666 (let* ((lim (or lim (py-point 'bod)))
667 (state (parse-partial-sexp lim (point))))
668 (cond
669 ((nth 3 state) 'string)
670 ((nth 4 state) 'comment)
671 (t nil))))
672
673;; XEmacs has a built-in function that should make this much quicker.
674;; In this case, lim is ignored
675(defun py-fast-in-literal (&optional lim)
676 "Fast version of `py-in-literal', used only by XEmacs.
677Optional LIM is ignored."
678 ;; don't have to worry about context == 'block-comment
679 (buffer-syntactic-context))
680
681(if (fboundp 'buffer-syntactic-context)
682 (defalias 'py-in-literal 'py-fast-in-literal))
683
684
685
Barry Warsaw42f707f1996-07-29 21:05:05 +0000686;; Menu definitions, only relevent if you have the easymenu.el package
687;; (standard in the latest Emacs 19 and XEmacs 19 distributions).
Barry Warsaw5490a061996-08-06 15:43:33 +0000688(defvar py-menu nil
689 "Menu for Python Mode.
Barry Warsawc72c11c1997-08-09 06:42:08 +0000690This menu will get created automatically if you have the `easymenu'
691package. Note that the latest X/Emacs releases contain this package.")
Barry Warsaw5490a061996-08-06 15:43:33 +0000692
Barry Warsawc72c11c1997-08-09 06:42:08 +0000693(and (py-safe (require 'easymenu) t)
694 (easy-menu-define
695 py-menu py-mode-map "Python Mode menu"
696 '("Python"
697 ["Comment Out Region" py-comment-region (mark)]
698 ["Uncomment Region" (py-comment-region (point) (mark) '(4)) (mark)]
699 "-"
700 ["Mark current block" py-mark-block t]
Barry Warsaw2518c671997-11-05 00:51:08 +0000701 ["Mark current def" py-mark-def-or-class t]
702 ["Mark current class" (py-mark-def-or-class t) t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000703 "-"
704 ["Shift region left" py-shift-region-left (mark)]
705 ["Shift region right" py-shift-region-right (mark)]
706 "-"
Barry Warsaw820273d1998-05-19 15:54:45 +0000707 ["Import/reload file" py-execute-import-or-reload t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000708 ["Execute buffer" py-execute-buffer t]
709 ["Execute region" py-execute-region (mark)]
Barry Warsaw820273d1998-05-19 15:54:45 +0000710 ["Execute def or class" py-execute-def-or-class (mark)]
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000711 ["Execute string" py-execute-string t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000712 ["Start interpreter..." py-shell t]
713 "-"
714 ["Go to start of block" py-goto-block-up t]
Barry Warsawab0e86c1998-05-19 15:31:46 +0000715 ["Go to start of class" (py-beginning-of-def-or-class t) t]
716 ["Move to end of class" (py-end-of-def-or-class t) t]
717 ["Move to start of def" py-beginning-of-def-or-class t]
718 ["Move to end of def" py-end-of-def-or-class t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000719 "-"
720 ["Describe mode" py-describe-mode t]
721 )))
Barry Warsaw42f707f1996-07-29 21:05:05 +0000722
Barry Warsaw81437461996-08-01 19:48:02 +0000723
724
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000725;; Imenu definitions
726(defvar py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000727 (concat ; <<classes>>
728 "\\(" ;
729 "^[ \t]*" ; newline and maybe whitespace
730 "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name
731 ; possibly multiple superclasses
Barry Warsaw3179fe01998-04-04 21:36:53 +0000732 "\\([ \t]*\\((\\([a-zA-Z0-9_,. \t\n]\\)*)\\)?\\)"
Barry Warsaw81437461996-08-01 19:48:02 +0000733 "[ \t]*:" ; and the final :
734 "\\)" ; >>classes<<
735 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000736 "Regexp for Python classes for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000737 )
738
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000739(defvar py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000740 (concat ; <<methods and functions>>
741 "\\(" ;
742 "^[ \t]*" ; new line and maybe whitespace
743 "\\(def[ \t]+" ; function definitions start with def
744 "\\([a-zA-Z0-9_]+\\)" ; name is here
745 ; function arguments...
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000746;; "[ \t]*(\\([-+/a-zA-Z0-9_=,\* \t\n.()\"'#]*\\))"
747 "[ \t]*(\\([^:#]*\\))"
Barry Warsaw81437461996-08-01 19:48:02 +0000748 "\\)" ; end of def
749 "[ \t]*:" ; and then the :
750 "\\)" ; >>methods and functions<<
751 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000752 "Regexp for Python methods/functions for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000753 )
754
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000755(defvar py-imenu-method-no-arg-parens '(2 8)
756 "Indices into groups of the Python regexp for use with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000757
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000758Using these values will result in smaller Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000759functions are not listed.
760
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000761See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000762information.")
763
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000764(defvar py-imenu-method-arg-parens '(2 7)
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000765 "Indices into groups of the Python regexp for use with imenu.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000766Using these values will result in large Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000767functions are listed.
768
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000769See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000770information.")
771
772;; Note that in this format, this variable can still be used with the
773;; imenu--generic-function. Otherwise, there is no real reason to have
774;; it.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000775(defvar py-imenu-generic-expression
Barry Warsaw81437461996-08-01 19:48:02 +0000776 (cons
777 (concat
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000778 py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000779 "\\|" ; or...
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000780 py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000781 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000782 py-imenu-method-no-arg-parens)
783 "Generic Python expression which may be used directly with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000784Used by setting the variable `imenu-generic-expression' to this value.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000785Also, see the function \\[py-imenu-create-index] for a better
786alternative for finding the index.")
Barry Warsaw81437461996-08-01 19:48:02 +0000787
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000788;; These next two variables are used when searching for the Python
Barry Warsaw81437461996-08-01 19:48:02 +0000789;; class/definitions. Just saving some time in accessing the
790;; generic-python-expression, really.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000791(defvar py-imenu-generic-regexp nil)
792(defvar py-imenu-generic-parens nil)
Barry Warsaw81437461996-08-01 19:48:02 +0000793
794
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000795(defun py-imenu-create-index-function ()
796 "Python interface function for the Imenu package.
797Finds all Python classes and functions/methods. Calls function
798\\[py-imenu-create-index-engine]. See that function for the details
799of how this works."
800 (setq py-imenu-generic-regexp (car py-imenu-generic-expression)
801 py-imenu-generic-parens (if py-imenu-show-method-args-p
802 py-imenu-method-arg-parens
803 py-imenu-method-no-arg-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000804 (goto-char (point-min))
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000805 ;; Warning: When the buffer has no classes or functions, this will
806 ;; return nil, which seems proper according to the Imenu API, but
807 ;; causes an error in the XEmacs port of Imenu. Sigh.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000808 (py-imenu-create-index-engine nil))
Barry Warsaw81437461996-08-01 19:48:02 +0000809
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000810(defun py-imenu-create-index-engine (&optional start-indent)
811 "Function for finding Imenu definitions in Python.
Barry Warsaw81437461996-08-01 19:48:02 +0000812
813Finds all definitions (classes, methods, or functions) in a Python
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000814file for the Imenu package.
Barry Warsaw81437461996-08-01 19:48:02 +0000815
816Returns a possibly nested alist of the form
817
818 (INDEX-NAME . INDEX-POSITION)
819
820The second element of the alist may be an alist, producing a nested
821list as in
822
823 (INDEX-NAME . INDEX-ALIST)
824
825This function should not be called directly, as it calls itself
826recursively and requires some setup. Rather this is the engine for
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000827the function \\[py-imenu-create-index-function].
Barry Warsaw81437461996-08-01 19:48:02 +0000828
829It works recursively by looking for all definitions at the current
830indention level. When it finds one, it adds it to the alist. If it
831finds a definition at a greater indentation level, it removes the
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000832previous definition from the alist. In its place it adds all
Barry Warsaw81437461996-08-01 19:48:02 +0000833definitions found at the next indentation level. When it finds a
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000834definition that is less indented then the current level, it returns
835the alist it has created thus far.
Barry Warsaw81437461996-08-01 19:48:02 +0000836
837The optional argument START-INDENT indicates the starting indentation
838at which to continue looking for Python classes, methods, or
839functions. If this is not supplied, the function uses the indentation
840of the first definition found."
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000841 (let (index-alist
842 sub-method-alist
Barry Warsaw81437461996-08-01 19:48:02 +0000843 looking-p
844 def-name prev-name
845 cur-indent def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000846 (class-paren (first py-imenu-generic-parens))
847 (def-paren (second py-imenu-generic-parens)))
Barry Warsaw81437461996-08-01 19:48:02 +0000848 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000849 (re-search-forward py-imenu-generic-regexp (point-max) t))
Barry Warsaw81437461996-08-01 19:48:02 +0000850 (while looking-p
851 (save-excursion
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000852 ;; used to set def-name to this value but generic-extract-name
853 ;; is new to imenu-1.14. this way it still works with
854 ;; imenu-1.11
855 ;;(imenu--generic-extract-name py-imenu-generic-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000856 (let ((cur-paren (if (match-beginning class-paren)
857 class-paren def-paren)))
858 (setq def-name
Barry Warsawc8520351997-11-26 06:14:40 +0000859 (buffer-substring-no-properties (match-beginning cur-paren)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000860 (match-end cur-paren))))
Barry Warsaw93c88cc1998-08-18 02:00:44 +0000861 (save-match-data
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000862 (py-beginning-of-def-or-class 'either))
Barry Warsaw81437461996-08-01 19:48:02 +0000863 (beginning-of-line)
864 (setq cur-indent (current-indentation)))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000865 ;; HACK: want to go to the next correct definition location. We
866 ;; explicitly list them here but it would be better to have them
867 ;; in a list.
Barry Warsaw81437461996-08-01 19:48:02 +0000868 (setq def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000869 (or (match-beginning class-paren)
870 (match-beginning def-paren)))
Barry Warsaw81437461996-08-01 19:48:02 +0000871 ;; if we don't have a starting indent level, take this one
872 (or start-indent
873 (setq start-indent cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000874 ;; if we don't have class name yet, take this one
875 (or prev-name
876 (setq prev-name def-name))
Barry Warsaw81437461996-08-01 19:48:02 +0000877 ;; what level is the next definition on? must be same, deeper
878 ;; or shallower indentation
879 (cond
880 ;; at the same indent level, add it to the list...
881 ((= start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000882 (push (cons def-name def-pos) index-alist))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000883 ;; deeper indented expression, recurse
Barry Warsaw81437461996-08-01 19:48:02 +0000884 ((< start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000885 ;; the point is currently on the expression we're supposed to
886 ;; start on, so go back to the last expression. The recursive
887 ;; call will find this place again and add it to the correct
888 ;; list
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000889 (re-search-backward py-imenu-generic-regexp (point-min) 'move)
890 (setq sub-method-alist (py-imenu-create-index-engine cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000891 (if sub-method-alist
892 ;; we put the last element on the index-alist on the start
893 ;; of the submethod alist so the user can still get to it.
894 (let ((save-elmt (pop index-alist)))
Barry Warsawc8520351997-11-26 06:14:40 +0000895 (push (cons prev-name
Barry Warsaw81437461996-08-01 19:48:02 +0000896 (cons save-elmt sub-method-alist))
897 index-alist))))
Barry Warsaw81437461996-08-01 19:48:02 +0000898 ;; found less indented expression, we're done.
899 (t
900 (setq looking-p nil)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000901 (re-search-backward py-imenu-generic-regexp (point-min) t)))
902 ;; end-cond
Barry Warsaw81437461996-08-01 19:48:02 +0000903 (setq prev-name def-name)
904 (and looking-p
905 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000906 (re-search-forward py-imenu-generic-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000907 (point-max) 'move))))
908 (nreverse index-alist)))
909
Barry Warsaw42f707f1996-07-29 21:05:05 +0000910
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000911;;;###autoload
Barry Warsaw7ae77681994-12-12 20:38:05 +0000912(defun python-mode ()
913 "Major mode for editing Python files.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000914To submit a problem report, enter `\\[py-submit-bug-report]' from a
915`python-mode' buffer. Do `\\[py-describe-mode]' for detailed
916documentation. To see what version of `python-mode' you are running,
917enter `\\[py-version]'.
918
919This mode knows about Python indentation, tokens, comments and
920continuation lines. Paragraphs are separated by blank lines only.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000921
922COMMANDS
923\\{py-mode-map}
924VARIABLES
925
Barry Warsaw42f707f1996-07-29 21:05:05 +0000926py-indent-offset\t\tindentation increment
Barry Warsaw41a05c71998-08-10 16:33:12 +0000927py-block-comment-prefix\t\tcomment string used by `comment-region'
Barry Warsaw42f707f1996-07-29 21:05:05 +0000928py-python-command\t\tshell command to invoke Python interpreter
Barry Warsaw42f707f1996-07-29 21:05:05 +0000929py-temp-directory\t\tdirectory used for temp files (if needed)
Barry Warsaw41a05c71998-08-10 16:33:12 +0000930py-beep-if-tab-change\t\tring the bell if `tab-width' is changed"
Barry Warsaw7ae77681994-12-12 20:38:05 +0000931 (interactive)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000932 ;; set up local variables
Barry Warsaw7ae77681994-12-12 20:38:05 +0000933 (kill-all-local-variables)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000934 (make-local-variable 'font-lock-defaults)
935 (make-local-variable 'paragraph-separate)
936 (make-local-variable 'paragraph-start)
937 (make-local-variable 'require-final-newline)
938 (make-local-variable 'comment-start)
Barry Warsaw5c8bef11996-12-17 21:56:10 +0000939 (make-local-variable 'comment-end)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000940 (make-local-variable 'comment-start-skip)
941 (make-local-variable 'comment-column)
Barry Warsaw003932a1998-07-07 15:11:24 +0000942 (make-local-variable 'comment-indent-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000943 (make-local-variable 'indent-region-function)
944 (make-local-variable 'indent-line-function)
Barry Warsawb3e81d51996-09-04 15:12:42 +0000945 (make-local-variable 'add-log-current-defun-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000946 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +0000947 (set-syntax-table py-mode-syntax-table)
Barry Warsaw003932a1998-07-07 15:11:24 +0000948 (setq major-mode 'python-mode
949 mode-name "Python"
950 local-abbrev-table python-mode-abbrev-table
951 font-lock-defaults '(python-font-lock-keywords)
952 paragraph-separate "^[ \t]*$"
953 paragraph-start "^[ \t]*$"
954 require-final-newline t
955 comment-start "# "
956 comment-end ""
957 comment-start-skip "# *"
958 comment-column 40
959 comment-indent-function 'py-comment-indent-function
960 indent-region-function 'py-indent-region
961 indent-line-function 'py-indent-line
Barry Warsawb3e81d51996-09-04 15:12:42 +0000962 ;; tell add-log.el how to find the current function/method/variable
963 add-log-current-defun-function 'py-current-defun
Barry Warsawb1f89511996-09-03 16:38:30 +0000964 )
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000965 (use-local-map py-mode-map)
Barry Warsaw42f707f1996-07-29 21:05:05 +0000966 ;; add the menu
967 (if py-menu
968 (easy-menu-add py-menu))
Barry Warsaw57697af1995-09-14 20:01:14 +0000969 ;; Emacs 19 requires this
Barry Warsawc72c11c1997-08-09 06:42:08 +0000970 (if (boundp 'comment-multi-line)
Barry Warsaw57697af1995-09-14 20:01:14 +0000971 (setq comment-multi-line nil))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000972 ;; Install Imenu if available
Barry Warsaw742a5111998-03-13 17:29:15 +0000973 (when (py-safe (require 'imenu))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000974 (setq imenu-create-index-function #'py-imenu-create-index-function)
975 (setq imenu-generic-expression py-imenu-generic-expression)
Barry Warsaw742a5111998-03-13 17:29:15 +0000976 (if (fboundp 'imenu-add-to-menubar)
977 (imenu-add-to-menubar (format "%s-%s" "IM" mode-name)))
978 )
979 ;; Run the mode hook. Note that py-mode-hook is deprecated.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000980 (if python-mode-hook
981 (run-hooks 'python-mode-hook)
Barry Warsaw742a5111998-03-13 17:29:15 +0000982 (run-hooks 'py-mode-hook))
983 ;; Now do the automagical guessing
984 (if py-smart-indentation
985 (let ((offset py-indent-offset))
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000986 ;; It's okay if this fails to guess a good value
Barry Warsaw742a5111998-03-13 17:29:15 +0000987 (if (and (py-safe (py-guess-indent-offset))
988 (<= py-indent-offset 8)
989 (>= py-indent-offset 2))
990 (setq offset py-indent-offset))
991 (setq py-indent-offset offset)
Barry Warsaw639eea61998-03-16 18:12:13 +0000992 ;; Only turn indent-tabs-mode off if tab-width !=
993 ;; py-indent-offset. Never turn it on, because the user must
994 ;; have explicitly turned it off.
995 (if (/= tab-width py-indent-offset)
996 (setq indent-tabs-mode nil))
Barry Warsaw11f21561999-07-28 21:59:43 +0000997 ))
998 ;; Set the default shell if not already set
999 (when (null py-which-shell)
1000 (py-toggle-shells py-default-interpreter))
1001 )
Barry Warsaw7ae77681994-12-12 20:38:05 +00001002
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001003
Barry Warsawb91b7431995-03-14 15:55:20 +00001004;; electric characters
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001005(defun py-outdent-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00001006 "Returns non-nil if the current line should dedent one level."
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001007 (save-excursion
1008 (and (progn (back-to-indentation)
1009 (looking-at py-outdent-re))
Barry Warsaw1a1c6bb1999-01-09 17:22:38 +00001010 ;; short circuit infloop on illegal construct
1011 (not (bobp))
Barry Warsawf06777d1998-01-21 05:36:18 +00001012 (progn (forward-line -1)
1013 (py-goto-initial-line)
1014 (back-to-indentation)
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001015 (while (or (looking-at py-blank-or-comment-re)
1016 (bobp))
1017 (backward-to-indentation 1))
1018 (not (looking-at py-no-outdent-re)))
1019 )))
1020
Barry Warsawb91b7431995-03-14 15:55:20 +00001021(defun py-electric-colon (arg)
1022 "Insert a colon.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001023In certain cases the line is dedented appropriately. If a numeric
1024argument ARG is provided, that many colons are inserted
1025non-electrically. Electric behavior is inhibited inside a string or
1026comment."
Barry Warsawb91b7431995-03-14 15:55:20 +00001027 (interactive "P")
1028 (self-insert-command (prefix-numeric-value arg))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001029 ;; are we in a string or comment?
1030 (if (save-excursion
1031 (let ((pps (parse-partial-sexp (save-excursion
Barry Warsawab0e86c1998-05-19 15:31:46 +00001032 (py-beginning-of-def-or-class)
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001033 (point))
1034 (point))))
1035 (not (or (nth 3 pps) (nth 4 pps)))))
1036 (save-excursion
1037 (let ((here (point))
1038 (outdent 0)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001039 (indent (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001040 (if (and (not arg)
1041 (py-outdent-p)
1042 (= indent (save-excursion
Barry Warsawa7661821996-08-02 16:22:43 +00001043 (py-next-statement -1)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001044 (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001045 )
1046 (setq outdent py-indent-offset))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001047 ;; Don't indent, only dedent. This assumes that any lines
1048 ;; that are already dedented relative to
1049 ;; py-compute-indentation were put there on purpose. It's
1050 ;; highly annoying to have `:' indent for you. Use TAB, C-c
1051 ;; C-l or C-c C-r to adjust. TBD: Is there a better way to
1052 ;; determine this???
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001053 (if (< (current-indentation) indent) nil
1054 (goto-char here)
1055 (beginning-of-line)
1056 (delete-horizontal-space)
1057 (indent-to (- indent outdent))
1058 )))))
Barry Warsawb91b7431995-03-14 15:55:20 +00001059
1060
Barry Warsawa97a3f31997-11-04 18:47:06 +00001061;; Python subprocess utilities and filters
1062(defun py-execute-file (proc filename)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001063 "Send to Python interpreter process PROC \"execfile('FILENAME')\".
1064Make that process's buffer visible and force display. Also make
1065comint believe the user typed this string so that
1066`kill-output-from-shell' does The Right Thing."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001067 (let ((curbuf (current-buffer))
1068 (procbuf (process-buffer proc))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001069; (comint-scroll-to-bottom-on-output t)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001070 (msg (format "## working on region in file %s...\n" filename))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001071 (cmd (format "execfile(r'%s')\n" filename)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001072 (unwind-protect
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001073 (save-excursion
Barry Warsawa97a3f31997-11-04 18:47:06 +00001074 (set-buffer procbuf)
1075 (goto-char (point-max))
1076 (move-marker (process-mark proc) (point))
1077 (funcall (process-filter proc) proc msg))
1078 (set-buffer curbuf))
1079 (process-send-string proc cmd)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001080
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001081(defun py-comint-output-filter-function (string)
1082 "Watch output for Python prompt and exec next file waiting in queue.
1083This function is appropriate for `comint-output-filter-functions'."
Barry Warsaw014e0e21998-11-17 19:24:47 +00001084 ;; TBD: this should probably use split-string
Barry Warsaw4f94c731998-09-25 19:40:10 +00001085 (when (and (or (string-equal string ">>> ")
Barry Warsaw4f94c731998-09-25 19:40:10 +00001086 (and (>= (length string) 5)
1087 (string-equal (substring string -5) "\n>>> ")))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001088 py-file-queue)
1089 (py-safe (delete-file (car py-file-queue)))
1090 (setq py-file-queue (cdr py-file-queue))
1091 (if py-file-queue
1092 (let ((pyproc (get-buffer-process (current-buffer))))
1093 (py-execute-file pyproc (car py-file-queue))))
1094 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001095
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001096(defun py-postprocess-output-buffer (buf)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001097 "Highlight exceptions found in BUF.
1098If an exception occurred return t, otherwise return nil. BUF must exist."
Barry Warsawf9b99f41998-03-26 16:08:59 +00001099 (let (line file bol err-p)
Barry Warsaw9981d221997-12-03 05:25:48 +00001100 (save-excursion
1101 (set-buffer buf)
1102 (beginning-of-buffer)
1103 (while (re-search-forward py-traceback-line-re nil t)
1104 (setq file (match-string 1)
1105 line (string-to-int (match-string 2))
1106 bol (py-point 'bol))
Barry Warsawf9b99f41998-03-26 16:08:59 +00001107 (py-highlight-line bol (py-point 'eol) file line)))
1108 (when (and py-jump-on-exception line)
1109 (beep)
1110 (py-jump-to-exception file line)
1111 (setq err-p t))
1112 err-p))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001113
Barry Warsaw9981d221997-12-03 05:25:48 +00001114
Barry Warsawa97a3f31997-11-04 18:47:06 +00001115
1116;;; Subprocess commands
1117
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001118;; only used when (memq 'broken-temp-names py-emacs-features)
1119(defvar py-serial-number 0)
1120(defvar py-exception-buffer nil)
1121(defconst py-output-buffer "*Python Output*")
Barry Warsawa2398801998-04-09 23:28:20 +00001122(make-variable-buffer-local 'py-output-buffer)
1123
1124;; for toggling between CPython and JPython
Barry Warsawaa384fd1999-02-16 23:36:16 +00001125(defvar py-which-shell nil)
Barry Warsawa2398801998-04-09 23:28:20 +00001126(defvar py-which-args py-python-command-args)
1127(defvar py-which-bufname "Python")
1128(make-variable-buffer-local 'py-which-shell)
1129(make-variable-buffer-local 'py-which-args)
1130(make-variable-buffer-local 'py-which-bufname)
1131
1132(defun py-toggle-shells (arg)
1133 "Toggles between the CPython and JPython shells.
Barry Warsaw11f21561999-07-28 21:59:43 +00001134
Barry Warsaw41a05c71998-08-10 16:33:12 +00001135With positive argument ARG (interactively \\[universal-argument]),
1136uses the CPython shell, with negative ARG uses the JPython shell, and
Barry Warsaw11f21561999-07-28 21:59:43 +00001137with a zero argument, toggles the shell.
1138
1139Programmatically, ARG can also be one of the symbols `cpython' or
1140`jpython', equivalent to positive arg and negative arg respectively."
Barry Warsawa2398801998-04-09 23:28:20 +00001141 (interactive "P")
1142 ;; default is to toggle
1143 (if (null arg)
1144 (setq arg 0))
Barry Warsaw11f21561999-07-28 21:59:43 +00001145 ;; preprocess arg
1146 (cond
1147 ((equal arg 0)
1148 ;; toggle
1149 (if (string-equal py-which-bufname "Python")
1150 (setq arg -1)
1151 (setq arg 1)))
1152 ((equal arg 'cpython) (setq arg 1))
1153 ((equal arg 'jpython) (setq arg -1)))
Barry Warsawa2398801998-04-09 23:28:20 +00001154 (let (msg)
1155 (cond
1156 ((< 0 arg)
1157 ;; set to CPython
1158 (setq py-which-shell py-python-command
1159 py-which-args py-python-command-args
1160 py-which-bufname "Python"
1161 msg "CPython"
1162 mode-name "Python"))
1163 ((> 0 arg)
1164 (setq py-which-shell py-jpython-command
1165 py-which-args py-jpython-command-args
1166 py-which-bufname "JPython"
1167 msg "JPython"
1168 mode-name "JPython"))
1169 )
Barry Warsawea609c11998-04-10 16:08:26 +00001170 (message "Using the %s shell" msg)
Barry Warsawa2398801998-04-09 23:28:20 +00001171 (setq py-output-buffer (format "*%s Output*" py-which-bufname))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001172
Barry Warsawa97a3f31997-11-04 18:47:06 +00001173;;;###autoload
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001174(defun py-shell (&optional argprompt)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001175 "Start an interactive Python interpreter in another window.
1176This is like Shell mode, except that Python is running in the window
1177instead of a shell. See the `Interactive Shell' and `Shell Mode'
1178sections of the Emacs manual for details, especially for the key
1179bindings active in the `*Python*' buffer.
1180
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001181With optional \\[universal-argument], the user is prompted for the
1182flags to pass to the Python interpreter. This has no effect when this
1183command is used to switch to an existing process, only when a new
1184process is started. If you use this, you will probably want to ensure
1185that the current arguments are retained (they will be included in the
1186prompt). This argument is ignored when this function is called
1187programmatically, or when running in Emacs 19.34 or older.
1188
Barry Warsawa2398801998-04-09 23:28:20 +00001189Note: You can toggle between using the CPython interpreter and the
1190JPython interpreter by hitting \\[py-toggle-shells]. This toggles
1191buffer local variables which control whether all your subshell
1192interactions happen to the `*JPython*' or `*Python*' buffers (the
1193latter is the name used for the CPython buffer).
1194
Barry Warsawa97a3f31997-11-04 18:47:06 +00001195Warning: Don't use an interactive Python if you change sys.ps1 or
1196sys.ps2 from their default values, or if you're running code that
1197prints `>>> ' or `... ' at the start of a line. `python-mode' can't
1198distinguish your output from Python's output, and assumes that `>>> '
1199at the start of a line is a prompt from Python. Similarly, the Emacs
1200Shell mode code assumes that both `>>> ' and `... ' at the start of a
1201line are Python prompts. Bad things can happen if you fool either
1202mode.
1203
1204Warning: If you do any editing *in* the process buffer *while* the
1205buffer is accepting output from Python, do NOT attempt to `undo' the
1206changes. Some of the output (nowhere near the parts you changed!) may
1207be lost if you do. This appears to be an Emacs bug, an unfortunate
1208interaction between undo and process filters; the same problem exists in
1209non-Python process buffers using the default (Emacs-supplied) process
1210filter."
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001211 (interactive "P")
Barry Warsaw50765ab1999-08-10 21:49:00 +00001212 ;; Set the default shell if not already set
1213 (when (null py-which-shell)
1214 (py-toggle-shells py-default-interpreter))
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001215 (let ((args py-which-args))
1216 (when (and argprompt
1217 (interactive-p)
1218 (fboundp 'split-string))
1219 ;; TBD: Perhaps force "-i" in the final list?
1220 (setq args (split-string
1221 (read-string (concat py-which-bufname
1222 " arguments: ")
1223 (concat
1224 (mapconcat 'identity py-which-args " ") " ")
1225 ))))
1226 (switch-to-buffer-other-window
1227 (apply 'make-comint py-which-bufname py-which-shell nil args))
1228 (make-local-variable 'comint-prompt-regexp)
1229 (setq comint-prompt-regexp "^>>> \\|^[.][.][.] \\|^(pdb) ")
1230 (add-hook 'comint-output-filter-functions
1231 'py-comint-output-filter-function)
1232 (set-syntax-table py-mode-syntax-table)
1233 (use-local-map py-shell-map)
1234 ))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001235
Barry Warsawa97a3f31997-11-04 18:47:06 +00001236(defun py-clear-queue ()
1237 "Clear the queue of temporary files waiting to execute."
1238 (interactive)
1239 (let ((n (length py-file-queue)))
1240 (mapcar 'delete-file py-file-queue)
1241 (setq py-file-queue nil)
1242 (message "%d pending files de-queued." n)))
1243
Barry Warsaw820273d1998-05-19 15:54:45 +00001244
Barry Warsawa97a3f31997-11-04 18:47:06 +00001245(defun py-execute-region (start end &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001246 "Execute the region in a Python interpreter.
1247
Barry Warsawa97a3f31997-11-04 18:47:06 +00001248The region is first copied into a temporary file (in the directory
1249`py-temp-directory'). If there is no Python interpreter shell
1250running, this file is executed synchronously using
Barry Warsaw41a05c71998-08-10 16:33:12 +00001251`shell-command-on-region'. If the program is long running, use
1252\\[universal-argument] to run the command asynchronously in its own
1253buffer.
1254
1255When this function is used programmatically, arguments START and END
1256specify the region to execute, and optional third argument ASYNC, if
1257non-nil, specifies to run the command asynchronously in its own
1258buffer.
Barry Warsawa97a3f31997-11-04 18:47:06 +00001259
1260If the Python interpreter shell is running, the region is execfile()'d
1261in that shell. If you try to execute regions too quickly,
1262`python-mode' will queue them up and execute them one at a time when
1263it sees a `>>> ' prompt from Python. Each time this happens, the
1264process buffer is popped into a window (if it's not already in some
1265window) so you can see it, and a comment of the form
1266
1267 \t## working on region in file <name>...
1268
1269is inserted at the end. See also the command `py-clear-queue'."
1270 (interactive "r\nP")
1271 (or (< start end)
1272 (error "Region is empty"))
Barry Warsaw014e0e21998-11-17 19:24:47 +00001273 (let* ((proc (get-process py-which-bufname))
Barry Warsaw5e21cb01997-11-05 18:41:11 +00001274 (temp (if (memq 'broken-temp-names py-emacs-features)
Barry Warsaw1b344241998-08-07 22:24:16 +00001275 (let
1276 ((sn py-serial-number)
1277 (pid (and (fboundp 'emacs-pid) (emacs-pid))))
1278 (setq py-serial-number (1+ py-serial-number))
1279 (if pid
1280 (format "python-%d-%d" sn pid)
1281 (format "python-%d" sn)))
Barry Warsaw2f32fbb1998-02-25 16:45:43 +00001282 (make-temp-name "python-")))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001283 (file (expand-file-name temp py-temp-directory))
1284 (cur (current-buffer))
1285 (buf (get-buffer-create file)))
1286 ;; Write the contents of the buffer, watching out for indented regions.
1287 (save-excursion
1288 (goto-char start)
Barry Warsaw99eadf42000-06-23 20:24:25 +00001289 (let ((needs-if (/= (py-point 'bol) (py-point 'boi))))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001290 (set-buffer buf)
Barry Warsaw99eadf42000-06-23 20:24:25 +00001291 (when needs-if
1292 (insert "if 1:\n"))
1293 (insert-buffer-substring cur start end)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001294 (cond
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001295 ;; always run the code in its own asynchronous subprocess
Barry Warsawa97a3f31997-11-04 18:47:06 +00001296 (async
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001297 ;; User explicitly wants this to run in its own async subprocess
1298 (save-excursion
1299 (set-buffer buf)
1300 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsaw34d83171998-11-20 03:04:07 +00001301 (let* ((buf (generate-new-buffer-name py-output-buffer))
1302 ;; TBD: a horrible hack, but why create new Custom variables?
1303 (arg (if (string-equal py-which-bufname "Python")
1304 "-u" "")))
1305 (start-process py-which-bufname buf py-which-shell arg file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001306 (pop-to-buffer buf)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001307 (py-postprocess-output-buffer buf)
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001308 ;; TBD: clean up the temporary file!
Barry Warsawa97a3f31997-11-04 18:47:06 +00001309 ))
1310 ;; if the Python interpreter shell is running, queue it up for
1311 ;; execution there.
1312 (proc
1313 ;; use the existing python shell
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001314 (save-excursion
1315 (set-buffer buf)
1316 (write-region (point-min) (point-max) file nil 'nomsg))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001317 (if (not py-file-queue)
1318 (py-execute-file proc file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001319 (message "File %s queued for execution" file))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001320 (setq py-file-queue (append py-file-queue (list file)))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001321 (setq py-exception-buffer (cons file (current-buffer))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001322 (t
Barry Warsaw34d83171998-11-20 03:04:07 +00001323 ;; TBD: a horrible hack, buy why create new Custom variables?
1324 (let ((cmd (concat py-which-shell
1325 (if (string-equal py-which-bufname "JPython")
1326 " -" ""))))
1327 ;; otherwise either run it synchronously in a subprocess
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001328 (save-excursion
1329 (set-buffer buf)
1330 (shell-command-on-region (point-min) (point-max)
1331 cmd py-output-buffer))
Barry Warsaw34d83171998-11-20 03:04:07 +00001332 ;; shell-command-on-region kills the output buffer if it never
1333 ;; existed and there's no output from the command
1334 (if (not (get-buffer py-output-buffer))
1335 (message "No output.")
1336 (setq py-exception-buffer (current-buffer))
1337 (let ((err-p (py-postprocess-output-buffer py-output-buffer)))
1338 (pop-to-buffer py-output-buffer)
1339 (if err-p
1340 (pop-to-buffer py-exception-buffer)))
Barry Warsawcaee2fe2000-05-23 05:47:43 +00001341 ))
1342 ;; TBD: delete the buffer
1343 )
Barry Warsaw71534602001-02-20 23:07:56 +00001344 )
1345 ;; Clean up after ourselves.
1346 (kill-buffer buf)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001347
Barry Warsaw820273d1998-05-19 15:54:45 +00001348
1349;; Code execution commands
Barry Warsawa97a3f31997-11-04 18:47:06 +00001350(defun py-execute-buffer (&optional async)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001351 "Send the contents of the buffer to a Python interpreter.
Barry Warsawc0ecb531998-01-20 21:43:34 +00001352If the file local variable `py-master-file' is non-nil, execute the
1353named file instead of the buffer's file.
1354
Barry Warsaw7ae77681994-12-12 20:38:05 +00001355If there is a *Python* process buffer it is used. If a clipping
1356restriction is in effect, only the accessible portion of the buffer is
1357sent. A trailing newline will be supplied if needed.
1358
Barry Warsaw41a05c71998-08-10 16:33:12 +00001359See the `\\[py-execute-region]' docs for an account of some
1360subtleties, including the use of the optional ASYNC argument."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001361 (interactive "P")
Barry Warsawc0ecb531998-01-20 21:43:34 +00001362 (if py-master-file
1363 (let* ((filename (expand-file-name py-master-file))
1364 (buffer (or (get-file-buffer filename)
1365 (find-file-noselect filename))))
1366 (set-buffer buffer)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001367 (py-execute-region (point-min) (point-max) async))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001368
Barry Warsaw820273d1998-05-19 15:54:45 +00001369(defun py-execute-import-or-reload (&optional async)
1370 "Import the current buffer's file in a Python interpreter.
1371
1372If the file has already been imported, then do reload instead to get
Barry Warsaw7c29b231998-07-07 17:45:38 +00001373the latest version.
1374
1375If the file's name does not end in \".py\", then do execfile instead.
1376
1377If the current buffer is not visiting a file, do `py-execute-buffer'
1378instead.
1379
1380If the file local variable `py-master-file' is non-nil, import or
1381reload the named file instead of the buffer's file. The file may be
1382saved based on the value of `py-execute-import-or-reload-save-p'.
Barry Warsaw820273d1998-05-19 15:54:45 +00001383
Barry Warsaw41a05c71998-08-10 16:33:12 +00001384See the `\\[py-execute-region]' docs for an account of some
1385subtleties, including the use of the optional ASYNC argument.
Barry Warsaw820273d1998-05-19 15:54:45 +00001386
Barry Warsaw7c29b231998-07-07 17:45:38 +00001387This may be preferable to `\\[py-execute-buffer]' because:
Barry Warsaw820273d1998-05-19 15:54:45 +00001388
1389 - Definitions stay in their module rather than appearing at top
1390 level, where they would clutter the global namespace and not affect
1391 uses of qualified names (MODULE.NAME).
1392
1393 - The Python debugger gets line number information about the functions."
1394 (interactive "P")
1395 ;; Check file local variable py-master-file
1396 (if py-master-file
1397 (let* ((filename (expand-file-name py-master-file))
1398 (buffer (or (get-file-buffer filename)
1399 (find-file-noselect filename))))
1400 (set-buffer buffer)))
1401 (let ((file (buffer-file-name (current-buffer))))
1402 (if file
1403 (progn
Barry Warsaw3bfed5b1998-05-19 16:25:04 +00001404 ;; Maybe save some buffers
1405 (save-some-buffers (not py-ask-about-save) nil)
Barry Warsaw820273d1998-05-19 15:54:45 +00001406 (py-execute-string
1407 (if (string-match "\\.py$" file)
1408 (let ((f (file-name-sans-extension
1409 (file-name-nondirectory file))))
1410 (format "if globals().has_key('%s'):\n reload(%s)\nelse:\n import %s\n"
1411 f f f))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001412 (format "execfile(r'%s')\n" file))
Barry Warsaw820273d1998-05-19 15:54:45 +00001413 async))
1414 ;; else
1415 (py-execute-buffer async))))
1416
1417
1418(defun py-execute-def-or-class (&optional async)
1419 "Send the current function or class definition to a Python interpreter.
1420
1421If there is a *Python* process buffer it is used.
1422
Barry Warsaw41a05c71998-08-10 16:33:12 +00001423See the `\\[py-execute-region]' docs for an account of some
1424subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001425 (interactive "P")
1426 (save-excursion
1427 (py-mark-def-or-class)
1428 ;; mark is before point
1429 (py-execute-region (mark) (point) async)))
1430
1431
1432(defun py-execute-string (string &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001433 "Send the argument STRING to a Python interpreter.
Barry Warsaw820273d1998-05-19 15:54:45 +00001434
1435If there is a *Python* process buffer it is used.
1436
Barry Warsaw41a05c71998-08-10 16:33:12 +00001437See the `\\[py-execute-region]' docs for an account of some
1438subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001439 (interactive "sExecute Python command: ")
1440 (save-excursion
1441 (set-buffer (get-buffer-create
1442 (generate-new-buffer-name " *Python Command*")))
1443 (insert string)
1444 (py-execute-region (point-min) (point-max) async)))
1445
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001446
1447
1448(defun py-jump-to-exception (file line)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001449 "Jump to the Python code in FILE at LINE."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001450 (let ((buffer (cond ((string-equal file "<stdin>")
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001451 (if (consp py-exception-buffer)
1452 (cdr py-exception-buffer)
1453 py-exception-buffer))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001454 ((and (consp py-exception-buffer)
1455 (string-equal file (car py-exception-buffer)))
1456 (cdr py-exception-buffer))
1457 ((py-safe (find-file-noselect file)))
1458 ;; could not figure out what file the exception
1459 ;; is pointing to, so prompt for it
1460 (t (find-file (read-file-name "Exception file: "
1461 nil
1462 file t))))))
1463 (pop-to-buffer buffer)
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001464 ;; Force Python mode
Barry Warsaw820273d1998-05-19 15:54:45 +00001465 (if (not (eq major-mode 'python-mode))
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001466 (python-mode))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001467 (goto-line line)
1468 (message "Jumping to exception in file %s on line %d" file line)))
1469
1470(defun py-mouseto-exception (event)
Barry Warsaw12c92941998-08-10 21:44:37 +00001471 "Jump to the code which caused the Python exception at EVENT.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001472EVENT is usually a mouse click."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001473 (interactive "e")
1474 (cond
1475 ((fboundp 'event-point)
1476 ;; XEmacs
1477 (let* ((point (event-point event))
1478 (buffer (event-buffer event))
1479 (e (and point buffer (extent-at point buffer 'py-exc-info)))
1480 (info (and e (extent-property e 'py-exc-info))))
1481 (message "Event point: %d, info: %s" point info)
1482 (and info
1483 (py-jump-to-exception (car info) (cdr info)))
1484 ))
1485 ;; Emacs -- Please port this!
1486 ))
1487
1488(defun py-goto-exception ()
1489 "Go to the line indicated by the traceback."
1490 (interactive)
1491 (let (file line)
1492 (save-excursion
1493 (beginning-of-line)
1494 (if (looking-at py-traceback-line-re)
1495 (setq file (match-string 1)
1496 line (string-to-int (match-string 2)))))
1497 (if (not file)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001498 (error "Not on a traceback line"))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001499 (py-jump-to-exception file line)))
1500
1501(defun py-find-next-exception (start buffer searchdir errwhere)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001502 "Find the next Python exception and jump to the code that caused it.
1503START is the buffer position in BUFFER from which to begin searching
1504for an exception. SEARCHDIR is a function, either
1505`re-search-backward' or `re-search-forward' indicating the direction
1506to search. ERRWHERE is used in an error message if the limit (top or
1507bottom) of the trackback stack is encountered."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001508 (let (file line)
1509 (save-excursion
1510 (set-buffer buffer)
1511 (goto-char (py-point start))
1512 (if (funcall searchdir py-traceback-line-re nil t)
1513 (setq file (match-string 1)
1514 line (string-to-int (match-string 2)))))
1515 (if (and file line)
1516 (py-jump-to-exception file line)
1517 (error "%s of traceback" errwhere))))
1518
1519(defun py-down-exception (&optional bottom)
1520 "Go to the next line down in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001521With \\[univeral-argument] (programmatically, optional argument
1522BOTTOM), jump to the bottom (innermost) exception in the exception
1523stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001524 (interactive "P")
1525 (let* ((proc (get-process "Python"))
1526 (buffer (if proc "*Python*" py-output-buffer)))
1527 (if bottom
1528 (py-find-next-exception 'eob buffer 're-search-backward "Bottom")
1529 (py-find-next-exception 'eol buffer 're-search-forward "Bottom"))))
1530
1531(defun py-up-exception (&optional top)
1532 "Go to the previous line up in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001533With \\[universal-argument] (programmatically, optional argument TOP)
1534jump to the top (outermost) exception in the exception stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001535 (interactive "P")
1536 (let* ((proc (get-process "Python"))
1537 (buffer (if proc "*Python*" py-output-buffer)))
1538 (if top
1539 (py-find-next-exception 'bob buffer 're-search-forward "Top")
Barry Warsawffbc17d1997-11-27 20:08:14 +00001540 (py-find-next-exception 'bol buffer 're-search-backward "Top"))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001541
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001542
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001543;; Electric deletion
1544(defun py-electric-backspace (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001545 "Delete preceding character or levels of indentation.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001546Deletion is performed by calling the function in `py-backspace-function'
Barry Warsawb0539931996-12-17 22:05:07 +00001547with a single argument (the number of characters to delete).
Barry Warsaw7ae77681994-12-12 20:38:05 +00001548
Barry Warsaw41a05c71998-08-10 16:33:12 +00001549If point is at the leftmost column, delete the preceding newline.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001550
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001551Otherwise, if point is at the leftmost non-whitespace character of a
1552line that is neither a continuation line nor a non-indenting comment
1553line, or if point is at the end of a blank line, this command reduces
1554the indentation to match that of the line that opened the current
1555block of code. The line that opened the block is displayed in the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001556echo area to help you keep track of where you are. With
1557\\[universal-argument] dedents that many blocks (but not past column
1558zero).
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001559
1560Otherwise the preceding character is deleted, converting a tab to
1561spaces if needed so that only a single column position is deleted.
Barry Warsawfa2def21999-05-24 21:43:37 +00001562\\[universal-argument] specifies how many characters to delete;
1563default is 1.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001564
1565When used programmatically, argument ARG specifies the number of
1566blocks to dedent, or the number of characters to delete, as indicated
1567above."
Barry Warsaw03970731996-07-03 23:12:52 +00001568 (interactive "*p")
Barry Warsaw7ae77681994-12-12 20:38:05 +00001569 (if (or (/= (current-indentation) (current-column))
1570 (bolp)
1571 (py-continuation-line-p)
Barry Warsawfa2def21999-05-24 21:43:37 +00001572; (not py-honor-comment-indentation)
1573; (looking-at "#[^ \t\n]") ; non-indenting #
1574 )
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001575 (funcall py-backspace-function arg)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001576 ;; else indent the same as the colon line that opened the block
Barry Warsaw7ae77681994-12-12 20:38:05 +00001577 ;; force non-blank so py-goto-block-up doesn't ignore it
1578 (insert-char ?* 1)
1579 (backward-char)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001580 (let ((base-indent 0) ; indentation of base line
1581 (base-text "") ; and text of base line
1582 (base-found-p nil))
Barry Warsaw03970731996-07-03 23:12:52 +00001583 (save-excursion
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001584 (while (< 0 arg)
Barry Warsaw03970731996-07-03 23:12:52 +00001585 (condition-case nil ; in case no enclosing block
1586 (progn
1587 (py-goto-block-up 'no-mark)
1588 (setq base-indent (current-indentation)
1589 base-text (py-suck-up-leading-text)
1590 base-found-p t))
1591 (error nil))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001592 (setq arg (1- arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001593 (delete-char 1) ; toss the dummy character
1594 (delete-horizontal-space)
1595 (indent-to base-indent)
1596 (if base-found-p
1597 (message "Closes block: %s" base-text)))))
1598
Barry Warsawfc8a01f1995-03-09 16:07:29 +00001599
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001600(defun py-electric-delete (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001601 "Delete preceding or following character or levels of whitespace.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001602
1603The behavior of this function depends on the variable
1604`delete-key-deletes-forward'. If this variable is nil (or does not
Barry Warsaw41a05c71998-08-10 16:33:12 +00001605exist, as in older Emacsen and non-XEmacs versions), then this
1606function behaves identically to \\[c-electric-backspace].
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001607
1608If `delete-key-deletes-forward' is non-nil and is supported in your
1609Emacs, then deletion occurs in the forward direction, by calling the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001610function in `py-delete-function'.
1611
1612\\[universal-argument] (programmatically, argument ARG) specifies the
1613number of characters to delete (default is 1)."
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001614 (interactive "*p")
Barry Warsaw1d7b0fa1999-01-15 02:12:31 +00001615 (if (or (and (fboundp 'delete-forward-p) ;XEmacs 21
1616 (delete-forward-p))
1617 (and (boundp 'delete-key-deletes-forward) ;XEmacs 20
1618 delete-key-deletes-forward))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001619 (funcall py-delete-function arg)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001620 (py-electric-backspace arg)))
1621
1622;; required for pending-del and delsel modes
1623(put 'py-electric-backspace 'delete-selection 'supersede) ;delsel
1624(put 'py-electric-backspace 'pending-delete 'supersede) ;pending-del
1625(put 'py-electric-delete 'delete-selection 'supersede) ;delsel
1626(put 'py-electric-delete 'pending-delete 'supersede) ;pending-del
1627
1628
1629
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001630(defun py-indent-line (&optional arg)
1631 "Fix the indentation of the current line according to Python rules.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001632With \\[universal-argument] (programmatically, the optional argument
1633ARG non-nil), ignore dedenting rules for block closing statements
1634(e.g. return, raise, break, continue, pass)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001635
1636This function is normally bound to `indent-line-function' so
1637\\[indent-for-tab-command] will call it."
1638 (interactive "P")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001639 (let* ((ci (current-indentation))
1640 (move-to-indentation-p (<= (current-column) ci))
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001641 (need (py-compute-indentation (not arg))))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001642 ;; see if we need to dedent
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001643 (if (py-outdent-p)
Barry Warsaw0012c1e1995-03-14 16:32:55 +00001644 (setq need (- need py-indent-offset)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001645 (if (/= ci need)
1646 (save-excursion
1647 (beginning-of-line)
1648 (delete-horizontal-space)
1649 (indent-to need)))
1650 (if move-to-indentation-p (back-to-indentation))))
1651
1652(defun py-newline-and-indent ()
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001653 "Strives to act like the Emacs `newline-and-indent'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001654This is just `strives to' because correct indentation can't be computed
1655from scratch for Python code. In general, deletes the whitespace before
1656point, inserts a newline, and takes an educated guess as to how you want
1657the new line indented."
1658 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001659 (let ((ci (current-indentation)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001660 (if (< ci (current-column)) ; if point beyond indentation
1661 (newline-and-indent)
1662 ;; else try to act like newline-and-indent "normally" acts
1663 (beginning-of-line)
1664 (insert-char ?\n 1)
1665 (move-to-column ci))))
1666
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001667(defun py-compute-indentation (honor-block-close-p)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001668 "Compute Python indentation.
1669When HONOR-BLOCK-CLOSE-P is non-nil, statements such as `return',
1670`raise', `break', `continue', and `pass' force one level of
1671dedenting."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001672 (save-excursion
Barry Warsawf64b4051998-02-12 16:52:14 +00001673 (beginning-of-line)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001674 (let* ((bod (py-point 'bod))
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001675 (pps (parse-partial-sexp bod (point)))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001676 (boipps (parse-partial-sexp bod (py-point 'boi)))
1677 placeholder)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001678 (cond
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001679 ;; are we inside a multi-line string or comment?
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001680 ((or (and (nth 3 pps) (nth 3 boipps))
1681 (and (nth 4 pps) (nth 4 boipps)))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001682 (save-excursion
1683 (if (not py-align-multiline-strings-p) 0
1684 ;; skip back over blank & non-indenting comment lines
1685 ;; note: will skip a blank or non-indenting comment line
1686 ;; that happens to be a continuation line too
1687 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move)
1688 (back-to-indentation)
1689 (current-column))))
1690 ;; are we on a continuation line?
1691 ((py-continuation-line-p)
1692 (let ((startpos (point))
1693 (open-bracket-pos (py-nesting-level))
Barry Warsawce60bc71996-08-01 18:17:14 +00001694 endpos searching found state)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001695 (if open-bracket-pos
1696 (progn
1697 ;; align with first item in list; else a normal
1698 ;; indent beyond the line with the open bracket
1699 (goto-char (1+ open-bracket-pos)) ; just beyond bracket
1700 ;; is the first list item on the same line?
1701 (skip-chars-forward " \t")
1702 (if (null (memq (following-char) '(?\n ?# ?\\)))
1703 ; yes, so line up with it
1704 (current-column)
1705 ;; first list item on another line, or doesn't exist yet
1706 (forward-line 1)
1707 (while (and (< (point) startpos)
1708 (looking-at "[ \t]*[#\n\\\\]")) ; skip noise
1709 (forward-line 1))
Barry Warsaw92166d91998-04-01 21:59:41 +00001710 (if (and (< (point) startpos)
1711 (/= startpos
1712 (save-excursion
1713 (goto-char (1+ open-bracket-pos))
Barry Warsaw77d1fce1998-04-16 20:04:59 +00001714 (forward-comment (point-max))
Barry Warsaw92166d91998-04-01 21:59:41 +00001715 (point))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001716 ;; again mimic the first list item
1717 (current-indentation)
1718 ;; else they're about to enter the first item
1719 (goto-char open-bracket-pos)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001720 (setq placeholder (point))
1721 (py-goto-initial-line)
1722 (py-goto-beginning-of-tqs
1723 (save-excursion (nth 3 (parse-partial-sexp
1724 placeholder (point)))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001725 (+ (current-indentation) py-indent-offset))))
1726
1727 ;; else on backslash continuation line
1728 (forward-line -1)
1729 (if (py-continuation-line-p) ; on at least 3rd line in block
1730 (current-indentation) ; so just continue the pattern
1731 ;; else started on 2nd line in block, so indent more.
1732 ;; if base line is an assignment with a start on a RHS,
1733 ;; indent to 2 beyond the leftmost "="; else skip first
1734 ;; chunk of non-whitespace characters on base line, + 1 more
1735 ;; column
1736 (end-of-line)
1737 (setq endpos (point) searching t)
1738 (back-to-indentation)
1739 (setq startpos (point))
1740 ;; look at all "=" from left to right, stopping at first
1741 ;; one not nested in a list or string
1742 (while searching
1743 (skip-chars-forward "^=" endpos)
1744 (if (= (point) endpos)
1745 (setq searching nil)
1746 (forward-char 1)
1747 (setq state (parse-partial-sexp startpos (point)))
1748 (if (and (zerop (car state)) ; not in a bracket
1749 (null (nth 3 state))) ; & not in a string
1750 (progn
1751 (setq searching nil) ; done searching in any case
1752 (setq found
1753 (not (or
1754 (eq (following-char) ?=)
1755 (memq (char-after (- (point) 2))
1756 '(?< ?> ?!)))))))))
1757 (if (or (not found) ; not an assignment
1758 (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash>
1759 (progn
1760 (goto-char startpos)
1761 (skip-chars-forward "^ \t\n")))
1762 (1+ (current-column))))))
1763
1764 ;; not on a continuation line
Barry Warsawa7891711996-08-01 15:53:09 +00001765 ((bobp) (current-indentation))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001766
Barry Warsawa7891711996-08-01 15:53:09 +00001767 ;; Dfn: "Indenting comment line". A line containing only a
1768 ;; comment, but which is treated like a statement for
1769 ;; indentation calculation purposes. Such lines are only
1770 ;; treated specially by the mode; they are not treated
1771 ;; specially by the Python interpreter.
1772
1773 ;; The rules for indenting comment lines are a line where:
1774 ;; - the first non-whitespace character is `#', and
1775 ;; - the character following the `#' is whitespace, and
Barry Warsaw41a05c71998-08-10 16:33:12 +00001776 ;; - the line is dedented with respect to (i.e. to the left
Barry Warsawa7891711996-08-01 15:53:09 +00001777 ;; of) the indentation of the preceding non-blank line.
1778
1779 ;; The first non-blank line following an indenting comment
1780 ;; line is given the same amount of indentation as the
1781 ;; indenting comment line.
1782
1783 ;; All other comment-only lines are ignored for indentation
1784 ;; purposes.
1785
1786 ;; Are we looking at a comment-only line which is *not* an
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001787 ;; indenting comment line? If so, we assume that it's been
Barry Warsawa7891711996-08-01 15:53:09 +00001788 ;; placed at the desired indentation, so leave it alone.
1789 ;; Indenting comment lines are aligned as statements down
1790 ;; below.
1791 ((and (looking-at "[ \t]*#[^ \t\n]")
1792 ;; NOTE: this test will not be performed in older Emacsen
1793 (fboundp 'forward-comment)
1794 (<= (current-indentation)
1795 (save-excursion
1796 (forward-comment (- (point-max)))
1797 (current-indentation))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001798 (current-indentation))
1799
1800 ;; else indentation based on that of the statement that
1801 ;; precedes us; use the first line of that statement to
1802 ;; establish the base, in case the user forced a non-std
1803 ;; indentation for the continuation lines (if any)
1804 (t
Barry Warsawc01c5c81995-09-14 18:49:11 +00001805 ;; skip back over blank & non-indenting comment lines note:
1806 ;; will skip a blank or non-indenting comment line that
Barry Warsawfd0fb381996-03-04 17:15:40 +00001807 ;; happens to be a continuation line too. use fast Emacs 19
1808 ;; function if it's there.
Barry Warsaw6d627751996-03-06 18:41:38 +00001809 (if (and (eq py-honor-comment-indentation nil)
Barry Warsaw33d6ec01996-03-05 16:28:07 +00001810 (fboundp 'forward-comment))
Barry Warsawfd0fb381996-03-04 17:15:40 +00001811 (forward-comment (- (point-max)))
Barry Warsaw218eb751998-09-22 19:51:47 +00001812 (let ((prefix-re (concat py-block-comment-prefix "[ \t]*"))
1813 done)
Barry Warsaw6d627751996-03-06 18:41:38 +00001814 (while (not done)
Barry Warsaw12c92941998-08-10 21:44:37 +00001815 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#\\)" nil 'move)
1816 (setq done (or (bobp)
1817 (and (eq py-honor-comment-indentation t)
1818 (save-excursion
1819 (back-to-indentation)
Barry Warsaw218eb751998-09-22 19:51:47 +00001820 (not (looking-at prefix-re))
Barry Warsaw12c92941998-08-10 21:44:37 +00001821 ))
1822 (and (not (eq py-honor-comment-indentation t))
1823 (save-excursion
1824 (back-to-indentation)
1825 (not (zerop (current-column)))))
1826 ))
Barry Warsaw6d627751996-03-06 18:41:38 +00001827 )))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001828 ;; if we landed inside a string, go to the beginning of that
1829 ;; string. this handles triple quoted, multi-line spanning
1830 ;; strings.
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001831 (py-goto-beginning-of-tqs (nth 3 (parse-partial-sexp bod (point))))
Barry Warsawc210e691998-01-20 22:52:56 +00001832 ;; now skip backward over continued lines
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001833 (setq placeholder (point))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001834 (py-goto-initial-line)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001835 ;; we may *now* have landed in a TQS, so find the beginning of
1836 ;; this string.
1837 (py-goto-beginning-of-tqs
1838 (save-excursion (nth 3 (parse-partial-sexp
1839 placeholder (point)))))
Barry Warsawf831d811996-07-31 20:42:59 +00001840 (+ (current-indentation)
1841 (if (py-statement-opens-block-p)
1842 py-indent-offset
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001843 (if (and honor-block-close-p (py-statement-closes-block-p))
Barry Warsawf831d811996-07-31 20:42:59 +00001844 (- py-indent-offset)
1845 0)))
1846 )))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001847
1848(defun py-guess-indent-offset (&optional global)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001849 "Guess a good value for, and change, `py-indent-offset'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001850
1851By default, make a buffer-local copy of `py-indent-offset' with the
1852new value, so that other Python buffers are not affected. With
1853\\[universal-argument] (programmatically, optional argument GLOBAL),
1854change the global value of `py-indent-offset'. This affects all
1855Python buffers (that don't have their own buffer-local copy), both
1856those currently existing and those created later in the Emacs session.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001857
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001858Some people use a different value for `py-indent-offset' than you use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001859There's no excuse for such foolishness, but sometimes you have to deal
1860with their ugly code anyway. This function examines the file and sets
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001861`py-indent-offset' to what it thinks it was when they created the
1862mess.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001863
1864Specifically, it searches forward from the statement containing point,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001865looking for a line that opens a block of code. `py-indent-offset' is
1866set to the difference in indentation between that line and the Python
Barry Warsaw7ae77681994-12-12 20:38:05 +00001867statement following it. If the search doesn't succeed going forward,
1868it's tried again going backward."
1869 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001870 (let (new-value
1871 (start (point))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001872 (restart (point))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001873 (found nil)
1874 colon-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001875 (py-goto-initial-line)
1876 (while (not (or found (eobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001877 (when (and (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1878 (not (py-in-literal restart)))
1879 (setq restart (point))
1880 (py-goto-initial-line)
1881 (if (py-statement-opens-block-p)
1882 (setq found t)
1883 (goto-char restart))))
1884 (unless found
Barry Warsaw7ae77681994-12-12 20:38:05 +00001885 (goto-char start)
1886 (py-goto-initial-line)
1887 (while (not (or found (bobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001888 (setq found (and
1889 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1890 (or (py-goto-initial-line) t) ; always true -- side effect
1891 (py-statement-opens-block-p)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001892 (setq colon-indent (current-indentation)
1893 found (and found (zerop (py-next-statement 1)))
1894 new-value (- (current-indentation) colon-indent))
1895 (goto-char start)
Barry Warsawe908b6b1998-03-19 22:48:02 +00001896 (if (not found)
1897 (error "Sorry, couldn't guess a value for py-indent-offset")
1898 (funcall (if global 'kill-local-variable 'make-local-variable)
1899 'py-indent-offset)
1900 (setq py-indent-offset new-value)
Barry Warsawd35c2551998-09-25 00:08:38 +00001901 (or noninteractive
1902 (message "%s value of py-indent-offset set to %d"
1903 (if global "Global" "Local")
1904 py-indent-offset)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001905 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001906
Barry Warsaw003932a1998-07-07 15:11:24 +00001907(defun py-comment-indent-function ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00001908 "Python version of `comment-indent-function'."
1909 ;; This is required when filladapt is turned off. Without it, when
1910 ;; filladapt is not used, comments which start in column zero
1911 ;; cascade one character to the right
Barry Warsaw003932a1998-07-07 15:11:24 +00001912 (save-excursion
1913 (beginning-of-line)
1914 (let ((eol (py-point 'eol)))
1915 (and comment-start-skip
1916 (re-search-forward comment-start-skip eol t)
1917 (setq eol (match-beginning 0)))
1918 (goto-char eol)
1919 (skip-chars-backward " \t")
1920 (max comment-column (+ (current-column) (if (bolp) 0 1)))
1921 )))
1922
Barry Warsawf8ddb6a1999-01-18 21:49:39 +00001923(defun py-narrow-to-defun (&optional class)
1924 "Make text outside current defun invisible.
1925The defun visible is the one that contains point or follows point.
1926Optional CLASS is passed directly to `py-beginning-of-def-or-class'."
1927 (interactive "P")
1928 (save-excursion
1929 (widen)
1930 (py-end-of-def-or-class class)
1931 (let ((end (point)))
1932 (py-beginning-of-def-or-class class)
1933 (narrow-to-region (point) end))))
1934
Barry Warsaw003932a1998-07-07 15:11:24 +00001935
Barry Warsaw7ae77681994-12-12 20:38:05 +00001936(defun py-shift-region (start end count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001937 "Indent lines from START to END by COUNT spaces."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001938 (save-excursion
Barry Warsaw41a05c71998-08-10 16:33:12 +00001939 (goto-char end)
1940 (beginning-of-line)
1941 (setq end (point))
1942 (goto-char start)
1943 (beginning-of-line)
1944 (setq start (point))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001945 (indent-rigidly start end count)))
1946
1947(defun py-shift-region-left (start end &optional count)
1948 "Shift region of Python code to the left.
1949The lines from the line containing the start of the current region up
1950to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001951shifted to the left, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001952
1953If a prefix argument is given, the region is instead shifted by that
Barry Warsaw41a05c71998-08-10 16:33:12 +00001954many columns. With no active region, dedent only the current line.
1955You cannot dedent the region if any line is already at column zero."
Barry Warsawdea4a291996-07-03 22:59:12 +00001956 (interactive
1957 (let ((p (point))
1958 (m (mark))
1959 (arg current-prefix-arg))
1960 (if m
1961 (list (min p m) (max p m) arg)
1962 (list p (save-excursion (forward-line 1) (point)) arg))))
1963 ;; if any line is at column zero, don't shift the region
1964 (save-excursion
1965 (goto-char start)
1966 (while (< (point) end)
1967 (back-to-indentation)
Barry Warsaw71e315b1996-07-23 15:03:16 +00001968 (if (and (zerop (current-column))
1969 (not (looking-at "\\s *$")))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001970 (error "Region is at left edge"))
Barry Warsawdea4a291996-07-03 22:59:12 +00001971 (forward-line 1)))
1972 (py-shift-region start end (- (prefix-numeric-value
1973 (or count py-indent-offset))))
1974 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001975
1976(defun py-shift-region-right (start end &optional count)
1977 "Shift region of Python code to the right.
1978The lines from the line containing the start of the current region up
1979to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001980shifted to the right, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001981
1982If a prefix argument is given, the region is instead shifted by that
Barry Warsawdea4a291996-07-03 22:59:12 +00001983many columns. With no active region, indent only the current line."
1984 (interactive
1985 (let ((p (point))
1986 (m (mark))
1987 (arg current-prefix-arg))
1988 (if m
1989 (list (min p m) (max p m) arg)
1990 (list p (save-excursion (forward-line 1) (point)) arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001991 (py-shift-region start end (prefix-numeric-value
Barry Warsawdea4a291996-07-03 22:59:12 +00001992 (or count py-indent-offset)))
1993 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001994
1995(defun py-indent-region (start end &optional indent-offset)
1996 "Reindent a region of Python code.
Barry Warsaw867a32a1996-03-07 18:30:26 +00001997
Barry Warsaw7ae77681994-12-12 20:38:05 +00001998The lines from the line containing the start of the current region up
1999to (but not including) the line containing the end of the region are
2000reindented. If the first line of the region has a non-whitespace
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002001character in the first column, the first line is left alone and the
2002rest of the region is reindented with respect to it. Else the entire
Barry Warsaw867a32a1996-03-07 18:30:26 +00002003region is reindented with respect to the (closest code or indenting
2004comment) statement immediately preceding the region.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002005
2006This is useful when code blocks are moved or yanked, when enclosing
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002007control structures are introduced or removed, or to reformat code
2008using a new value for the indentation offset.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002009
2010If a numeric prefix argument is given, it will be used as the value of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002011the indentation offset. Else the value of `py-indent-offset' will be
Barry Warsaw7ae77681994-12-12 20:38:05 +00002012used.
2013
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002014Warning: The region must be consistently indented before this function
Barry Warsaw7ae77681994-12-12 20:38:05 +00002015is called! This function does not compute proper indentation from
2016scratch (that's impossible in Python), it merely adjusts the existing
2017indentation to be correct in context.
2018
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002019Warning: This function really has no idea what to do with
2020non-indenting comment lines, and shifts them as if they were indenting
2021comment lines. Fixing this appears to require telepathy.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002022
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002023Special cases: whitespace is deleted from blank lines; continuation
2024lines are shifted by the same amount their initial line was shifted,
2025in order to preserve their relative indentation with respect to their
Barry Warsaw7ae77681994-12-12 20:38:05 +00002026initial line; and comment lines beginning in column 1 are ignored."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002027 (interactive "*r\nP") ; region; raw prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002028 (save-excursion
2029 (goto-char end) (beginning-of-line) (setq end (point-marker))
2030 (goto-char start) (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002031 (let ((py-indent-offset (prefix-numeric-value
2032 (or indent-offset py-indent-offset)))
2033 (indents '(-1)) ; stack of active indent levels
2034 (target-column 0) ; column to which to indent
2035 (base-shifted-by 0) ; amount last base line was shifted
2036 (indent-base (if (looking-at "[ \t\n]")
Barry Warsaw7cb505c1996-10-23 20:44:59 +00002037 (py-compute-indentation t)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002038 0))
2039 ci)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002040 (while (< (point) end)
2041 (setq ci (current-indentation))
2042 ;; figure out appropriate target column
2043 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002044 ((or (eq (following-char) ?#) ; comment in column 1
2045 (looking-at "[ \t]*$")) ; entirely blank
2046 (setq target-column 0))
2047 ((py-continuation-line-p) ; shift relative to base line
2048 (setq target-column (+ ci base-shifted-by)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002049 (t ; new base line
2050 (if (> ci (car indents)) ; going deeper; push it
2051 (setq indents (cons ci indents))
2052 ;; else we should have seen this indent before
2053 (setq indents (memq ci indents)) ; pop deeper indents
2054 (if (null indents)
2055 (error "Bad indentation in region, at line %d"
2056 (save-restriction
2057 (widen)
2058 (1+ (count-lines 1 (point)))))))
2059 (setq target-column (+ indent-base
2060 (* py-indent-offset
2061 (- (length indents) 2))))
2062 (setq base-shifted-by (- target-column ci))))
2063 ;; shift as needed
2064 (if (/= ci target-column)
2065 (progn
2066 (delete-horizontal-space)
2067 (indent-to target-column)))
2068 (forward-line 1))))
2069 (set-marker end nil))
2070
Barry Warsawa7891711996-08-01 15:53:09 +00002071(defun py-comment-region (beg end &optional arg)
2072 "Like `comment-region' but uses double hash (`#') comment starter."
2073 (interactive "r\nP")
Barry Warsaw3fcaf611996-08-01 20:11:51 +00002074 (let ((comment-start py-block-comment-prefix))
Barry Warsawa7891711996-08-01 15:53:09 +00002075 (comment-region beg end arg)))
2076
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002077
2078;; Functions for moving point
Barry Warsaw7ae77681994-12-12 20:38:05 +00002079(defun py-previous-statement (count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002080 "Go to the start of the COUNTth preceding Python statement.
2081By default, goes to the previous statement. If there is no such
2082statement, goes to the first statement. Return count of statements
2083left to move. `Statements' do not include blank, comment, or
2084continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002085 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002086 (if (< count 0) (py-next-statement (- count))
2087 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002088 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002089 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002090 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002091 (> count 0)
2092 (zerop (forward-line -1))
2093 (py-goto-statement-at-or-above))
2094 (setq count (1- count)))
2095 (if (> count 0) (goto-char start)))
2096 count))
2097
2098(defun py-next-statement (count)
2099 "Go to the start of next Python statement.
2100If the statement at point is the i'th Python statement, goes to the
2101start of statement i+COUNT. If there is no such statement, goes to the
2102last statement. Returns count of statements left to move. `Statements'
2103do not include blank, comment, or continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002104 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002105 (if (< count 0) (py-previous-statement (- count))
2106 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002107 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002108 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002109 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002110 (> count 0)
2111 (py-goto-statement-below))
2112 (setq count (1- count)))
2113 (if (> count 0) (goto-char start)))
2114 count))
2115
2116(defun py-goto-block-up (&optional nomark)
2117 "Move up to start of current block.
2118Go to the statement that starts the smallest enclosing block; roughly
2119speaking, this will be the closest preceding statement that ends with a
2120colon and is indented less than the statement you started on. If
2121successful, also sets the mark to the starting point.
2122
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002123`\\[py-mark-block]' can be used afterward to mark the whole code
2124block, if desired.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002125
2126If called from a program, the mark will not be set if optional argument
2127NOMARK is not nil."
2128 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002129 (let ((start (point))
2130 (found nil)
2131 initial-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002132 (py-goto-initial-line)
2133 ;; if on blank or non-indenting comment line, use the preceding stmt
2134 (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2135 (progn
2136 (py-goto-statement-at-or-above)
2137 (setq found (py-statement-opens-block-p))))
2138 ;; search back for colon line indented less
2139 (setq initial-indent (current-indentation))
2140 (if (zerop initial-indent)
2141 ;; force fast exit
2142 (goto-char (point-min)))
2143 (while (not (or found (bobp)))
2144 (setq found
2145 (and
2146 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2147 (or (py-goto-initial-line) t) ; always true -- side effect
2148 (< (current-indentation) initial-indent)
2149 (py-statement-opens-block-p))))
2150 (if found
2151 (progn
2152 (or nomark (push-mark start))
2153 (back-to-indentation))
2154 (goto-char start)
2155 (error "Enclosing block not found"))))
2156
Barry Warsawab0e86c1998-05-19 15:31:46 +00002157(defun py-beginning-of-def-or-class (&optional class count)
2158 "Move point to start of `def' or `class'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002159
2160Searches back for the closest preceding `def'. If you supply a prefix
Barry Warsawab0e86c1998-05-19 15:31:46 +00002161arg, looks for a `class' instead. The docs below assume the `def'
2162case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002163Programmatically, if CLASS is `either', then moves to either `class'
2164or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002165
Barry Warsawab0e86c1998-05-19 15:31:46 +00002166When second optional argument is given programmatically, move to the
2167COUNTth start of `def'.
2168
2169If point is in a `def' statement already, and after the `d', simply
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002170moves point to the start of the statement.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002171
Barry Warsawab0e86c1998-05-19 15:31:46 +00002172Otherwise (i.e. when point is not in a `def' statement, or at or
2173before the `d' of a `def' statement), searches for the closest
2174preceding `def' statement, and leaves point at its start. If no such
2175statement can be found, leaves point at the start of the buffer.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002176
Barry Warsawab0e86c1998-05-19 15:31:46 +00002177Returns t iff a `def' statement is found by these rules.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002178
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002179Note that doing this command repeatedly will take you closer to the
2180start of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002181
Barry Warsaw7c29b231998-07-07 17:45:38 +00002182To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002183 (interactive "P") ; raw prefix arg
Barry Warsaw6839d3a1998-10-28 00:10:45 +00002184 (setq count (or count 1))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002185 (let ((at-or-before-p (<= (current-column) (current-indentation)))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002186 (start-of-line (goto-char (py-point 'bol)))
2187 (start-of-stmt (goto-char (py-point 'bos)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002188 (start-re (cond ((eq class 'either) "^[ \t]*\\(class\\|def\\)\\>")
2189 (class "^[ \t]*class\\>")
2190 (t "^[ \t]*def\\>")))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002191 )
2192 ;; searching backward
2193 (if (and (< 0 count)
2194 (or (/= start-of-stmt start-of-line)
2195 (not at-or-before-p)))
2196 (end-of-line))
2197 ;; search forward
2198 (if (and (> 0 count)
2199 (zerop (current-column))
2200 (looking-at start-re))
2201 (end-of-line))
Barry Warsawddc46961999-07-27 21:40:02 +00002202 (if (re-search-backward start-re nil 'move count)
2203 (goto-char (match-beginning 0)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002204
Barry Warsawab0e86c1998-05-19 15:31:46 +00002205;; Backwards compatibility
2206(defalias 'beginning-of-python-def-or-class 'py-beginning-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002207
Barry Warsawab0e86c1998-05-19 15:31:46 +00002208(defun py-end-of-def-or-class (&optional class count)
2209 "Move point beyond end of `def' or `class' body.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002210
Barry Warsawab0e86c1998-05-19 15:31:46 +00002211By default, looks for an appropriate `def'. If you supply a prefix
2212arg, looks for a `class' instead. The docs below assume the `def'
2213case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002214Programmatically, if CLASS is `either', then moves to either `class'
2215or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002216
Barry Warsawab0e86c1998-05-19 15:31:46 +00002217When second optional argument is given programmatically, move to the
2218COUNTth end of `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002219
Barry Warsawab0e86c1998-05-19 15:31:46 +00002220If point is in a `def' statement already, this is the `def' we use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002221
Barry Warsawab0e86c1998-05-19 15:31:46 +00002222Else, if the `def' found by `\\[py-beginning-of-def-or-class]'
2223contains the statement you started on, that's the `def' we use.
2224
2225Otherwise, we search forward for the closest following `def', and use that.
2226
2227If a `def' can be found by these rules, point is moved to the start of
2228the line immediately following the `def' block, and the position of the
2229start of the `def' is returned.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002230
2231Else point is moved to the end of the buffer, and nil is returned.
2232
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002233Note that doing this command repeatedly will take you closer to the
2234end of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002235
Barry Warsaw7c29b231998-07-07 17:45:38 +00002236To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002237 (interactive "P") ; raw prefix arg
Barry Warsawab0e86c1998-05-19 15:31:46 +00002238 (if (and count (/= count 1))
2239 (py-beginning-of-def-or-class (- 1 count)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002240 (let ((start (progn (py-goto-initial-line) (point)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002241 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2242 (class "class")
2243 (t "def")))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002244 (state 'not-found))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002245 ;; move point to start of appropriate def/class
2246 (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one
2247 (setq state 'at-beginning)
Barry Warsawab0e86c1998-05-19 15:31:46 +00002248 ;; else see if py-beginning-of-def-or-class hits container
2249 (if (and (py-beginning-of-def-or-class class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002250 (progn (py-goto-beyond-block)
2251 (> (point) start)))
2252 (setq state 'at-end)
2253 ;; else search forward
2254 (goto-char start)
2255 (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move)
2256 (progn (setq state 'at-beginning)
2257 (beginning-of-line)))))
2258 (cond
2259 ((eq state 'at-beginning) (py-goto-beyond-block) t)
2260 ((eq state 'at-end) t)
2261 ((eq state 'not-found) nil)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002262 (t (error "Internal error in `py-end-of-def-or-class'")))))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002263
2264;; Backwards compabitility
Barry Warsaw820273d1998-05-19 15:54:45 +00002265(defalias 'end-of-python-def-or-class 'py-end-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002266
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002267
2268;; Functions for marking regions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002269(defun py-mark-block (&optional extend just-move)
2270 "Mark following block of lines. With prefix arg, mark structure.
2271Easier to use than explain. It sets the region to an `interesting'
2272block of succeeding lines. If point is on a blank line, it goes down to
2273the next non-blank line. That will be the start of the region. The end
2274of the region depends on the kind of line at the start:
2275
2276 - If a comment, the region will include all succeeding comment lines up
2277 to (but not including) the next non-comment line (if any).
2278
2279 - Else if a prefix arg is given, and the line begins one of these
2280 structures:
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002281
2282 if elif else try except finally for while def class
2283
Barry Warsaw7ae77681994-12-12 20:38:05 +00002284 the region will be set to the body of the structure, including
2285 following blocks that `belong' to it, but excluding trailing blank
2286 and comment lines. E.g., if on a `try' statement, the `try' block
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002287 and all (if any) of the following `except' and `finally' blocks
2288 that belong to the `try' structure will be in the region. Ditto
2289 for if/elif/else, for/else and while/else structures, and (a bit
2290 degenerate, since they're always one-block structures) def and
2291 class blocks.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002292
2293 - Else if no prefix argument is given, and the line begins a Python
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002294 block (see list above), and the block is not a `one-liner' (i.e.,
2295 the statement ends with a colon, not with code), the region will
2296 include all succeeding lines up to (but not including) the next
2297 code statement (if any) that's indented no more than the starting
2298 line, except that trailing blank and comment lines are excluded.
2299 E.g., if the starting line begins a multi-statement `def'
2300 structure, the region will be set to the full function definition,
2301 but without any trailing `noise' lines.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002302
2303 - Else the region will include all succeeding lines up to (but not
2304 including) the next blank line, or code or indenting-comment line
2305 indented strictly less than the starting line. Trailing indenting
2306 comment lines are included in this case, but not trailing blank
2307 lines.
2308
2309A msg identifying the location of the mark is displayed in the echo
2310area; or do `\\[exchange-point-and-mark]' to flip down to the end.
2311
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002312If called from a program, optional argument EXTEND plays the role of
2313the prefix arg, and if optional argument JUST-MOVE is not nil, just
2314moves to the end of the block (& does not set mark or display a msg)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002315 (interactive "P") ; raw prefix arg
2316 (py-goto-initial-line)
2317 ;; skip over blank lines
2318 (while (and
2319 (looking-at "[ \t]*$") ; while blank line
2320 (not (eobp))) ; & somewhere to go
2321 (forward-line 1))
2322 (if (eobp)
2323 (error "Hit end of buffer without finding a non-blank stmt"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002324 (let ((initial-pos (point))
2325 (initial-indent (current-indentation))
2326 last-pos ; position of last stmt in region
2327 (followers
2328 '((if elif else) (elif elif else) (else)
2329 (try except finally) (except except) (finally)
2330 (for else) (while else)
2331 (def) (class) ) )
2332 first-symbol next-symbol)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002333
2334 (cond
2335 ;; if comment line, suck up the following comment lines
2336 ((looking-at "[ \t]*#")
2337 (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment
2338 (re-search-backward "^[ \t]*#") ; and back to last comment in block
2339 (setq last-pos (point)))
2340
2341 ;; else if line is a block line and EXTEND given, suck up
2342 ;; the whole structure
2343 ((and extend
2344 (setq first-symbol (py-suck-up-first-keyword) )
2345 (assq first-symbol followers))
2346 (while (and
2347 (or (py-goto-beyond-block) t) ; side effect
2348 (forward-line -1) ; side effect
2349 (setq last-pos (point)) ; side effect
2350 (py-goto-statement-below)
2351 (= (current-indentation) initial-indent)
2352 (setq next-symbol (py-suck-up-first-keyword))
2353 (memq next-symbol (cdr (assq first-symbol followers))))
2354 (setq first-symbol next-symbol)))
2355
2356 ;; else if line *opens* a block, search for next stmt indented <=
2357 ((py-statement-opens-block-p)
2358 (while (and
2359 (setq last-pos (point)) ; always true -- side effect
2360 (py-goto-statement-below)
2361 (> (current-indentation) initial-indent))
2362 nil))
2363
2364 ;; else plain code line; stop at next blank line, or stmt or
2365 ;; indenting comment line indented <
2366 (t
2367 (while (and
2368 (setq last-pos (point)) ; always true -- side effect
2369 (or (py-goto-beyond-final-line) t)
2370 (not (looking-at "[ \t]*$")) ; stop at blank line
2371 (or
2372 (>= (current-indentation) initial-indent)
2373 (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting #
2374 nil)))
2375
2376 ;; skip to end of last stmt
2377 (goto-char last-pos)
2378 (py-goto-beyond-final-line)
2379
2380 ;; set mark & display
2381 (if just-move
2382 () ; just return
2383 (push-mark (point) 'no-msg)
2384 (forward-line -1)
2385 (message "Mark set after: %s" (py-suck-up-leading-text))
2386 (goto-char initial-pos))))
2387
Barry Warsaw2518c671997-11-05 00:51:08 +00002388(defun py-mark-def-or-class (&optional class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002389 "Set region to body of def (or class, with prefix arg) enclosing point.
2390Pushes the current mark, then point, on the mark ring (all language
2391modes do this, but although it's handy it's never documented ...).
2392
2393In most Emacs language modes, this function bears at least a
Barry Warsawab0e86c1998-05-19 15:31:46 +00002394hallucinogenic resemblance to `\\[py-end-of-def-or-class]' and
2395`\\[py-beginning-of-def-or-class]'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002396
2397And in earlier versions of Python mode, all 3 were tightly connected.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002398Turned out that was more confusing than useful: the `goto start' and
2399`goto end' commands are usually used to search through a file, and
2400people expect them to act a lot like `search backward' and `search
2401forward' string-search commands. But because Python `def' and `class'
2402can nest to arbitrary levels, finding the smallest def containing
2403point cannot be done via a simple backward search: the def containing
2404point may not be the closest preceding def, or even the closest
2405preceding def that's indented less. The fancy algorithm required is
2406appropriate for the usual uses of this `mark' command, but not for the
2407`goto' variations.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002408
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002409So the def marked by this command may not be the one either of the
2410`goto' commands find: If point is on a blank or non-indenting comment
2411line, moves back to start of the closest preceding code statement or
2412indenting comment line. If this is a `def' statement, that's the def
2413we use. Else searches for the smallest enclosing `def' block and uses
2414that. Else signals an error.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002415
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002416When an enclosing def is found: The mark is left immediately beyond
2417the last line of the def block. Point is left at the start of the
2418def, except that: if the def is preceded by a number of comment lines
2419followed by (at most) one optional blank line, point is left at the
2420start of the comments; else if the def is preceded by a blank line,
2421point is left at its start.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002422
2423The intent is to mark the containing def/class and its associated
2424documentation, to make moving and duplicating functions and classes
2425pleasant."
2426 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002427 (let ((start (point))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002428 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2429 (class "class")
2430 (t "def"))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002431 (push-mark start)
2432 (if (not (py-go-up-tree-to-keyword which))
2433 (progn (goto-char start)
Barry Warsaw7c29b231998-07-07 17:45:38 +00002434 (error "Enclosing %s not found"
2435 (if (eq class 'either)
2436 "def or class"
2437 which)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002438 ;; else enclosing def/class found
2439 (setq start (point))
2440 (py-goto-beyond-block)
2441 (push-mark (point))
2442 (goto-char start)
2443 (if (zerop (forward-line -1)) ; if there is a preceding line
2444 (progn
2445 (if (looking-at "[ \t]*$") ; it's blank
2446 (setq start (point)) ; so reset start point
2447 (goto-char start)) ; else try again
2448 (if (zerop (forward-line -1))
2449 (if (looking-at "[ \t]*#") ; a comment
2450 ;; look back for non-comment line
2451 ;; tricky: note that the regexp matches a blank
2452 ;; line, cuz \n is in the 2nd character class
2453 (and
2454 (re-search-backward "^[ \t]*[^ \t#]" nil 'move)
2455 (forward-line 1))
2456 ;; no comment, so go back
Barry Warsaw4da6bd51997-11-26 06:00:26 +00002457 (goto-char start)))))))
2458 (exchange-point-and-mark)
2459 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002460
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002461;; ripped from cc-mode
2462(defun py-forward-into-nomenclature (&optional arg)
2463 "Move forward to end of a nomenclature section or word.
Barry Warsaw41a05c71998-08-10 16:33:12 +00002464With \\[universal-argument] (programmatically, optional argument ARG),
2465do it that many times.
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002466
2467A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2468 (interactive "p")
2469 (let ((case-fold-search nil))
2470 (if (> arg 0)
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002471 (re-search-forward
2472 "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)"
2473 (point-max) t arg)
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002474 (while (and (< arg 0)
2475 (re-search-backward
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002476 "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+"
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002477 (point-min) 0))
2478 (forward-char 1)
2479 (setq arg (1+ arg)))))
2480 (py-keep-region-active))
2481
2482(defun py-backward-into-nomenclature (&optional arg)
2483 "Move backward to beginning of a nomenclature section or word.
2484With optional ARG, move that many times. If ARG is negative, move
2485forward.
2486
2487A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2488 (interactive "p")
2489 (py-forward-into-nomenclature (- arg))
2490 (py-keep-region-active))
2491
2492
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002493
2494;; Documentation functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002495
2496;; dump the long form of the mode blurb; does the usual doc escapes,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002497;; plus lines of the form ^[vc]:name$ to suck variable & command docs
2498;; out of the right places, along with the keys they're on & current
2499;; values
Barry Warsaw7ae77681994-12-12 20:38:05 +00002500(defun py-dump-help-string (str)
2501 (with-output-to-temp-buffer "*Help*"
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002502 (let ((locals (buffer-local-variables))
2503 funckind funcname func funcdoc
2504 (start 0) mstart end
2505 keys )
Barry Warsaw7ae77681994-12-12 20:38:05 +00002506 (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start)
2507 (setq mstart (match-beginning 0) end (match-end 0)
2508 funckind (substring str (match-beginning 1) (match-end 1))
2509 funcname (substring str (match-beginning 2) (match-end 2))
2510 func (intern funcname))
2511 (princ (substitute-command-keys (substring str start mstart)))
2512 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002513 ((equal funckind "c") ; command
2514 (setq funcdoc (documentation func)
2515 keys (concat
2516 "Key(s): "
2517 (mapconcat 'key-description
2518 (where-is-internal func py-mode-map)
2519 ", "))))
2520 ((equal funckind "v") ; variable
Barry Warsaw604cefa1996-09-03 18:17:04 +00002521 (setq funcdoc (documentation-property func 'variable-documentation)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002522 keys (if (assq func locals)
2523 (concat
2524 "Local/Global values: "
2525 (prin1-to-string (symbol-value func))
2526 " / "
2527 (prin1-to-string (default-value func)))
2528 (concat
2529 "Value: "
2530 (prin1-to-string (symbol-value func))))))
2531 (t ; unexpected
2532 (error "Error in py-dump-help-string, tag `%s'" funckind)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002533 (princ (format "\n-> %s:\t%s\t%s\n\n"
2534 (if (equal funckind "c") "Command" "Variable")
2535 funcname keys))
2536 (princ funcdoc)
2537 (terpri)
2538 (setq start end))
2539 (princ (substitute-command-keys (substring str start))))
2540 (print-help-return-message)))
2541
2542(defun py-describe-mode ()
2543 "Dump long form of Python-mode docs."
2544 (interactive)
2545 (py-dump-help-string "Major mode for editing Python files.
2546Knows about Python indentation, tokens, comments and continuation lines.
2547Paragraphs are separated by blank lines only.
2548
2549Major sections below begin with the string `@'; specific function and
2550variable docs begin with `->'.
2551
2552@EXECUTING PYTHON CODE
2553
Barry Warsaw820273d1998-05-19 15:54:45 +00002554\\[py-execute-import-or-reload]\timports or reloads the file in the Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002555\\[py-execute-buffer]\tsends the entire buffer to the Python interpreter
2556\\[py-execute-region]\tsends the current region
Barry Warsaw820273d1998-05-19 15:54:45 +00002557\\[py-execute-def-or-class]\tsends the current function or class definition
2558\\[py-execute-string]\tsends an arbitrary string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002559\\[py-shell]\tstarts a Python interpreter window; this will be used by
Barry Warsaw820273d1998-05-19 15:54:45 +00002560\tsubsequent Python execution commands
2561%c:py-execute-import-or-reload
Barry Warsaw7ae77681994-12-12 20:38:05 +00002562%c:py-execute-buffer
2563%c:py-execute-region
Barry Warsaw820273d1998-05-19 15:54:45 +00002564%c:py-execute-def-or-class
2565%c:py-execute-string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002566%c:py-shell
2567
2568@VARIABLES
2569
2570py-indent-offset\tindentation increment
Barry Warsaw42f707f1996-07-29 21:05:05 +00002571py-block-comment-prefix\tcomment string used by comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002572
2573py-python-command\tshell command to invoke Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002574py-temp-directory\tdirectory used for temp files (if needed)
2575
2576py-beep-if-tab-change\tring the bell if tab-width is changed
2577%v:py-indent-offset
2578%v:py-block-comment-prefix
2579%v:py-python-command
Barry Warsaw7ae77681994-12-12 20:38:05 +00002580%v:py-temp-directory
2581%v:py-beep-if-tab-change
2582
2583@KINDS OF LINES
2584
2585Each physical line in the file is either a `continuation line' (the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002586preceding line ends with a backslash that's not part of a comment, or
2587the paren/bracket/brace nesting level at the start of the line is
2588non-zero, or both) or an `initial line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002589
2590An initial line is in turn a `blank line' (contains nothing except
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002591possibly blanks or tabs), a `comment line' (leftmost non-blank
2592character is `#'), or a `code line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002593
2594Comment Lines
2595
2596Although all comment lines are treated alike by Python, Python mode
2597recognizes two kinds that act differently with respect to indentation.
2598
2599An `indenting comment line' is a comment line with a blank, tab or
2600nothing after the initial `#'. The indentation commands (see below)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002601treat these exactly as if they were code lines: a line following an
Barry Warsaw7ae77681994-12-12 20:38:05 +00002602indenting comment line will be indented like the comment line. All
2603other comment lines (those with a non-whitespace character immediately
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002604following the initial `#') are `non-indenting comment lines', and
2605their indentation is ignored by the indentation commands.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002606
2607Indenting comment lines are by far the usual case, and should be used
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002608whenever possible. Non-indenting comment lines are useful in cases
2609like these:
Barry Warsaw7ae77681994-12-12 20:38:05 +00002610
2611\ta = b # a very wordy single-line comment that ends up being
2612\t #... continued onto another line
2613
2614\tif a == b:
2615##\t\tprint 'panic!' # old code we've `commented out'
2616\t\treturn a
2617
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002618Since the `#...' and `##' comment lines have a non-whitespace
2619character following the initial `#', Python mode ignores them when
2620computing the proper indentation for the next line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002621
2622Continuation Lines and Statements
2623
2624The Python-mode commands generally work on statements instead of on
2625individual lines, where a `statement' is a comment or blank line, or a
2626code line and all of its following continuation lines (if any)
2627considered as a single logical unit. The commands in this mode
2628generally (when it makes sense) automatically move to the start of the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002629statement containing point, even if point happens to be in the middle
2630of some continuation line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002631
2632
2633@INDENTATION
2634
2635Primarily for entering new code:
2636\t\\[indent-for-tab-command]\t indent line appropriately
2637\t\\[py-newline-and-indent]\t insert newline, then indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00002638\t\\[py-electric-backspace]\t reduce indentation, or delete single character
Barry Warsaw7ae77681994-12-12 20:38:05 +00002639
2640Primarily for reindenting existing code:
2641\t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally
2642\t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally
2643
2644\t\\[py-indent-region]\t reindent region to match its context
2645\t\\[py-shift-region-left]\t shift region left by py-indent-offset
2646\t\\[py-shift-region-right]\t shift region right by py-indent-offset
2647
2648Unlike most programming languages, Python uses indentation, and only
2649indentation, to specify block structure. Hence the indentation supplied
2650automatically by Python-mode is just an educated guess: only you know
2651the block structure you intend, so only you can supply correct
2652indentation.
2653
2654The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on
2655the indentation of preceding statements. E.g., assuming
2656py-indent-offset is 4, after you enter
2657\tif a > 0: \\[py-newline-and-indent]
2658the cursor will be moved to the position of the `_' (_ is not a
2659character in the file, it's just used here to indicate the location of
2660the cursor):
2661\tif a > 0:
2662\t _
2663If you then enter `c = d' \\[py-newline-and-indent], the cursor will move
2664to
2665\tif a > 0:
2666\t c = d
2667\t _
2668Python-mode cannot know whether that's what you intended, or whether
2669\tif a > 0:
2670\t c = d
2671\t_
2672was your intent. In general, Python-mode either reproduces the
2673indentation of the (closest code or indenting-comment) preceding
2674statement, or adds an extra py-indent-offset blanks if the preceding
2675statement has `:' as its last significant (non-whitespace and non-
2676comment) character. If the suggested indentation is too much, use
Barry Warsaw27ee1151997-12-03 05:03:44 +00002677\\[py-electric-backspace] to reduce it.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002678
2679Continuation lines are given extra indentation. If you don't like the
2680suggested indentation, change it to something you do like, and Python-
2681mode will strive to indent later lines of the statement in the same way.
2682
2683If a line is a continuation line by virtue of being in an unclosed
2684paren/bracket/brace structure (`list', for short), the suggested
2685indentation depends on whether the current line contains the first item
2686in the list. If it does, it's indented py-indent-offset columns beyond
2687the indentation of the line containing the open bracket. If you don't
2688like that, change it by hand. The remaining items in the list will mimic
2689whatever indentation you give to the first item.
2690
2691If a line is a continuation line because the line preceding it ends with
2692a backslash, the third and following lines of the statement inherit their
2693indentation from the line preceding them. The indentation of the second
2694line in the statement depends on the form of the first (base) line: if
2695the base line is an assignment statement with anything more interesting
2696than the backslash following the leftmost assigning `=', the second line
2697is indented two columns beyond that `='. Else it's indented to two
2698columns beyond the leftmost solid chunk of non-whitespace characters on
2699the base line.
2700
2701Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command]
2702repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block
2703structure you intend.
2704%c:indent-for-tab-command
2705%c:py-newline-and-indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00002706%c:py-electric-backspace
Barry Warsaw7ae77681994-12-12 20:38:05 +00002707
2708
2709The next function may be handy when editing code you didn't write:
2710%c:py-guess-indent-offset
2711
2712
2713The remaining `indent' functions apply to a region of Python code. They
2714assume the block structure (equals indentation, in Python) of the region
2715is correct, and alter the indentation in various ways while preserving
2716the block structure:
2717%c:py-indent-region
2718%c:py-shift-region-left
2719%c:py-shift-region-right
2720
2721@MARKING & MANIPULATING REGIONS OF CODE
2722
2723\\[py-mark-block]\t mark block of lines
Barry Warsaw2518c671997-11-05 00:51:08 +00002724\\[py-mark-def-or-class]\t mark smallest enclosing def
2725\\[universal-argument] \\[py-mark-def-or-class]\t mark smallest enclosing class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002726\\[comment-region]\t comment out region of code
2727\\[universal-argument] \\[comment-region]\t uncomment region of code
Barry Warsaw7ae77681994-12-12 20:38:05 +00002728%c:py-mark-block
Barry Warsaw2518c671997-11-05 00:51:08 +00002729%c:py-mark-def-or-class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002730%c:comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002731
2732@MOVING POINT
2733
2734\\[py-previous-statement]\t move to statement preceding point
2735\\[py-next-statement]\t move to statement following point
2736\\[py-goto-block-up]\t move up to start of current block
Barry Warsawab0e86c1998-05-19 15:31:46 +00002737\\[py-beginning-of-def-or-class]\t move to start of def
2738\\[universal-argument] \\[py-beginning-of-def-or-class]\t move to start of class
2739\\[py-end-of-def-or-class]\t move to end of def
2740\\[universal-argument] \\[py-end-of-def-or-class]\t move to end of class
Barry Warsaw7ae77681994-12-12 20:38:05 +00002741
2742The first two move to one statement beyond the statement that contains
2743point. A numeric prefix argument tells them to move that many
2744statements instead. Blank lines, comment lines, and continuation lines
2745do not count as `statements' for these commands. So, e.g., you can go
2746to the first code statement in a file by entering
2747\t\\[beginning-of-buffer]\t to move to the top of the file
2748\t\\[py-next-statement]\t to skip over initial comments and blank lines
2749Or do `\\[py-previous-statement]' with a huge prefix argument.
2750%c:py-previous-statement
2751%c:py-next-statement
2752%c:py-goto-block-up
Barry Warsawab0e86c1998-05-19 15:31:46 +00002753%c:py-beginning-of-def-or-class
2754%c:py-end-of-def-or-class
Barry Warsaw7ae77681994-12-12 20:38:05 +00002755
2756@LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE
2757
2758`\\[indent-new-comment-line]' is handy for entering a multi-line comment.
2759
2760`\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the
2761overall class and def structure of a module.
2762
2763`\\[back-to-indentation]' moves point to a line's first non-blank character.
2764
2765`\\[indent-relative]' is handy for creating odd indentation.
2766
2767@OTHER EMACS HINTS
2768
2769If you don't like the default value of a variable, change its value to
2770whatever you do like by putting a `setq' line in your .emacs file.
2771E.g., to set the indentation increment to 4, put this line in your
2772.emacs:
2773\t(setq py-indent-offset 4)
2774To see the value of a variable, do `\\[describe-variable]' and enter the variable
2775name at the prompt.
2776
2777When entering a key sequence like `C-c C-n', it is not necessary to
2778release the CONTROL key after doing the `C-c' part -- it suffices to
2779press the CONTROL key, press and release `c' (while still holding down
2780CONTROL), press and release `n' (while still holding down CONTROL), &
2781then release CONTROL.
2782
2783Entering Python mode calls with no arguments the value of the variable
2784`python-mode-hook', if that value exists and is not nil; for backward
2785compatibility it also tries `py-mode-hook'; see the `Hooks' section of
2786the Elisp manual for details.
2787
2788Obscure: When python-mode is first loaded, it looks for all bindings
2789to newline-and-indent in the global keymap, and shadows them with
2790local bindings to py-newline-and-indent."))
2791
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002792
2793;; Helper functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002794(defvar py-parse-state-re
2795 (concat
2796 "^[ \t]*\\(if\\|elif\\|else\\|while\\|def\\|class\\)\\>"
2797 "\\|"
2798 "^[^ #\t\n]"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002799
Barry Warsaw7ae77681994-12-12 20:38:05 +00002800(defun py-parse-state ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002801 "Return the parse state at point (see `parse-partial-sexp' docs)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002802 (save-excursion
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002803 (let ((here (point))
Barry Warsaw742a5111998-03-13 17:29:15 +00002804 pps done)
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002805 (while (not done)
2806 ;; back up to the first preceding line (if any; else start of
2807 ;; buffer) that begins with a popular Python keyword, or a
2808 ;; non- whitespace and non-comment character. These are good
2809 ;; places to start parsing to see whether where we started is
2810 ;; at a non-zero nesting level. It may be slow for people who
2811 ;; write huge code blocks or huge lists ... tough beans.
2812 (re-search-backward py-parse-state-re nil 'move)
2813 (beginning-of-line)
Barry Warsawf64b4051998-02-12 16:52:14 +00002814 ;; In XEmacs, we have a much better way to test for whether
2815 ;; we're in a triple-quoted string or not. Emacs does not
Barry Warsaw145ab1c1998-05-19 14:49:49 +00002816 ;; have this built-in function, which is its loss because
Barry Warsawf64b4051998-02-12 16:52:14 +00002817 ;; without scanning from the beginning of the buffer, there's
2818 ;; no accurate way to determine this otherwise.
2819 (if (not (fboundp 'buffer-syntactic-context))
2820 ;; Emacs
Barry Warsaw585f7331998-04-01 21:13:51 +00002821 (progn
2822 (save-excursion (setq pps (parse-partial-sexp (point) here)))
Barry Warsawf64b4051998-02-12 16:52:14 +00002823 ;; make sure we don't land inside a triple-quoted string
Barry Warsaw742a5111998-03-13 17:29:15 +00002824 (setq done (or (not (nth 3 pps))
Barry Warsaw53db8591999-05-24 19:57:32 +00002825 (bobp)))
2826 ;; Just go ahead and short circuit the test back to the
2827 ;; beginning of the buffer. This will be slow, but not
2828 ;; nearly as slow as looping through many
2829 ;; re-search-backwards.
2830 (if (not done)
2831 (goto-char (point-min))))
Barry Warsawf64b4051998-02-12 16:52:14 +00002832 ;; XEmacs
2833 (setq done (or (not (buffer-syntactic-context))
2834 (bobp)))
2835 (when done
2836 (setq pps (parse-partial-sexp (point) here)))
2837 ))
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002838 pps)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002839
Barry Warsaw7ae77681994-12-12 20:38:05 +00002840(defun py-nesting-level ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002841 "Return the buffer position of the last unclosed enclosing list.
2842If nesting level is zero, return nil."
Barry Warsawf64b4051998-02-12 16:52:14 +00002843 (let ((status (py-parse-state)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002844 (if (zerop (car status))
2845 nil ; not in a nest
2846 (car (cdr status))))) ; char# of open bracket
2847
Barry Warsaw7ae77681994-12-12 20:38:05 +00002848(defun py-backslash-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002849 "Return t iff preceding line ends with backslash that is not in a comment."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002850 (save-excursion
2851 (beginning-of-line)
2852 (and
2853 ;; use a cheap test first to avoid the regexp if possible
2854 ;; use 'eq' because char-after may return nil
2855 (eq (char-after (- (point) 2)) ?\\ )
2856 ;; make sure; since eq test passed, there is a preceding line
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002857 (forward-line -1) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002858 (looking-at py-continued-re))))
2859
Barry Warsaw7ae77681994-12-12 20:38:05 +00002860(defun py-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002861 "Return t iff current line is a continuation line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002862 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002863 (beginning-of-line)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002864 (or (py-backslash-continuation-line-p)
2865 (py-nesting-level))))
2866
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002867(defun py-goto-beginning-of-tqs (delim)
2868 "Go to the beginning of the triple quoted string we find ourselves in.
2869DELIM is the TQS string delimiter character we're searching backwards
2870for."
Barry Warsaw3c34bb32000-10-27 05:00:25 +00002871 (let ((skip (and delim (make-string 1 delim)))
2872 (continue t))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002873 (when skip
2874 (save-excursion
Barry Warsaw3c34bb32000-10-27 05:00:25 +00002875 (while continue
2876 (py-safe (search-backward skip))
2877 (setq continue (and (not (bobp))
2878 (= (char-before) ?\\))))
2879 (if (and (= (char-before) delim)
2880 (= (char-before (1- (point))) delim))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002881 (setq skip (make-string 3 delim))))
2882 ;; we're looking at a triple-quoted string
2883 (py-safe (search-backward skip)))))
2884
Barry Warsaw7ae77681994-12-12 20:38:05 +00002885(defun py-goto-initial-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002886 "Go to the initial line of the current statement.
2887Usually this is the line we're on, but if we're on the 2nd or
2888following lines of a continuation block, we need to go up to the first
2889line of the block."
2890 ;; Tricky: We want to avoid quadratic-time behavior for long
2891 ;; continued blocks, whether of the backslash or open-bracket
2892 ;; varieties, or a mix of the two. The following manages to do that
2893 ;; in the usual cases.
2894 ;;
2895 ;; Also, if we're sitting inside a triple quoted string, this will
2896 ;; drop us at the line that begins the string.
Barry Warsaw9ec9fbc1998-01-21 05:15:57 +00002897 (let (open-bracket-pos)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002898 (while (py-continuation-line-p)
2899 (beginning-of-line)
2900 (if (py-backslash-continuation-line-p)
2901 (while (py-backslash-continuation-line-p)
2902 (forward-line -1))
2903 ;; else zip out of nested brackets/braces/parens
2904 (while (setq open-bracket-pos (py-nesting-level))
2905 (goto-char open-bracket-pos)))))
2906 (beginning-of-line))
2907
Barry Warsaw7ae77681994-12-12 20:38:05 +00002908(defun py-goto-beyond-final-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002909 "Go to the point just beyond the fine line of the current statement.
2910Usually this is the start of the next line, but if this is a
2911multi-line statement we need to skip over the continuation lines."
2912 ;; Tricky: Again we need to be clever to avoid quadratic time
2913 ;; behavior.
2914 ;;
2915 ;; XXX: Not quite the right solution, but deals with multi-line doc
2916 ;; strings
Barry Warsaw751f4931998-05-19 16:06:21 +00002917 (if (looking-at (concat "[ \t]*\\(" py-stringlit-re "\\)"))
2918 (goto-char (match-end 0)))
2919 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +00002920 (forward-line 1)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002921 (let (state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002922 (while (and (py-continuation-line-p)
2923 (not (eobp)))
2924 ;; skip over the backslash flavor
2925 (while (and (py-backslash-continuation-line-p)
2926 (not (eobp)))
2927 (forward-line 1))
2928 ;; if in nest, zip to the end of the nest
2929 (setq state (py-parse-state))
2930 (if (and (not (zerop (car state)))
2931 (not (eobp)))
2932 (progn
Barry Warsawaffc0ca1997-11-03 16:59:38 +00002933 (parse-partial-sexp (point) (point-max) 0 nil state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002934 (forward-line 1))))))
2935
Barry Warsaw7ae77681994-12-12 20:38:05 +00002936(defun py-statement-opens-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002937 "Return t iff the current statement opens a block.
2938I.e., iff it ends with a colon that is not in a comment. Point should
2939be at the start of a statement."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002940 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002941 (let ((start (point))
2942 (finish (progn (py-goto-beyond-final-line) (1- (point))))
2943 (searching t)
2944 (answer nil)
2945 state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002946 (goto-char start)
2947 (while searching
2948 ;; look for a colon with nothing after it except whitespace, and
2949 ;; maybe a comment
2950 (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$"
2951 finish t)
2952 (if (eq (point) finish) ; note: no `else' clause; just
2953 ; keep searching if we're not at
2954 ; the end yet
2955 ;; sure looks like it opens a block -- but it might
2956 ;; be in a comment
2957 (progn
2958 (setq searching nil) ; search is done either way
2959 (setq state (parse-partial-sexp start
2960 (match-beginning 0)))
2961 (setq answer (not (nth 4 state)))))
2962 ;; search failed: couldn't find another interesting colon
2963 (setq searching nil)))
2964 answer)))
2965
Barry Warsawf831d811996-07-31 20:42:59 +00002966(defun py-statement-closes-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002967 "Return t iff the current statement closes a block.
2968I.e., if the line starts with `return', `raise', `break', `continue',
2969and `pass'. This doesn't catch embedded statements."
Barry Warsawf831d811996-07-31 20:42:59 +00002970 (let ((here (point)))
Barry Warsawa8f99ba1999-05-24 18:37:57 +00002971 (py-goto-initial-line)
Barry Warsawc0d2d511999-06-03 22:18:59 +00002972 (back-to-indentation)
Barry Warsawf831d811996-07-31 20:42:59 +00002973 (prog1
Barry Warsawaffc0ca1997-11-03 16:59:38 +00002974 (looking-at (concat py-block-closing-keywords-re "\\>"))
Barry Warsawf831d811996-07-31 20:42:59 +00002975 (goto-char here))))
2976
Barry Warsaw7ae77681994-12-12 20:38:05 +00002977(defun py-goto-beyond-block ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002978 "Go to point just beyond the final line of block begun by the current line.
2979This is the same as where `py-goto-beyond-final-line' goes unless
2980we're on colon line, in which case we go to the end of the block.
2981Assumes point is at the beginning of the line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002982 (if (py-statement-opens-block-p)
2983 (py-mark-block nil 'just-move)
2984 (py-goto-beyond-final-line)))
2985
Barry Warsaw7ae77681994-12-12 20:38:05 +00002986(defun py-goto-statement-at-or-above ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002987 "Go to the start of the first statement at or preceding point.
2988Return t if there is such a statement, otherwise nil. `Statement'
2989does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002990 (py-goto-initial-line)
2991 (if (looking-at py-blank-or-comment-re)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002992 ;; skip back over blank & comment lines
2993 ;; note: will skip a blank or comment line that happens to be
2994 ;; a continuation line too
2995 (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t)
2996 (progn (py-goto-initial-line) t)
2997 nil)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002998 t))
2999
Barry Warsaw7ae77681994-12-12 20:38:05 +00003000(defun py-goto-statement-below ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003001 "Go to start of the first statement following the statement containing point.
3002Return t if there is such a statement, otherwise nil. `Statement'
3003does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003004 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003005 (let ((start (point)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003006 (py-goto-beyond-final-line)
3007 (while (and
3008 (looking-at py-blank-or-comment-re)
3009 (not (eobp)))
3010 (forward-line 1))
3011 (if (eobp)
3012 (progn (goto-char start) nil)
3013 t)))
3014
Barry Warsaw7ae77681994-12-12 20:38:05 +00003015(defun py-go-up-tree-to-keyword (key)
Barry Warsaw41a05c71998-08-10 16:33:12 +00003016 "Go to begining of statement starting with KEY, at or preceding point.
3017
3018KEY is a regular expression describing a Python keyword. Skip blank
3019lines and non-indenting comments. If the statement found starts with
3020KEY, then stop, otherwise go back to first enclosing block starting
3021with KEY. If successful, leave point at the start of the KEY line and
3022return t. Otherwise, leav point at an undefined place and return nil."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003023 ;; skip blanks and non-indenting #
3024 (py-goto-initial-line)
3025 (while (and
3026 (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
3027 (zerop (forward-line -1))) ; go back
3028 nil)
3029 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003030 (let* ((re (concat "[ \t]*" key "\\b"))
3031 (case-fold-search nil) ; let* so looking-at sees this
3032 (found (looking-at re))
3033 (dead nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003034 (while (not (or found dead))
3035 (condition-case nil ; in case no enclosing block
3036 (py-goto-block-up 'no-mark)
3037 (error (setq dead t)))
3038 (or dead (setq found (looking-at re))))
3039 (beginning-of-line)
3040 found))
3041
Barry Warsaw7ae77681994-12-12 20:38:05 +00003042(defun py-suck-up-leading-text ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003043 "Return string in buffer from start of indentation to end of line.
3044Prefix with \"...\" if leading whitespace was skipped."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003045 (save-excursion
3046 (back-to-indentation)
3047 (concat
3048 (if (bolp) "" "...")
3049 (buffer-substring (point) (progn (end-of-line) (point))))))
3050
Barry Warsaw7ae77681994-12-12 20:38:05 +00003051(defun py-suck-up-first-keyword ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003052 "Return first keyword on the line as a Lisp symbol.
3053`Keyword' is defined (essentially) as the regular expression
3054([a-z]+). Returns nil if none was found."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003055 (let ((case-fold-search nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003056 (if (looking-at "[ \t]*\\([a-z]+\\)\\b")
3057 (intern (buffer-substring (match-beginning 1) (match-end 1)))
3058 nil)))
3059
Barry Warsawb3e81d51996-09-04 15:12:42 +00003060(defun py-current-defun ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003061 "Python value for `add-log-current-defun-function'.
3062This tells add-log.el how to find the current function/method/variable."
Barry Warsawb3e81d51996-09-04 15:12:42 +00003063 (save-excursion
3064 (if (re-search-backward py-defun-start-re nil t)
3065 (or (match-string 3)
3066 (let ((method (match-string 2)))
3067 (if (and (not (zerop (length (match-string 1))))
3068 (re-search-backward py-class-start-re nil t))
3069 (concat (match-string 1) "." method)
3070 method)))
3071 nil)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003072
3073
Barry Warsawfec75d61995-07-05 23:26:15 +00003074(defconst py-help-address "python-mode@python.org"
Barry Warsaw850437a1995-03-08 21:50:28 +00003075 "Address accepting submission of bug reports.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003076
Barry Warsaw850437a1995-03-08 21:50:28 +00003077(defun py-version ()
3078 "Echo the current version of `python-mode' in the minibuffer."
3079 (interactive)
3080 (message "Using `python-mode' version %s" py-version)
3081 (py-keep-region-active))
3082
3083;; only works under Emacs 19
3084;(eval-when-compile
3085; (require 'reporter))
3086
3087(defun py-submit-bug-report (enhancement-p)
3088 "Submit via mail a bug report on `python-mode'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00003089With \\[universal-argument] (programmatically, argument ENHANCEMENT-P
3090non-nil) just submit an enhancement request."
Barry Warsaw850437a1995-03-08 21:50:28 +00003091 (interactive
3092 (list (not (y-or-n-p
Barry Warsaw41a05c71998-08-10 16:33:12 +00003093 "Is this a bug report (hit `n' to send other comments)? "))))
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003094 (let ((reporter-prompt-for-summary-p (if enhancement-p
3095 "(Very) brief summary: "
3096 t)))
Barry Warsaw850437a1995-03-08 21:50:28 +00003097 (require 'reporter)
3098 (reporter-submit-bug-report
3099 py-help-address ;address
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003100 (concat "python-mode " py-version) ;pkgname
Barry Warsaw850437a1995-03-08 21:50:28 +00003101 ;; varlist
3102 (if enhancement-p nil
3103 '(py-python-command
3104 py-indent-offset
3105 py-block-comment-prefix
Barry Warsaw850437a1995-03-08 21:50:28 +00003106 py-temp-directory
3107 py-beep-if-tab-change))
3108 nil ;pre-hooks
3109 nil ;post-hooks
3110 "Dear Barry,") ;salutation
3111 (if enhancement-p nil
3112 (set-mark (point))
3113 (insert
3114"Please replace this text with a sufficiently large code sample\n\
3115and an exact recipe so that I can reproduce your problem. Failure\n\
3116to do so may mean a greater delay in fixing your bug.\n\n")
3117 (exchange-point-and-mark)
3118 (py-keep-region-active))))
3119
3120
Barry Warsaw47384781997-11-26 05:27:45 +00003121(defun py-kill-emacs-hook ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003122 "Delete files in `py-file-queue'.
3123These are Python temporary files awaiting execution."
Barry Warsaw47384781997-11-26 05:27:45 +00003124 (mapcar #'(lambda (filename)
3125 (py-safe (delete-file filename)))
3126 py-file-queue))
3127
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003128;; arrange to kill temp files when Emacs exists
Barry Warsawc72c11c1997-08-09 06:42:08 +00003129(add-hook 'kill-emacs-hook 'py-kill-emacs-hook)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003130
3131
3132
3133(provide 'python-mode)
3134;;; python-mode.el ends here