blob: 130c6dbb04f66ab69f066c2975bf1c4920f63d39 [file] [log] [blame]
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001;;; python-mode.el --- Major mode for editing Python programs
2
3;; Copyright (C) 1992,1993,1994 Tim Peters
4
Barry Warsawf64b4051998-02-12 16:52:14 +00005;; Author: 1995-1998 Barry A. Warsaw
Barry Warsawfec75d61995-07-05 23:26:15 +00006;; 1992-1994 Tim Peters
Barry Warsawa97a3f31997-11-04 18:47:06 +00007;; Maintainer: python-mode@python.org
8;; Created: Feb 1992
9;; Keywords: python languages oop
Barry Warsaw7b0f5681995-03-08 21:33:04 +000010
Barry Warsaw38e21e71998-10-27 22:09:25 +000011(defconst py-version "$Revision$"
Barry Warsawc72c11c1997-08-09 06:42:08 +000012 "`python-mode' version number.")
13
Barry Warsawcfec3591995-03-10 15:58:16 +000014;; This software is provided as-is, without express or implied
15;; warranty. Permission to use, copy, modify, distribute or sell this
16;; software, without fee, for any purpose and by any individual or
17;; organization, is hereby granted, provided that the above copyright
18;; notice and this paragraph appear in all copies.
Barry Warsaw7b0f5681995-03-08 21:33:04 +000019
20;;; Commentary:
Barry Warsaw755c6711996-08-01 20:02:55 +000021
Barry Warsaw7b0f5681995-03-08 21:33:04 +000022;; This is a major mode for editing Python programs. It was developed
Barry Warsaw261f87d1996-08-20 19:57:34 +000023;; by Tim Peters after an original idea by Michael A. Guravage. Tim
Barry Warsawf7039e21998-08-20 22:10:46 +000024;; subsequently left the net; in 1995, Barry Warsaw inherited the mode
Barry Warsaw38e21e71998-10-27 22:09:25 +000025;; and is the current maintainer. Tim's now back but disavows all
26;; responsibility for the mode. Smart Tim :-)
Barry Warsaw7b0f5681995-03-08 21:33:04 +000027
Barry Warsaw37231521997-12-11 17:23:13 +000028;; This version of python-mode.el is no longer compatible with Emacs
Barry Warsawf7039e21998-08-20 22:10:46 +000029;; 18. I am striving to maintain compatibility with the X/Emacs 19
30;; lineage but as time goes on that becomes more and more difficult.
31;; I current recommend that you upgrade to the latest stable released
Barry Warsaw38e21e71998-10-27 22:09:25 +000032;; version of your favorite branch: Emacs 20.3 or better, or XEmacs
33;; 20.4 or better (XEmacs 21.0 is in beta testing as of this writing
34;; 27-Oct-1998 appears to work fine with this version of
35;; python-mode.el). Even Windows users should be using at least
36;; NTEmacs 20.3, and XEmacs 21.0 will work very nicely on Windows when
37;; it is released.
Barry Warsaw37231521997-12-11 17:23:13 +000038
39;; FOR MORE INFORMATION:
40
Barry Warsawf7039e21998-08-20 22:10:46 +000041;; For more information on installing python-mode.el, especially with
42;; respect to compatibility information, please see
43;;
44;; http://www.python.org/emacs/python-mode/
45;;
46;; This site also contains links to other packages that you might find
47;; useful, such as pdb interfaces, OO-Browser links, etc.
Barry Warsaw37231521997-12-11 17:23:13 +000048
49;; BUG REPORTING:
Barry Warsaw7ae77681994-12-12 20:38:05 +000050
Barry Warsawaffc0ca1997-11-03 16:59:38 +000051;; To submit bug reports, use C-c C-b. Please include a complete, but
52;; concise code sample and a recipe for reproducing the bug. Send
53;; suggestions and other comments to python-mode@python.org.
54
55;; When in a Python mode buffer, do a C-h m for more help. It's
Barry Warsaw37231521997-12-11 17:23:13 +000056;; doubtful that a texinfo manual would be very useful, but if you
57;; want to contribute one, I'll certainly accept it!
Barry Warsawb5e0ecb1995-03-14 18:32:54 +000058
Barry Warsaw37231521997-12-11 17:23:13 +000059;; TO DO LIST:
60
61;; - Better integration with pdb.py and gud-mode for debugging.
Barry Warsawb5e0ecb1995-03-14 18:32:54 +000062;; - Rewrite according to GNU Emacs Lisp standards.
Barry Warsaw9e277db1996-07-31 22:33:40 +000063;; - have py-execute-region on indented code act as if the region is
Barry Warsaw37231521997-12-11 17:23:13 +000064;; left justified. Avoids syntax errors.
65;; - add a py-goto-block-down, bound to C-c C-d
Barry Warsaw7ae77681994-12-12 20:38:05 +000066
Barry Warsaw7b0f5681995-03-08 21:33:04 +000067;;; Code:
68
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +000069(require 'comint)
Barry Warsawc72c11c1997-08-09 06:42:08 +000070(require 'custom)
Barry Warsaw8529ebb1997-12-01 20:03:12 +000071(eval-when-compile
Barry Warsaw673d05f1997-12-02 21:51:57 +000072 (require 'cl)
Barry Warsawb6c1f1f1998-03-19 22:33:06 +000073 (if (not (and (condition-case nil
74 (require 'custom)
75 (error nil))
76 ;; Stock Emacs 19.34 has a broken/old Custom library
77 ;; that does more harm than good. Fortunately, it is
78 ;; missing defcustom
79 (fboundp 'defcustom)))
Barry Warsaw673d05f1997-12-02 21:51:57 +000080 (error "STOP! STOP! STOP! STOP!
81
82The Custom library was not found or is out of date. A more current
83version is required. Please download and install the latest version
84of the Custom library from:
85
86 <http://www.dina.kvl.dk/~abraham/custom/>
87
88See the Python Mode home page for details:
89
Barry Warsaw1d5f9881998-10-28 04:08:13 +000090 <http://www.python.org/emacs/python-mode>
Barry Warsaw673d05f1997-12-02 21:51:57 +000091")))
92
Barry Warsawc72c11c1997-08-09 06:42:08 +000093
Barry Warsaw7b0f5681995-03-08 21:33:04 +000094
95;; user definable variables
96;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
Barry Warsaw7ae77681994-12-12 20:38:05 +000097
Barry Warsawc72c11c1997-08-09 06:42:08 +000098(defgroup python nil
99 "Support for the Python programming language, <http://www.python.org/>"
100 :group 'languages)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000101
Barry Warsawc72c11c1997-08-09 06:42:08 +0000102(defcustom py-python-command "python"
103 "*Shell command used to start Python interpreter."
104 :type 'string
105 :group 'python)
106
Barry Warsawa2398801998-04-09 23:28:20 +0000107(defcustom py-jpython-command "jpython"
108 "*Shell command used to start the JPython interpreter."
109 :type 'string
110 :group 'python)
111
Barry Warsawaa384fd1999-02-16 23:36:16 +0000112(defcustom py-default-interpreter 'cpython
113 "*Which Python interpreter is used by default.
114The value for this variable can be either `cpython' or `jpython'.
115
116When the value is `cpython', the variables `py-python-command' and
117`py-python-command-args' are consulted to determine the interpreter
118and arguments to use.
119
120When the value is `jpython', the variables `py-jpython-command' and
121`py-jpython-command-args' are consulted to determine the interpreter
122and arguments to use.
123
Barry Warsaw11f21561999-07-28 21:59:43 +0000124Note that this variable is consulted only the first time that a Python
125mode buffer is visited during an Emacs session. After that, use
Barry Warsawaa384fd1999-02-16 23:36:16 +0000126\\[py-toggle-shells] to change the interpreter shell."
127 :type '(choice (const :tag "Python (a.k.a. CPython)" cpython)
128 (const :tag "JPython" jpython))
129 :group 'python)
130
Barry Warsaw8f972b71998-02-05 20:45:49 +0000131(defcustom py-python-command-args '("-i")
132 "*List of string arguments to be used when starting a Python shell."
133 :type '(repeat string)
134 :group 'python)
135
Barry Warsawa2398801998-04-09 23:28:20 +0000136(defcustom py-jpython-command-args '("-i")
137 "*List of string arguments to be used when starting a JPython shell."
138 :type '(repeat string)
139 :group 'python)
140
Barry Warsawc72c11c1997-08-09 06:42:08 +0000141(defcustom py-indent-offset 4
Barry Warsaw41a05c71998-08-10 16:33:12 +0000142 "*Amount of offset per level of indentation.
143`\\[py-guess-indent-offset]' can usually guess a good value when
144you're editing someone else's Python code."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000145 :type 'integer
146 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000147
Barry Warsaw742a5111998-03-13 17:29:15 +0000148(defcustom py-smart-indentation t
149 "*Should `python-mode' try to automagically set some indentation variables?
150When this variable is non-nil, two things happen when a buffer is set
151to `python-mode':
152
Barry Warsawc0d2d511999-06-03 22:18:59 +0000153 1. `py-indent-offset' is guessed from existing code in the buffer.
Barry Warsaw639eea61998-03-16 18:12:13 +0000154 Only guessed values between 2 and 8 are considered. If a valid
Barry Warsaw742a5111998-03-13 17:29:15 +0000155 guess can't be made (perhaps because you are visiting a new
Barry Warsaw639eea61998-03-16 18:12:13 +0000156 file), then the value in `py-indent-offset' is used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000157
Barry Warsaw639eea61998-03-16 18:12:13 +0000158 2. `indent-tabs-mode' is turned off if `py-indent-offset' does not
159 equal `tab-width' (`indent-tabs-mode' is never turned on by
160 Python mode). This means that for newly written code, tabs are
161 only inserted in indentation if one tab is one indentation
162 level, otherwise only spaces are used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000163
Barry Warsaw8046bef1998-03-13 20:04:52 +0000164Note that both these settings occur *after* `python-mode-hook' is run,
165so if you want to defeat the automagic configuration, you must also
166set `py-smart-indentation' to nil in your `python-mode-hook'."
Barry Warsaw742a5111998-03-13 17:29:15 +0000167 :type 'boolean
168 :group 'python)
169
Barry Warsawc72c11c1997-08-09 06:42:08 +0000170(defcustom py-align-multiline-strings-p t
171 "*Flag describing how multi-line triple quoted strings are aligned.
Barry Warsaw095e9c61995-09-19 20:01:42 +0000172When this flag is non-nil, continuation lines are lined up under the
173preceding line's indentation. When this flag is nil, continuation
Barry Warsawc72c11c1997-08-09 06:42:08 +0000174lines are aligned to column zero."
175 :type '(choice (const :tag "Align under preceding line" t)
176 (const :tag "Align to column zero" nil))
177 :group 'python)
Barry Warsaw095e9c61995-09-19 20:01:42 +0000178
Barry Warsaw218eb751998-09-22 19:51:47 +0000179(defcustom py-block-comment-prefix "##"
Barry Warsaw867a32a1996-03-07 18:30:26 +0000180 "*String used by \\[comment-region] to comment out a block of code.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000181This should follow the convention for non-indenting comment lines so
182that the indentation commands won't get confused (i.e., the string
183should be of the form `#x...' where `x' is not a blank or a tab, and
Barry Warsaw218eb751998-09-22 19:51:47 +0000184`...' is arbitrary). However, this string should not end in whitespace."
Barry Warsawc72c11c1997-08-09 06:42:08 +0000185 :type 'string
186 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000187
Barry Warsawc72c11c1997-08-09 06:42:08 +0000188(defcustom py-honor-comment-indentation t
Barry Warsaw6d627751996-03-06 18:41:38 +0000189 "*Controls how comment lines influence subsequent indentation.
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000190
Barry Warsaw6d627751996-03-06 18:41:38 +0000191When nil, all comment lines are skipped for indentation purposes, and
Barry Warsawc72c11c1997-08-09 06:42:08 +0000192if possible, a faster algorithm is used (i.e. X/Emacs 19 and beyond).
Barry Warsaw6d627751996-03-06 18:41:38 +0000193
194When t, lines that begin with a single `#' are a hint to subsequent
195line indentation. If the previous line is such a comment line (as
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000196opposed to one that starts with `py-block-comment-prefix'), then its
Barry Warsaw6d627751996-03-06 18:41:38 +0000197indentation is used as a hint for this line's indentation. Lines that
198begin with `py-block-comment-prefix' are ignored for indentation
199purposes.
200
201When not nil or t, comment lines that begin with a `#' are used as
Barry Warsawc72c11c1997-08-09 06:42:08 +0000202indentation hints, unless the comment character is in column zero."
203 :type '(choice
204 (const :tag "Skip all comment lines (fast)" nil)
205 (const :tag "Single # `sets' indentation for next line" t)
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000206 (const :tag "Single # `sets' indentation except at column zero"
207 other)
Barry Warsawc72c11c1997-08-09 06:42:08 +0000208 )
209 :group 'python)
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000210
Barry Warsaw516b6201997-08-09 06:43:20 +0000211(defcustom py-temp-directory
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000212 (let ((ok '(lambda (x)
213 (and x
214 (setq x (expand-file-name x)) ; always true
215 (file-directory-p x)
216 (file-writable-p x)
217 x))))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000218 (or (funcall ok (getenv "TMPDIR"))
219 (funcall ok "/usr/tmp")
220 (funcall ok "/tmp")
221 (funcall ok ".")
222 (error
Barry Warsaw6c6db0a1998-02-25 16:33:56 +0000223 "Couldn't find a usable temp directory -- set `py-temp-directory'")))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000224 "*Directory used for temp files created by a *Python* process.
225By default, the first directory from this list that exists and that you
226can write into: the value (if any) of the environment variable TMPDIR,
Barry Warsawc72c11c1997-08-09 06:42:08 +0000227/usr/tmp, /tmp, or the current directory."
228 :type 'string
229 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000230
Barry Warsaw516b6201997-08-09 06:43:20 +0000231(defcustom py-beep-if-tab-change t
Barry Warsaw41a05c71998-08-10 16:33:12 +0000232 "*Ring the bell if `tab-width' is changed.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000233If a comment of the form
234
235 \t# vi:set tabsize=<number>:
236
237is found before the first code line when the file is entered, and the
238current value of (the general Emacs variable) `tab-width' does not
239equal <number>, `tab-width' is set to <number>, a message saying so is
240displayed in the echo area, and if `py-beep-if-tab-change' is non-nil
Barry Warsawc72c11c1997-08-09 06:42:08 +0000241the Emacs bell is also rung as a warning."
242 :type 'boolean
243 :group 'python)
244
Barry Warsaw9981d221997-12-03 05:25:48 +0000245(defcustom py-jump-on-exception t
246 "*Jump to innermost exception frame in *Python Output* buffer.
Barry Warsaw12c92941998-08-10 21:44:37 +0000247When this variable is non-nil and an exception occurs when running
Barry Warsaw9981d221997-12-03 05:25:48 +0000248Python code synchronously in a subprocess, jump immediately to the
Barry Warsaw12c92941998-08-10 21:44:37 +0000249source code of the innermost traceback frame."
Barry Warsaw3bfed5b1998-05-19 16:25:04 +0000250 :type 'boolean
251 :group 'python)
252
253(defcustom py-ask-about-save t
254 "If not nil, ask about which buffers to save before executing some code.
255Otherwise, all modified buffers are saved without asking."
256 :type 'boolean
257 :group 'python)
Barry Warsaw9981d221997-12-03 05:25:48 +0000258
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000259(defcustom py-backspace-function 'backward-delete-char-untabify
260 "*Function called by `py-electric-backspace' when deleting backwards."
261 :type 'function
262 :group 'python)
263
264(defcustom py-delete-function 'delete-char
265 "*Function called by `py-electric-delete' when deleting forwards."
266 :type 'function
267 :group 'python)
268
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000269(defcustom py-imenu-show-method-args-p nil
270 "*Controls echoing of arguments of functions & methods in the Imenu buffer.
271When non-nil, arguments are printed."
272 :type 'boolean
273 :group 'python)
274(make-variable-buffer-local 'py-indent-offset)
275
Barry Warsawc0ecb531998-01-20 21:43:34 +0000276;; Not customizable
277(defvar py-master-file nil
278 "If non-nil, execute the named file instead of the buffer's file.
Barry Warsaw50b3eb61998-02-25 15:57:47 +0000279The intent is to allow you to set this variable in the file's local
Barry Warsawc0ecb531998-01-20 21:43:34 +0000280variable section, e.g.:
281
282 # Local Variables:
283 # py-master-file: \"master.py\"
284 # End:
285
Barry Warsaw41a05c71998-08-10 16:33:12 +0000286so that typing \\[py-execute-buffer] in that buffer executes the named
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000287master file instead of the buffer's file. If the file name has a
288relative path, the value of variable `default-directory' for the
289buffer is prepended to come up with a file name.")
Barry Warsawc0ecb531998-01-20 21:43:34 +0000290(make-variable-buffer-local 'py-master-file)
291
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000292
Barry Warsawc72c11c1997-08-09 06:42:08 +0000293
294;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
295;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT
296
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000297(defconst py-emacs-features
298 (let (features)
299 ;; NTEmacs 19.34.6 has a broken make-temp-name; it always returns
300 ;; the same string.
301 (let ((tmp1 (make-temp-name ""))
302 (tmp2 (make-temp-name "")))
303 (if (string-equal tmp1 tmp2)
304 (push 'broken-temp-names features)))
305 ;; return the features
306 features)
Barry Warsawc12c62e1997-09-04 04:18:07 +0000307 "A list of features extant in the Emacs you are using.
Barry Warsaw6ae21ad1997-11-06 14:36:49 +0000308There are many flavors of Emacs out there, with different levels of
309support for features needed by `python-mode'.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000310
Barry Warsawfb07f401997-02-24 03:37:22 +0000311(defvar python-font-lock-keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000312 (let ((kw1 (mapconcat 'identity
313 '("and" "assert" "break" "class"
314 "continue" "def" "del" "elif"
315 "else" "except" "exec" "for"
316 "from" "global" "if" "import"
317 "in" "is" "lambda" "not"
318 "or" "pass" "print" "raise"
319 "return" "while"
320 )
321 "\\|"))
322 (kw2 (mapconcat 'identity
323 '("else:" "except:" "finally:" "try:")
324 "\\|"))
325 )
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000326 (list
Barry Warsawef3c8911997-11-05 18:55:50 +0000327 ;; keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000328 (cons (concat "\\b\\(" kw1 "\\)\\b[ \n\t(]") 1)
329 ;; block introducing keywords with immediately following colons.
330 ;; Yes "except" is in both lists.
331 (cons (concat "\\b\\(" kw2 "\\)[ \n\t(]") 1)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000332 ;; classes
333 '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
334 1 font-lock-type-face)
335 ;; functions
336 '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
337 1 font-lock-function-name-face)
338 ))
Barry Warsaw62d9d6e1996-03-06 20:32:27 +0000339 "Additional expressions to highlight in Python mode.")
Barry Warsawfb07f401997-02-24 03:37:22 +0000340(put 'python-mode 'font-lock-defaults '(python-font-lock-keywords))
341
Barry Warsawe467bfb1997-11-26 05:40:58 +0000342;; have to bind py-file-queue before installing the kill-emacs-hook
Barry Warsaw7ae77681994-12-12 20:38:05 +0000343(defvar py-file-queue nil
344 "Queue of Python temp files awaiting execution.
345Currently-active file is at the head of the list.")
346
Barry Warsawc72c11c1997-08-09 06:42:08 +0000347
348;; Constants
349
Barry Warsawc72c11c1997-08-09 06:42:08 +0000350(defconst py-stringlit-re
351 (concat
Barry Warsaw751f4931998-05-19 16:06:21 +0000352 ;; These fail if backslash-quote ends the string (not worth
353 ;; fixing?). They precede the short versions so that the first two
354 ;; quotes don't look like an empty short string.
355 ;;
356 ;; (maybe raw), long single quoted triple quoted strings (SQTQ),
357 ;; with potential embedded single quotes
358 "[rR]?'''[^']*\\(\\('[^']\\|''[^']\\)[^']*\\)*'''"
359 "\\|"
360 ;; (maybe raw), long double quoted triple quoted strings (DQTQ),
361 ;; with potential embedded double quotes
362 "[rR]?\"\"\"[^\"]*\\(\\(\"[^\"]\\|\"\"[^\"]\\)[^\"]*\\)*\"\"\""
363 "\\|"
364 "[rR]?'\\([^'\n\\]\\|\\\\.\\)*'" ; single-quoted
Barry Warsawc72c11c1997-08-09 06:42:08 +0000365 "\\|" ; or
Barry Warsaw751f4931998-05-19 16:06:21 +0000366 "[rR]?\"\\([^\"\n\\]\\|\\\\.\\)*\"" ; double-quoted
Barry Warsaw41a05c71998-08-10 16:33:12 +0000367 )
368 "Regular expression matching a Python string literal.")
Barry Warsaw751f4931998-05-19 16:06:21 +0000369
Barry Warsawc72c11c1997-08-09 06:42:08 +0000370(defconst py-continued-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000371 ;; This is tricky because a trailing backslash does not mean
372 ;; continuation if it's in a comment
Barry Warsawc72c11c1997-08-09 06:42:08 +0000373 (concat
374 "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*"
Barry Warsaw41a05c71998-08-10 16:33:12 +0000375 "\\\\$")
376 "Regular expression matching Python backslash continuation lines.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000377
Barry Warsaw41a05c71998-08-10 16:33:12 +0000378(defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)"
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000379 "Regular expression matching a blank or comment line.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000380
Barry Warsawc72c11c1997-08-09 06:42:08 +0000381(defconst py-outdent-re
382 (concat "\\(" (mapconcat 'identity
383 '("else:"
384 "except\\(\\s +.*\\)?:"
385 "finally:"
386 "elif\\s +.*:")
387 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000388 "\\)")
389 "Regular expression matching statements to be dedented one level.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000390
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000391(defconst py-block-closing-keywords-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000392 "\\(return\\|raise\\|break\\|continue\\|pass\\)"
393 "Regular expression matching keywords which typically close a block.")
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000394
Barry Warsawc72c11c1997-08-09 06:42:08 +0000395(defconst py-no-outdent-re
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000396 (concat
397 "\\("
398 (mapconcat 'identity
399 (list "try:"
400 "except\\(\\s +.*\\)?:"
401 "while\\s +.*:"
402 "for\\s +.*:"
403 "if\\s +.*:"
404 "elif\\s +.*:"
405 (concat py-block-closing-keywords-re "[ \t\n]")
406 )
407 "\\|")
Barry Warsaw41a05c71998-08-10 16:33:12 +0000408 "\\)")
409 "Regular expression matching lines not to dedent after.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000410
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000411(defconst py-defun-start-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000412 "^\\([ \t]*\\)def[ \t]+\\([a-zA-Z_0-9]+\\)\\|\\(^[a-zA-Z_0-9]+\\)[ \t]*="
413 ;; If you change this, you probably have to change py-current-defun
414 ;; as well. This is only used by py-current-defun to find the name
415 ;; for add-log.el.
Barry Warsaw71c3adb1998-08-10 16:34:33 +0000416 "Regular expression matching a function, method, or variable assignment.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000417
Barry Warsaw41a05c71998-08-10 16:33:12 +0000418(defconst py-class-start-re "^class[ \t]*\\([a-zA-Z_0-9]+\\)"
419 ;; If you change this, you probably have to change py-current-defun
420 ;; as well. This is only used by py-current-defun to find the name
421 ;; for add-log.el.
422 "Regular expression for finding a class name.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000423
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000424(defconst py-traceback-line-re
Barry Warsaw41a05c71998-08-10 16:33:12 +0000425 "[ \t]+File \"\\([^\"]+\\)\", line \\([0-9]+\\)"
426 "Regular expression that describes tracebacks.")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000427
428
429
Barry Warsawc72c11c1997-08-09 06:42:08 +0000430;; Major mode boilerplate
431
Barry Warsaw7ae77681994-12-12 20:38:05 +0000432;; define a mode-specific abbrev table for those who use such things
433(defvar python-mode-abbrev-table nil
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000434 "Abbrev table in use in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000435(define-abbrev-table 'python-mode-abbrev-table nil)
436
Barry Warsaw7ae77681994-12-12 20:38:05 +0000437(defvar python-mode-hook nil
438 "*Hook called by `python-mode'.")
439
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000440;; In previous version of python-mode.el, the hook was incorrectly
441;; called py-mode-hook, and was not defvar'd. Deprecate its use.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000442(and (fboundp 'make-obsolete-variable)
443 (make-obsolete-variable 'py-mode-hook 'python-mode-hook))
444
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000445(defvar py-mode-map ()
446 "Keymap used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000447(if py-mode-map
Barry Warsawc72c11c1997-08-09 06:42:08 +0000448 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000449 (setq py-mode-map (make-sparse-keymap))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000450 ;; electric keys
451 (define-key py-mode-map ":" 'py-electric-colon)
452 ;; indentation level modifiers
453 (define-key py-mode-map "\C-c\C-l" 'py-shift-region-left)
454 (define-key py-mode-map "\C-c\C-r" 'py-shift-region-right)
455 (define-key py-mode-map "\C-c<" 'py-shift-region-left)
456 (define-key py-mode-map "\C-c>" 'py-shift-region-right)
457 ;; subprocess commands
458 (define-key py-mode-map "\C-c\C-c" 'py-execute-buffer)
Barry Warsaw820273d1998-05-19 15:54:45 +0000459 (define-key py-mode-map "\C-c\C-m" 'py-execute-import-or-reload)
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000460 (define-key py-mode-map "\C-c\C-s" 'py-execute-string)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000461 (define-key py-mode-map "\C-c|" 'py-execute-region)
Barry Warsaw820273d1998-05-19 15:54:45 +0000462 (define-key py-mode-map "\e\C-x" 'py-execute-def-or-class)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000463 (define-key py-mode-map "\C-c!" 'py-shell)
Barry Warsawa2398801998-04-09 23:28:20 +0000464 (define-key py-mode-map "\C-c\C-t" 'py-toggle-shells)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000465 ;; Caution! Enter here at your own risk. We are trying to support
466 ;; several behaviors and it gets disgusting. :-( This logic ripped
467 ;; largely from CC Mode.
468 ;;
469 ;; In XEmacs 19, Emacs 19, and Emacs 20, we use this to bind
470 ;; backwards deletion behavior to DEL, which both Delete and
471 ;; Backspace get translated to. There's no way to separate this
472 ;; behavior in a clean way, so deal with it! Besides, it's been
473 ;; this way since the dawn of time.
474 (if (not (boundp 'delete-key-deletes-forward))
475 (define-key py-mode-map "\177" 'py-electric-backspace)
476 ;; However, XEmacs 20 actually achieved enlightenment. It is
477 ;; possible to sanely define both backward and forward deletion
478 ;; behavior under X separately (TTYs are forever beyond hope, but
479 ;; who cares? XEmacs 20 does the right thing with these too).
480 (define-key py-mode-map [delete] 'py-electric-delete)
481 (define-key py-mode-map [backspace] 'py-electric-backspace))
Barry Warsaw8c4a8de1997-11-26 20:30:33 +0000482 ;; Separate M-BS from C-M-h. The former should remain
483 ;; backward-kill-word.
484 (define-key py-mode-map [(control meta h)] 'py-mark-def-or-class)
Barry Warsaw2518c671997-11-05 00:51:08 +0000485 (define-key py-mode-map "\C-c\C-k" 'py-mark-block)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000486 ;; Miscellaneous
487 (define-key py-mode-map "\C-c:" 'py-guess-indent-offset)
488 (define-key py-mode-map "\C-c\t" 'py-indent-region)
489 (define-key py-mode-map "\C-c\C-n" 'py-next-statement)
490 (define-key py-mode-map "\C-c\C-p" 'py-previous-statement)
491 (define-key py-mode-map "\C-c\C-u" 'py-goto-block-up)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000492 (define-key py-mode-map "\C-c#" 'py-comment-region)
493 (define-key py-mode-map "\C-c?" 'py-describe-mode)
494 (define-key py-mode-map "\C-c\C-hm" 'py-describe-mode)
Barry Warsawab0e86c1998-05-19 15:31:46 +0000495 (define-key py-mode-map "\e\C-a" 'py-beginning-of-def-or-class)
496 (define-key py-mode-map "\e\C-e" 'py-end-of-def-or-class)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000497 (define-key py-mode-map "\C-c-" 'py-up-exception)
498 (define-key py-mode-map "\C-c=" 'py-down-exception)
Barry Warsawf8ddb6a1999-01-18 21:49:39 +0000499 ;; stuff that is `standard' but doesn't interface well with
500 ;; python-mode, which forces us to rebind to special commands
501 (define-key py-mode-map "\C-xnd" 'py-narrow-to-defun)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000502 ;; information
503 (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report)
504 (define-key py-mode-map "\C-c\C-v" 'py-version)
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000505 ;; shadow global bindings for newline-and-indent w/ the py- version.
506 ;; BAW - this is extremely bad form, but I'm not going to change it
507 ;; for now.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000508 (mapcar #'(lambda (key)
509 (define-key py-mode-map key 'py-newline-and-indent))
510 (where-is-internal 'newline-and-indent))
Barry Warsawf19feb81999-01-21 17:06:11 +0000511 ;; Force RET to be py-newline-and-indent even if it didn't get
512 ;; mapped by the above code. motivation: Emacs' default binding for
513 ;; RET is `newline' and C-j is `newline-and-indent'. Most Pythoneers
514 ;; expect RET to do a `py-newline-and-indent' and any Emacsers who
515 ;; dislike this are probably knowledgeable enough to do a rebind.
516 ;; However, we do *not* change C-j since many Emacsers have already
517 ;; swapped RET and C-j and they don't want C-j bound to `newline' to
518 ;; change.
519 (define-key py-mode-map "\C-m" 'py-newline-and-indent)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000520 )
521
522(defvar py-mode-output-map nil
Barry Warsaw41a05c71998-08-10 16:33:12 +0000523 "Keymap used in *Python Output* buffers.")
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000524(if py-mode-output-map
525 nil
526 (setq py-mode-output-map (make-sparse-keymap))
527 (define-key py-mode-output-map [button2] 'py-mouseto-exception)
528 (define-key py-mode-output-map "\C-c\C-c" 'py-goto-exception)
529 ;; TBD: Disable all self-inserting keys. This is bogus, we should
530 ;; really implement this as *Python Output* buffer being read-only
531 (mapcar #' (lambda (key)
532 (define-key py-mode-output-map key
533 #'(lambda () (interactive) (beep))))
534 (where-is-internal 'self-insert-command))
Barry Warsaw850437a1995-03-08 21:50:28 +0000535 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000536
Barry Warsaw6dfbe5d1998-08-20 21:51:27 +0000537(defvar py-shell-map nil
538 "Keymap used in *Python* shell buffers.")
539(if py-shell-map
540 nil
541 (setq py-shell-map (copy-keymap comint-mode-map))
542 (define-key py-shell-map [tab] 'tab-to-tab-stop)
543 (define-key py-shell-map "\C-c-" 'py-up-exception)
544 (define-key py-shell-map "\C-c=" 'py-down-exception)
545 )
546
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000547(defvar py-mode-syntax-table nil
548 "Syntax table used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000549(if py-mode-syntax-table
Barry Warsawc72c11c1997-08-09 06:42:08 +0000550 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000551 (setq py-mode-syntax-table (make-syntax-table))
Barry Warsawc72c11c1997-08-09 06:42:08 +0000552 (modify-syntax-entry ?\( "()" py-mode-syntax-table)
553 (modify-syntax-entry ?\) ")(" py-mode-syntax-table)
554 (modify-syntax-entry ?\[ "(]" py-mode-syntax-table)
555 (modify-syntax-entry ?\] ")[" py-mode-syntax-table)
556 (modify-syntax-entry ?\{ "(}" py-mode-syntax-table)
557 (modify-syntax-entry ?\} "){" py-mode-syntax-table)
558 ;; Add operator symbols misassigned in the std 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 (modify-syntax-entry ?\+ "." py-mode-syntax-table)
564 (modify-syntax-entry ?\- "." py-mode-syntax-table)
565 (modify-syntax-entry ?\/ "." py-mode-syntax-table)
566 (modify-syntax-entry ?\< "." py-mode-syntax-table)
567 (modify-syntax-entry ?\= "." py-mode-syntax-table)
568 (modify-syntax-entry ?\> "." py-mode-syntax-table)
569 (modify-syntax-entry ?\| "." py-mode-syntax-table)
570 ;; For historical reasons, underscore is word class instead of
571 ;; symbol class. GNU conventions say it should be symbol class, but
572 ;; there's a natural conflict between what major mode authors want
573 ;; and what users expect from `forward-word' and `backward-word'.
574 ;; Guido and I have hashed this out and have decided to keep
575 ;; underscore in word class. If you're tempted to change it, try
576 ;; binding M-f and M-b to py-forward-into-nomenclature and
Barry Warsawaa384fd1999-02-16 23:36:16 +0000577 ;; py-backward-into-nomenclature instead. This doesn't help in all
578 ;; situations where you'd want the different behavior
579 ;; (e.g. backward-kill-word).
Barry Warsawc72c11c1997-08-09 06:42:08 +0000580 (modify-syntax-entry ?\_ "w" py-mode-syntax-table)
581 ;; Both single quote and double quote are string delimiters
582 (modify-syntax-entry ?\' "\"" py-mode-syntax-table)
583 (modify-syntax-entry ?\" "\"" py-mode-syntax-table)
584 ;; backquote is open and close paren
585 (modify-syntax-entry ?\` "$" py-mode-syntax-table)
586 ;; comment delimiters
587 (modify-syntax-entry ?\# "<" py-mode-syntax-table)
588 (modify-syntax-entry ?\n ">" py-mode-syntax-table)
589 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000590
Barry Warsawb3e81d51996-09-04 15:12:42 +0000591
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000592
Barry Warsawbc3760b1998-09-14 16:16:18 +0000593;; Utilities
594
595(defmacro py-safe (&rest body)
596 "Safely execute BODY, return nil if an error occurred."
597 (` (condition-case nil
598 (progn (,@ body))
599 (error nil))))
600
601(defsubst py-keep-region-active ()
602 "Keep the region active in XEmacs."
603 ;; Ignore byte-compiler warnings you might see. Also note that
604 ;; FSF's Emacs 19 does it differently; its policy doesn't require us
605 ;; to take explicit action.
606 (and (boundp 'zmacs-region-stays)
607 (setq zmacs-region-stays t)))
608
609(defsubst py-point (position)
610 "Returns the value of point at certain commonly referenced POSITIONs.
611POSITION can be one of the following symbols:
612
613 bol -- beginning of line
614 eol -- end of line
615 bod -- beginning of def or class
616 eod -- end of def or class
617 bob -- beginning of buffer
618 eob -- end of buffer
619 boi -- back to indentation
620 bos -- beginning of statement
621
622This function does not modify point or mark."
623 (let ((here (point)))
624 (cond
625 ((eq position 'bol) (beginning-of-line))
626 ((eq position 'eol) (end-of-line))
627 ((eq position 'bod) (py-beginning-of-def-or-class))
628 ((eq position 'eod) (py-end-of-def-or-class))
629 ;; Kind of funny, I know, but useful for py-up-exception.
630 ((eq position 'bob) (beginning-of-buffer))
631 ((eq position 'eob) (end-of-buffer))
632 ((eq position 'boi) (back-to-indentation))
633 ((eq position 'bos) (py-goto-initial-line))
634 (t (error "Unknown buffer position requested: %s" position))
635 )
636 (prog1
637 (point)
638 (goto-char here))))
639
640(defsubst py-highlight-line (from to file line)
641 (cond
642 ((fboundp 'make-extent)
643 ;; XEmacs
644 (let ((e (make-extent from to)))
645 (set-extent-property e 'mouse-face 'highlight)
646 (set-extent-property e 'py-exc-info (cons file line))
647 (set-extent-property e 'keymap py-mode-output-map)))
648 (t
649 ;; Emacs -- Please port this!
650 )
651 ))
652
653(defun py-in-literal (&optional lim)
654 "Return non-nil if point is in a Python literal (a comment or string).
655Optional argument LIM indicates the beginning of the containing form,
656i.e. the limit on how far back to scan."
657 ;; This is the version used for non-XEmacs, which has a nicer
658 ;; interface.
659 ;;
660 ;; WARNING: Watch out for infinite recursion.
661 (let* ((lim (or lim (py-point 'bod)))
662 (state (parse-partial-sexp lim (point))))
663 (cond
664 ((nth 3 state) 'string)
665 ((nth 4 state) 'comment)
666 (t nil))))
667
668;; XEmacs has a built-in function that should make this much quicker.
669;; In this case, lim is ignored
670(defun py-fast-in-literal (&optional lim)
671 "Fast version of `py-in-literal', used only by XEmacs.
672Optional LIM is ignored."
673 ;; don't have to worry about context == 'block-comment
674 (buffer-syntactic-context))
675
676(if (fboundp 'buffer-syntactic-context)
677 (defalias 'py-in-literal 'py-fast-in-literal))
678
679
680
Barry Warsaw42f707f1996-07-29 21:05:05 +0000681;; Menu definitions, only relevent if you have the easymenu.el package
682;; (standard in the latest Emacs 19 and XEmacs 19 distributions).
Barry Warsaw5490a061996-08-06 15:43:33 +0000683(defvar py-menu nil
684 "Menu for Python Mode.
Barry Warsawc72c11c1997-08-09 06:42:08 +0000685This menu will get created automatically if you have the `easymenu'
686package. Note that the latest X/Emacs releases contain this package.")
Barry Warsaw5490a061996-08-06 15:43:33 +0000687
Barry Warsawc72c11c1997-08-09 06:42:08 +0000688(and (py-safe (require 'easymenu) t)
689 (easy-menu-define
690 py-menu py-mode-map "Python Mode menu"
691 '("Python"
692 ["Comment Out Region" py-comment-region (mark)]
693 ["Uncomment Region" (py-comment-region (point) (mark) '(4)) (mark)]
694 "-"
695 ["Mark current block" py-mark-block t]
Barry Warsaw2518c671997-11-05 00:51:08 +0000696 ["Mark current def" py-mark-def-or-class t]
697 ["Mark current class" (py-mark-def-or-class t) t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000698 "-"
699 ["Shift region left" py-shift-region-left (mark)]
700 ["Shift region right" py-shift-region-right (mark)]
701 "-"
Barry Warsaw820273d1998-05-19 15:54:45 +0000702 ["Import/reload file" py-execute-import-or-reload t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000703 ["Execute buffer" py-execute-buffer t]
704 ["Execute region" py-execute-region (mark)]
Barry Warsaw820273d1998-05-19 15:54:45 +0000705 ["Execute def or class" py-execute-def-or-class (mark)]
Barry Warsaw1d0364b1998-05-19 16:15:26 +0000706 ["Execute string" py-execute-string t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000707 ["Start interpreter..." py-shell t]
708 "-"
709 ["Go to start of block" py-goto-block-up t]
Barry Warsawab0e86c1998-05-19 15:31:46 +0000710 ["Go to start of class" (py-beginning-of-def-or-class t) t]
711 ["Move to end of class" (py-end-of-def-or-class t) t]
712 ["Move to start of def" py-beginning-of-def-or-class t]
713 ["Move to end of def" py-end-of-def-or-class t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000714 "-"
715 ["Describe mode" py-describe-mode t]
716 )))
Barry Warsaw42f707f1996-07-29 21:05:05 +0000717
Barry Warsaw81437461996-08-01 19:48:02 +0000718
719
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000720;; Imenu definitions
721(defvar py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000722 (concat ; <<classes>>
723 "\\(" ;
724 "^[ \t]*" ; newline and maybe whitespace
725 "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name
726 ; possibly multiple superclasses
Barry Warsaw3179fe01998-04-04 21:36:53 +0000727 "\\([ \t]*\\((\\([a-zA-Z0-9_,. \t\n]\\)*)\\)?\\)"
Barry Warsaw81437461996-08-01 19:48:02 +0000728 "[ \t]*:" ; and the final :
729 "\\)" ; >>classes<<
730 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000731 "Regexp for Python classes for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000732 )
733
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000734(defvar py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000735 (concat ; <<methods and functions>>
736 "\\(" ;
737 "^[ \t]*" ; new line and maybe whitespace
738 "\\(def[ \t]+" ; function definitions start with def
739 "\\([a-zA-Z0-9_]+\\)" ; name is here
740 ; function arguments...
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000741;; "[ \t]*(\\([-+/a-zA-Z0-9_=,\* \t\n.()\"'#]*\\))"
742 "[ \t]*(\\([^:#]*\\))"
Barry Warsaw81437461996-08-01 19:48:02 +0000743 "\\)" ; end of def
744 "[ \t]*:" ; and then the :
745 "\\)" ; >>methods and functions<<
746 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000747 "Regexp for Python methods/functions for use with the Imenu package."
Barry Warsaw81437461996-08-01 19:48:02 +0000748 )
749
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000750(defvar py-imenu-method-no-arg-parens '(2 8)
751 "Indices into groups of the Python regexp for use with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000752
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000753Using these values will result in smaller Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000754functions are not listed.
755
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000756See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000757information.")
758
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000759(defvar py-imenu-method-arg-parens '(2 7)
Barry Warsaw1bbc0311998-10-27 21:54:56 +0000760 "Indices into groups of the Python regexp for use with imenu.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000761Using these values will result in large Imenu lists, as arguments to
Barry Warsaw81437461996-08-01 19:48:02 +0000762functions are listed.
763
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000764See the variable `py-imenu-show-method-args-p' for more
Barry Warsaw81437461996-08-01 19:48:02 +0000765information.")
766
767;; Note that in this format, this variable can still be used with the
768;; imenu--generic-function. Otherwise, there is no real reason to have
769;; it.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000770(defvar py-imenu-generic-expression
Barry Warsaw81437461996-08-01 19:48:02 +0000771 (cons
772 (concat
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000773 py-imenu-class-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000774 "\\|" ; or...
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000775 py-imenu-method-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000776 )
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000777 py-imenu-method-no-arg-parens)
778 "Generic Python expression which may be used directly with Imenu.
Barry Warsaw81437461996-08-01 19:48:02 +0000779Used by setting the variable `imenu-generic-expression' to this value.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000780Also, see the function \\[py-imenu-create-index] for a better
781alternative for finding the index.")
Barry Warsaw81437461996-08-01 19:48:02 +0000782
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000783;; These next two variables are used when searching for the Python
Barry Warsaw81437461996-08-01 19:48:02 +0000784;; class/definitions. Just saving some time in accessing the
785;; generic-python-expression, really.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000786(defvar py-imenu-generic-regexp nil)
787(defvar py-imenu-generic-parens nil)
Barry Warsaw81437461996-08-01 19:48:02 +0000788
789
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000790(defun py-imenu-create-index-function ()
791 "Python interface function for the Imenu package.
792Finds all Python classes and functions/methods. Calls function
793\\[py-imenu-create-index-engine]. See that function for the details
794of how this works."
795 (setq py-imenu-generic-regexp (car py-imenu-generic-expression)
796 py-imenu-generic-parens (if py-imenu-show-method-args-p
797 py-imenu-method-arg-parens
798 py-imenu-method-no-arg-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000799 (goto-char (point-min))
Barry Warsaw1d5f9881998-10-28 04:08:13 +0000800 ;; Warning: When the buffer has no classes or functions, this will
801 ;; return nil, which seems proper according to the Imenu API, but
802 ;; causes an error in the XEmacs port of Imenu. Sigh.
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000803 (py-imenu-create-index-engine nil))
Barry Warsaw81437461996-08-01 19:48:02 +0000804
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000805(defun py-imenu-create-index-engine (&optional start-indent)
806 "Function for finding Imenu definitions in Python.
Barry Warsaw81437461996-08-01 19:48:02 +0000807
808Finds all definitions (classes, methods, or functions) in a Python
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000809file for the Imenu package.
Barry Warsaw81437461996-08-01 19:48:02 +0000810
811Returns a possibly nested alist of the form
812
813 (INDEX-NAME . INDEX-POSITION)
814
815The second element of the alist may be an alist, producing a nested
816list as in
817
818 (INDEX-NAME . INDEX-ALIST)
819
820This function should not be called directly, as it calls itself
821recursively and requires some setup. Rather this is the engine for
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000822the function \\[py-imenu-create-index-function].
Barry Warsaw81437461996-08-01 19:48:02 +0000823
824It works recursively by looking for all definitions at the current
825indention level. When it finds one, it adds it to the alist. If it
826finds a definition at a greater indentation level, it removes the
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000827previous definition from the alist. In its place it adds all
Barry Warsaw81437461996-08-01 19:48:02 +0000828definitions found at the next indentation level. When it finds a
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000829definition that is less indented then the current level, it returns
830the alist it has created thus far.
Barry Warsaw81437461996-08-01 19:48:02 +0000831
832The optional argument START-INDENT indicates the starting indentation
833at which to continue looking for Python classes, methods, or
834functions. If this is not supplied, the function uses the indentation
835of the first definition found."
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000836 (let (index-alist
837 sub-method-alist
Barry Warsaw81437461996-08-01 19:48:02 +0000838 looking-p
839 def-name prev-name
840 cur-indent def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000841 (class-paren (first py-imenu-generic-parens))
842 (def-paren (second py-imenu-generic-parens)))
Barry Warsaw81437461996-08-01 19:48:02 +0000843 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000844 (re-search-forward py-imenu-generic-regexp (point-max) t))
Barry Warsaw81437461996-08-01 19:48:02 +0000845 (while looking-p
846 (save-excursion
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000847 ;; used to set def-name to this value but generic-extract-name
848 ;; is new to imenu-1.14. this way it still works with
849 ;; imenu-1.11
850 ;;(imenu--generic-extract-name py-imenu-generic-parens))
Barry Warsaw81437461996-08-01 19:48:02 +0000851 (let ((cur-paren (if (match-beginning class-paren)
852 class-paren def-paren)))
853 (setq def-name
Barry Warsawc8520351997-11-26 06:14:40 +0000854 (buffer-substring-no-properties (match-beginning cur-paren)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000855 (match-end cur-paren))))
Barry Warsaw93c88cc1998-08-18 02:00:44 +0000856 (save-match-data
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000857 (py-beginning-of-def-or-class 'either))
Barry Warsaw81437461996-08-01 19:48:02 +0000858 (beginning-of-line)
859 (setq cur-indent (current-indentation)))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000860 ;; HACK: want to go to the next correct definition location. We
861 ;; explicitly list them here but it would be better to have them
862 ;; in a list.
Barry Warsaw81437461996-08-01 19:48:02 +0000863 (setq def-pos
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000864 (or (match-beginning class-paren)
865 (match-beginning def-paren)))
Barry Warsaw81437461996-08-01 19:48:02 +0000866 ;; if we don't have a starting indent level, take this one
867 (or start-indent
868 (setq start-indent cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000869 ;; if we don't have class name yet, take this one
870 (or prev-name
871 (setq prev-name def-name))
Barry Warsaw81437461996-08-01 19:48:02 +0000872 ;; what level is the next definition on? must be same, deeper
873 ;; or shallower indentation
874 (cond
875 ;; at the same indent level, add it to the list...
876 ((= start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000877 (push (cons def-name def-pos) index-alist))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000878 ;; deeper indented expression, recurse
Barry Warsaw81437461996-08-01 19:48:02 +0000879 ((< start-indent cur-indent)
Barry Warsaw81437461996-08-01 19:48:02 +0000880 ;; the point is currently on the expression we're supposed to
881 ;; start on, so go back to the last expression. The recursive
882 ;; call will find this place again and add it to the correct
883 ;; list
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000884 (re-search-backward py-imenu-generic-regexp (point-min) 'move)
885 (setq sub-method-alist (py-imenu-create-index-engine cur-indent))
Barry Warsaw81437461996-08-01 19:48:02 +0000886 (if sub-method-alist
887 ;; we put the last element on the index-alist on the start
888 ;; of the submethod alist so the user can still get to it.
889 (let ((save-elmt (pop index-alist)))
Barry Warsawc8520351997-11-26 06:14:40 +0000890 (push (cons prev-name
Barry Warsaw81437461996-08-01 19:48:02 +0000891 (cons save-elmt sub-method-alist))
892 index-alist))))
Barry Warsaw81437461996-08-01 19:48:02 +0000893 ;; found less indented expression, we're done.
894 (t
895 (setq looking-p nil)
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000896 (re-search-backward py-imenu-generic-regexp (point-min) t)))
897 ;; end-cond
Barry Warsaw81437461996-08-01 19:48:02 +0000898 (setq prev-name def-name)
899 (and looking-p
900 (setq looking-p
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000901 (re-search-forward py-imenu-generic-regexp
Barry Warsaw81437461996-08-01 19:48:02 +0000902 (point-max) 'move))))
903 (nreverse index-alist)))
904
Barry Warsaw42f707f1996-07-29 21:05:05 +0000905
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000906;;;###autoload
Barry Warsaw7ae77681994-12-12 20:38:05 +0000907(defun python-mode ()
908 "Major mode for editing Python files.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000909To submit a problem report, enter `\\[py-submit-bug-report]' from a
910`python-mode' buffer. Do `\\[py-describe-mode]' for detailed
911documentation. To see what version of `python-mode' you are running,
912enter `\\[py-version]'.
913
914This mode knows about Python indentation, tokens, comments and
915continuation lines. Paragraphs are separated by blank lines only.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000916
917COMMANDS
918\\{py-mode-map}
919VARIABLES
920
Barry Warsaw42f707f1996-07-29 21:05:05 +0000921py-indent-offset\t\tindentation increment
Barry Warsaw41a05c71998-08-10 16:33:12 +0000922py-block-comment-prefix\t\tcomment string used by `comment-region'
Barry Warsaw42f707f1996-07-29 21:05:05 +0000923py-python-command\t\tshell command to invoke Python interpreter
Barry Warsaw42f707f1996-07-29 21:05:05 +0000924py-temp-directory\t\tdirectory used for temp files (if needed)
Barry Warsaw41a05c71998-08-10 16:33:12 +0000925py-beep-if-tab-change\t\tring the bell if `tab-width' is changed"
Barry Warsaw7ae77681994-12-12 20:38:05 +0000926 (interactive)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000927 ;; set up local variables
Barry Warsaw7ae77681994-12-12 20:38:05 +0000928 (kill-all-local-variables)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000929 (make-local-variable 'font-lock-defaults)
930 (make-local-variable 'paragraph-separate)
931 (make-local-variable 'paragraph-start)
932 (make-local-variable 'require-final-newline)
933 (make-local-variable 'comment-start)
Barry Warsaw5c8bef11996-12-17 21:56:10 +0000934 (make-local-variable 'comment-end)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000935 (make-local-variable 'comment-start-skip)
936 (make-local-variable 'comment-column)
Barry Warsaw003932a1998-07-07 15:11:24 +0000937 (make-local-variable 'comment-indent-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000938 (make-local-variable 'indent-region-function)
939 (make-local-variable 'indent-line-function)
Barry Warsawb3e81d51996-09-04 15:12:42 +0000940 (make-local-variable 'add-log-current-defun-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000941 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +0000942 (set-syntax-table py-mode-syntax-table)
Barry Warsaw003932a1998-07-07 15:11:24 +0000943 (setq major-mode 'python-mode
944 mode-name "Python"
945 local-abbrev-table python-mode-abbrev-table
946 font-lock-defaults '(python-font-lock-keywords)
947 paragraph-separate "^[ \t]*$"
948 paragraph-start "^[ \t]*$"
949 require-final-newline t
950 comment-start "# "
951 comment-end ""
952 comment-start-skip "# *"
953 comment-column 40
954 comment-indent-function 'py-comment-indent-function
955 indent-region-function 'py-indent-region
956 indent-line-function 'py-indent-line
Barry Warsawb3e81d51996-09-04 15:12:42 +0000957 ;; tell add-log.el how to find the current function/method/variable
958 add-log-current-defun-function 'py-current-defun
Barry Warsawb1f89511996-09-03 16:38:30 +0000959 )
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000960 (use-local-map py-mode-map)
Barry Warsaw42f707f1996-07-29 21:05:05 +0000961 ;; add the menu
962 (if py-menu
963 (easy-menu-add py-menu))
Barry Warsaw57697af1995-09-14 20:01:14 +0000964 ;; Emacs 19 requires this
Barry Warsawc72c11c1997-08-09 06:42:08 +0000965 (if (boundp 'comment-multi-line)
Barry Warsaw57697af1995-09-14 20:01:14 +0000966 (setq comment-multi-line nil))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000967 ;; Install Imenu if available
Barry Warsaw742a5111998-03-13 17:29:15 +0000968 (when (py-safe (require 'imenu))
Barry Warsaw6839d3a1998-10-28 00:10:45 +0000969 (setq imenu-create-index-function #'py-imenu-create-index-function)
970 (setq imenu-generic-expression py-imenu-generic-expression)
Barry Warsaw742a5111998-03-13 17:29:15 +0000971 (if (fboundp 'imenu-add-to-menubar)
972 (imenu-add-to-menubar (format "%s-%s" "IM" mode-name)))
973 )
974 ;; Run the mode hook. Note that py-mode-hook is deprecated.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000975 (if python-mode-hook
976 (run-hooks 'python-mode-hook)
Barry Warsaw742a5111998-03-13 17:29:15 +0000977 (run-hooks 'py-mode-hook))
978 ;; Now do the automagical guessing
979 (if py-smart-indentation
980 (let ((offset py-indent-offset))
Barry Warsaw145ab1c1998-05-19 14:49:49 +0000981 ;; It's okay if this fails to guess a good value
Barry Warsaw742a5111998-03-13 17:29:15 +0000982 (if (and (py-safe (py-guess-indent-offset))
983 (<= py-indent-offset 8)
984 (>= py-indent-offset 2))
985 (setq offset py-indent-offset))
986 (setq py-indent-offset offset)
Barry Warsaw639eea61998-03-16 18:12:13 +0000987 ;; Only turn indent-tabs-mode off if tab-width !=
988 ;; py-indent-offset. Never turn it on, because the user must
989 ;; have explicitly turned it off.
990 (if (/= tab-width py-indent-offset)
991 (setq indent-tabs-mode nil))
Barry Warsaw11f21561999-07-28 21:59:43 +0000992 ))
993 ;; Set the default shell if not already set
994 (when (null py-which-shell)
995 (py-toggle-shells py-default-interpreter))
996 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000997
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000998
Barry Warsawb91b7431995-03-14 15:55:20 +0000999;; electric characters
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001000(defun py-outdent-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00001001 "Returns non-nil if the current line should dedent one level."
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001002 (save-excursion
1003 (and (progn (back-to-indentation)
1004 (looking-at py-outdent-re))
Barry Warsaw1a1c6bb1999-01-09 17:22:38 +00001005 ;; short circuit infloop on illegal construct
1006 (not (bobp))
Barry Warsawf06777d1998-01-21 05:36:18 +00001007 (progn (forward-line -1)
1008 (py-goto-initial-line)
1009 (back-to-indentation)
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001010 (while (or (looking-at py-blank-or-comment-re)
1011 (bobp))
1012 (backward-to-indentation 1))
1013 (not (looking-at py-no-outdent-re)))
1014 )))
1015
Barry Warsawb91b7431995-03-14 15:55:20 +00001016(defun py-electric-colon (arg)
1017 "Insert a colon.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001018In certain cases the line is dedented appropriately. If a numeric
1019argument ARG is provided, that many colons are inserted
1020non-electrically. Electric behavior is inhibited inside a string or
1021comment."
Barry Warsawb91b7431995-03-14 15:55:20 +00001022 (interactive "P")
1023 (self-insert-command (prefix-numeric-value arg))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001024 ;; are we in a string or comment?
1025 (if (save-excursion
1026 (let ((pps (parse-partial-sexp (save-excursion
Barry Warsawab0e86c1998-05-19 15:31:46 +00001027 (py-beginning-of-def-or-class)
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001028 (point))
1029 (point))))
1030 (not (or (nth 3 pps) (nth 4 pps)))))
1031 (save-excursion
1032 (let ((here (point))
1033 (outdent 0)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001034 (indent (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001035 (if (and (not arg)
1036 (py-outdent-p)
1037 (= indent (save-excursion
Barry Warsawa7661821996-08-02 16:22:43 +00001038 (py-next-statement -1)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001039 (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001040 )
1041 (setq outdent py-indent-offset))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001042 ;; Don't indent, only dedent. This assumes that any lines
1043 ;; that are already dedented relative to
1044 ;; py-compute-indentation were put there on purpose. It's
1045 ;; highly annoying to have `:' indent for you. Use TAB, C-c
1046 ;; C-l or C-c C-r to adjust. TBD: Is there a better way to
1047 ;; determine this???
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001048 (if (< (current-indentation) indent) nil
1049 (goto-char here)
1050 (beginning-of-line)
1051 (delete-horizontal-space)
1052 (indent-to (- indent outdent))
1053 )))))
Barry Warsawb91b7431995-03-14 15:55:20 +00001054
1055
Barry Warsawa97a3f31997-11-04 18:47:06 +00001056;; Python subprocess utilities and filters
1057(defun py-execute-file (proc filename)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001058 "Send to Python interpreter process PROC \"execfile('FILENAME')\".
1059Make that process's buffer visible and force display. Also make
1060comint believe the user typed this string so that
1061`kill-output-from-shell' does The Right Thing."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001062 (let ((curbuf (current-buffer))
1063 (procbuf (process-buffer proc))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001064; (comint-scroll-to-bottom-on-output t)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001065 (msg (format "## working on region in file %s...\n" filename))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001066 (cmd (format "execfile(r'%s')\n" filename)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001067 (unwind-protect
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001068 (save-excursion
Barry Warsawa97a3f31997-11-04 18:47:06 +00001069 (set-buffer procbuf)
1070 (goto-char (point-max))
1071 (move-marker (process-mark proc) (point))
1072 (funcall (process-filter proc) proc msg))
1073 (set-buffer curbuf))
1074 (process-send-string proc cmd)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001075
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001076(defun py-comint-output-filter-function (string)
1077 "Watch output for Python prompt and exec next file waiting in queue.
1078This function is appropriate for `comint-output-filter-functions'."
Barry Warsaw014e0e21998-11-17 19:24:47 +00001079 ;; TBD: this should probably use split-string
Barry Warsaw4f94c731998-09-25 19:40:10 +00001080 (when (and (or (string-equal string ">>> ")
Barry Warsaw4f94c731998-09-25 19:40:10 +00001081 (and (>= (length string) 5)
1082 (string-equal (substring string -5) "\n>>> ")))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001083 py-file-queue)
1084 (py-safe (delete-file (car py-file-queue)))
1085 (setq py-file-queue (cdr py-file-queue))
1086 (if py-file-queue
1087 (let ((pyproc (get-buffer-process (current-buffer))))
1088 (py-execute-file pyproc (car py-file-queue))))
1089 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001090
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001091(defun py-postprocess-output-buffer (buf)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001092 "Highlight exceptions found in BUF.
1093If an exception occurred return t, otherwise return nil. BUF must exist."
Barry Warsawf9b99f41998-03-26 16:08:59 +00001094 (let (line file bol err-p)
Barry Warsaw9981d221997-12-03 05:25:48 +00001095 (save-excursion
1096 (set-buffer buf)
1097 (beginning-of-buffer)
1098 (while (re-search-forward py-traceback-line-re nil t)
1099 (setq file (match-string 1)
1100 line (string-to-int (match-string 2))
1101 bol (py-point 'bol))
Barry Warsawf9b99f41998-03-26 16:08:59 +00001102 (py-highlight-line bol (py-point 'eol) file line)))
1103 (when (and py-jump-on-exception line)
1104 (beep)
1105 (py-jump-to-exception file line)
1106 (setq err-p t))
1107 err-p))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001108
Barry Warsaw9981d221997-12-03 05:25:48 +00001109
Barry Warsawa97a3f31997-11-04 18:47:06 +00001110
1111;;; Subprocess commands
1112
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001113;; only used when (memq 'broken-temp-names py-emacs-features)
1114(defvar py-serial-number 0)
1115(defvar py-exception-buffer nil)
1116(defconst py-output-buffer "*Python Output*")
Barry Warsawa2398801998-04-09 23:28:20 +00001117(make-variable-buffer-local 'py-output-buffer)
1118
1119;; for toggling between CPython and JPython
Barry Warsawaa384fd1999-02-16 23:36:16 +00001120(defvar py-which-shell nil)
Barry Warsawa2398801998-04-09 23:28:20 +00001121(defvar py-which-args py-python-command-args)
1122(defvar py-which-bufname "Python")
1123(make-variable-buffer-local 'py-which-shell)
1124(make-variable-buffer-local 'py-which-args)
1125(make-variable-buffer-local 'py-which-bufname)
1126
1127(defun py-toggle-shells (arg)
1128 "Toggles between the CPython and JPython shells.
Barry Warsaw11f21561999-07-28 21:59:43 +00001129
Barry Warsaw41a05c71998-08-10 16:33:12 +00001130With positive argument ARG (interactively \\[universal-argument]),
1131uses the CPython shell, with negative ARG uses the JPython shell, and
Barry Warsaw11f21561999-07-28 21:59:43 +00001132with a zero argument, toggles the shell.
1133
1134Programmatically, ARG can also be one of the symbols `cpython' or
1135`jpython', equivalent to positive arg and negative arg respectively."
Barry Warsawa2398801998-04-09 23:28:20 +00001136 (interactive "P")
1137 ;; default is to toggle
1138 (if (null arg)
1139 (setq arg 0))
Barry Warsaw11f21561999-07-28 21:59:43 +00001140 ;; preprocess arg
1141 (cond
1142 ((equal arg 0)
1143 ;; toggle
1144 (if (string-equal py-which-bufname "Python")
1145 (setq arg -1)
1146 (setq arg 1)))
1147 ((equal arg 'cpython) (setq arg 1))
1148 ((equal arg 'jpython) (setq arg -1)))
Barry Warsawa2398801998-04-09 23:28:20 +00001149 (let (msg)
1150 (cond
1151 ((< 0 arg)
1152 ;; set to CPython
1153 (setq py-which-shell py-python-command
1154 py-which-args py-python-command-args
1155 py-which-bufname "Python"
1156 msg "CPython"
1157 mode-name "Python"))
1158 ((> 0 arg)
1159 (setq py-which-shell py-jpython-command
1160 py-which-args py-jpython-command-args
1161 py-which-bufname "JPython"
1162 msg "JPython"
1163 mode-name "JPython"))
1164 )
Barry Warsawea609c11998-04-10 16:08:26 +00001165 (message "Using the %s shell" msg)
Barry Warsawa2398801998-04-09 23:28:20 +00001166 (setq py-output-buffer (format "*%s Output*" py-which-bufname))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001167
Barry Warsawa97a3f31997-11-04 18:47:06 +00001168;;;###autoload
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001169(defun py-shell (&optional argprompt)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001170 "Start an interactive Python interpreter in another window.
1171This is like Shell mode, except that Python is running in the window
1172instead of a shell. See the `Interactive Shell' and `Shell Mode'
1173sections of the Emacs manual for details, especially for the key
1174bindings active in the `*Python*' buffer.
1175
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001176With optional \\[universal-argument], the user is prompted for the
1177flags to pass to the Python interpreter. This has no effect when this
1178command is used to switch to an existing process, only when a new
1179process is started. If you use this, you will probably want to ensure
1180that the current arguments are retained (they will be included in the
1181prompt). This argument is ignored when this function is called
1182programmatically, or when running in Emacs 19.34 or older.
1183
Barry Warsawa2398801998-04-09 23:28:20 +00001184Note: You can toggle between using the CPython interpreter and the
1185JPython interpreter by hitting \\[py-toggle-shells]. This toggles
1186buffer local variables which control whether all your subshell
1187interactions happen to the `*JPython*' or `*Python*' buffers (the
1188latter is the name used for the CPython buffer).
1189
Barry Warsawa97a3f31997-11-04 18:47:06 +00001190Warning: Don't use an interactive Python if you change sys.ps1 or
1191sys.ps2 from their default values, or if you're running code that
1192prints `>>> ' or `... ' at the start of a line. `python-mode' can't
1193distinguish your output from Python's output, and assumes that `>>> '
1194at the start of a line is a prompt from Python. Similarly, the Emacs
1195Shell mode code assumes that both `>>> ' and `... ' at the start of a
1196line are Python prompts. Bad things can happen if you fool either
1197mode.
1198
1199Warning: If you do any editing *in* the process buffer *while* the
1200buffer is accepting output from Python, do NOT attempt to `undo' the
1201changes. Some of the output (nowhere near the parts you changed!) may
1202be lost if you do. This appears to be an Emacs bug, an unfortunate
1203interaction between undo and process filters; the same problem exists in
1204non-Python process buffers using the default (Emacs-supplied) process
1205filter."
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001206 (interactive "P")
Barry Warsaw3b4e2f01999-02-16 23:52:46 +00001207 (let ((args py-which-args))
1208 (when (and argprompt
1209 (interactive-p)
1210 (fboundp 'split-string))
1211 ;; TBD: Perhaps force "-i" in the final list?
1212 (setq args (split-string
1213 (read-string (concat py-which-bufname
1214 " arguments: ")
1215 (concat
1216 (mapconcat 'identity py-which-args " ") " ")
1217 ))))
1218 (switch-to-buffer-other-window
1219 (apply 'make-comint py-which-bufname py-which-shell nil args))
1220 (make-local-variable 'comint-prompt-regexp)
1221 (setq comint-prompt-regexp "^>>> \\|^[.][.][.] \\|^(pdb) ")
1222 (add-hook 'comint-output-filter-functions
1223 'py-comint-output-filter-function)
1224 (set-syntax-table py-mode-syntax-table)
1225 (use-local-map py-shell-map)
1226 ))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001227
Barry Warsawa97a3f31997-11-04 18:47:06 +00001228(defun py-clear-queue ()
1229 "Clear the queue of temporary files waiting to execute."
1230 (interactive)
1231 (let ((n (length py-file-queue)))
1232 (mapcar 'delete-file py-file-queue)
1233 (setq py-file-queue nil)
1234 (message "%d pending files de-queued." n)))
1235
Barry Warsaw820273d1998-05-19 15:54:45 +00001236
Barry Warsawa97a3f31997-11-04 18:47:06 +00001237(defun py-execute-region (start end &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001238 "Execute the region in a Python interpreter.
1239
Barry Warsawa97a3f31997-11-04 18:47:06 +00001240The region is first copied into a temporary file (in the directory
1241`py-temp-directory'). If there is no Python interpreter shell
1242running, this file is executed synchronously using
Barry Warsaw41a05c71998-08-10 16:33:12 +00001243`shell-command-on-region'. If the program is long running, use
1244\\[universal-argument] to run the command asynchronously in its own
1245buffer.
1246
1247When this function is used programmatically, arguments START and END
1248specify the region to execute, and optional third argument ASYNC, if
1249non-nil, specifies to run the command asynchronously in its own
1250buffer.
Barry Warsawa97a3f31997-11-04 18:47:06 +00001251
1252If the Python interpreter shell is running, the region is execfile()'d
1253in that shell. If you try to execute regions too quickly,
1254`python-mode' will queue them up and execute them one at a time when
1255it sees a `>>> ' prompt from Python. Each time this happens, the
1256process buffer is popped into a window (if it's not already in some
1257window) so you can see it, and a comment of the form
1258
1259 \t## working on region in file <name>...
1260
1261is inserted at the end. See also the command `py-clear-queue'."
1262 (interactive "r\nP")
1263 (or (< start end)
1264 (error "Region is empty"))
Barry Warsaw014e0e21998-11-17 19:24:47 +00001265 (let* ((proc (get-process py-which-bufname))
Barry Warsaw5e21cb01997-11-05 18:41:11 +00001266 (temp (if (memq 'broken-temp-names py-emacs-features)
Barry Warsaw1b344241998-08-07 22:24:16 +00001267 (let
1268 ((sn py-serial-number)
1269 (pid (and (fboundp 'emacs-pid) (emacs-pid))))
1270 (setq py-serial-number (1+ py-serial-number))
1271 (if pid
1272 (format "python-%d-%d" sn pid)
1273 (format "python-%d" sn)))
Barry Warsaw2f32fbb1998-02-25 16:45:43 +00001274 (make-temp-name "python-")))
1275 (file (expand-file-name temp py-temp-directory)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001276 (write-region start end file nil 'nomsg)
1277 (cond
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001278 ;; always run the code in its own asynchronous subprocess
Barry Warsawa97a3f31997-11-04 18:47:06 +00001279 (async
Barry Warsaw34d83171998-11-20 03:04:07 +00001280 (let* ((buf (generate-new-buffer-name py-output-buffer))
1281 ;; TBD: a horrible hack, but why create new Custom variables?
1282 (arg (if (string-equal py-which-bufname "Python")
1283 "-u" "")))
1284 (start-process py-which-bufname buf py-which-shell arg file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001285 (pop-to-buffer buf)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001286 (py-postprocess-output-buffer buf)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001287 ))
1288 ;; if the Python interpreter shell is running, queue it up for
1289 ;; execution there.
1290 (proc
1291 ;; use the existing python shell
1292 (if (not py-file-queue)
1293 (py-execute-file proc file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001294 (message "File %s queued for execution" file))
Barry Warsaw3c96f6f1998-08-20 19:44:51 +00001295 (setq py-file-queue (append py-file-queue (list file)))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001296 (setq py-exception-buffer (cons file (current-buffer))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001297 (t
Barry Warsaw34d83171998-11-20 03:04:07 +00001298 ;; TBD: a horrible hack, buy why create new Custom variables?
1299 (let ((cmd (concat py-which-shell
1300 (if (string-equal py-which-bufname "JPython")
1301 " -" ""))))
1302 ;; otherwise either run it synchronously in a subprocess
1303 (shell-command-on-region start end cmd py-output-buffer)
1304 ;; shell-command-on-region kills the output buffer if it never
1305 ;; existed and there's no output from the command
1306 (if (not (get-buffer py-output-buffer))
1307 (message "No output.")
1308 (setq py-exception-buffer (current-buffer))
1309 (let ((err-p (py-postprocess-output-buffer py-output-buffer)))
1310 (pop-to-buffer py-output-buffer)
1311 (if err-p
1312 (pop-to-buffer py-exception-buffer)))
1313 )))
Barry Warsaw512af041998-03-25 23:27:17 +00001314 )))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001315
Barry Warsaw820273d1998-05-19 15:54:45 +00001316
1317;; Code execution commands
Barry Warsawa97a3f31997-11-04 18:47:06 +00001318(defun py-execute-buffer (&optional async)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001319 "Send the contents of the buffer to a Python interpreter.
Barry Warsawc0ecb531998-01-20 21:43:34 +00001320If the file local variable `py-master-file' is non-nil, execute the
1321named file instead of the buffer's file.
1322
Barry Warsaw7ae77681994-12-12 20:38:05 +00001323If there is a *Python* process buffer it is used. If a clipping
1324restriction is in effect, only the accessible portion of the buffer is
1325sent. A trailing newline will be supplied if needed.
1326
Barry Warsaw41a05c71998-08-10 16:33:12 +00001327See the `\\[py-execute-region]' docs for an account of some
1328subtleties, including the use of the optional ASYNC argument."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001329 (interactive "P")
Barry Warsawc0ecb531998-01-20 21:43:34 +00001330 (if py-master-file
1331 (let* ((filename (expand-file-name py-master-file))
1332 (buffer (or (get-file-buffer filename)
1333 (find-file-noselect filename))))
1334 (set-buffer buffer)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001335 (py-execute-region (point-min) (point-max) async))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001336
Barry Warsaw820273d1998-05-19 15:54:45 +00001337(defun py-execute-import-or-reload (&optional async)
1338 "Import the current buffer's file in a Python interpreter.
1339
1340If the file has already been imported, then do reload instead to get
Barry Warsaw7c29b231998-07-07 17:45:38 +00001341the latest version.
1342
1343If the file's name does not end in \".py\", then do execfile instead.
1344
1345If the current buffer is not visiting a file, do `py-execute-buffer'
1346instead.
1347
1348If the file local variable `py-master-file' is non-nil, import or
1349reload the named file instead of the buffer's file. The file may be
1350saved based on the value of `py-execute-import-or-reload-save-p'.
Barry Warsaw820273d1998-05-19 15:54:45 +00001351
Barry Warsaw41a05c71998-08-10 16:33:12 +00001352See the `\\[py-execute-region]' docs for an account of some
1353subtleties, including the use of the optional ASYNC argument.
Barry Warsaw820273d1998-05-19 15:54:45 +00001354
Barry Warsaw7c29b231998-07-07 17:45:38 +00001355This may be preferable to `\\[py-execute-buffer]' because:
Barry Warsaw820273d1998-05-19 15:54:45 +00001356
1357 - Definitions stay in their module rather than appearing at top
1358 level, where they would clutter the global namespace and not affect
1359 uses of qualified names (MODULE.NAME).
1360
1361 - The Python debugger gets line number information about the functions."
1362 (interactive "P")
1363 ;; Check file local variable py-master-file
1364 (if py-master-file
1365 (let* ((filename (expand-file-name py-master-file))
1366 (buffer (or (get-file-buffer filename)
1367 (find-file-noselect filename))))
1368 (set-buffer buffer)))
1369 (let ((file (buffer-file-name (current-buffer))))
1370 (if file
1371 (progn
Barry Warsaw3bfed5b1998-05-19 16:25:04 +00001372 ;; Maybe save some buffers
1373 (save-some-buffers (not py-ask-about-save) nil)
Barry Warsaw820273d1998-05-19 15:54:45 +00001374 (py-execute-string
1375 (if (string-match "\\.py$" file)
1376 (let ((f (file-name-sans-extension
1377 (file-name-nondirectory file))))
1378 (format "if globals().has_key('%s'):\n reload(%s)\nelse:\n import %s\n"
1379 f f f))
Barry Warsaw02e5f691998-09-24 23:48:40 +00001380 (format "execfile(r'%s')\n" file))
Barry Warsaw820273d1998-05-19 15:54:45 +00001381 async))
1382 ;; else
1383 (py-execute-buffer async))))
1384
1385
1386(defun py-execute-def-or-class (&optional async)
1387 "Send the current function or class definition to a Python interpreter.
1388
1389If there is a *Python* process buffer it is used.
1390
Barry Warsaw41a05c71998-08-10 16:33:12 +00001391See the `\\[py-execute-region]' docs for an account of some
1392subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001393 (interactive "P")
1394 (save-excursion
1395 (py-mark-def-or-class)
1396 ;; mark is before point
1397 (py-execute-region (mark) (point) async)))
1398
1399
1400(defun py-execute-string (string &optional async)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001401 "Send the argument STRING to a Python interpreter.
Barry Warsaw820273d1998-05-19 15:54:45 +00001402
1403If there is a *Python* process buffer it is used.
1404
Barry Warsaw41a05c71998-08-10 16:33:12 +00001405See the `\\[py-execute-region]' docs for an account of some
1406subtleties, including the use of the optional ASYNC argument."
Barry Warsaw820273d1998-05-19 15:54:45 +00001407 (interactive "sExecute Python command: ")
1408 (save-excursion
1409 (set-buffer (get-buffer-create
1410 (generate-new-buffer-name " *Python Command*")))
1411 (insert string)
1412 (py-execute-region (point-min) (point-max) async)))
1413
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001414
1415
1416(defun py-jump-to-exception (file line)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001417 "Jump to the Python code in FILE at LINE."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001418 (let ((buffer (cond ((string-equal file "<stdin>")
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001419 (if (consp py-exception-buffer)
1420 (cdr py-exception-buffer)
1421 py-exception-buffer))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001422 ((and (consp py-exception-buffer)
1423 (string-equal file (car py-exception-buffer)))
1424 (cdr py-exception-buffer))
1425 ((py-safe (find-file-noselect file)))
1426 ;; could not figure out what file the exception
1427 ;; is pointing to, so prompt for it
1428 (t (find-file (read-file-name "Exception file: "
1429 nil
1430 file t))))))
1431 (pop-to-buffer buffer)
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001432 ;; Force Python mode
Barry Warsaw820273d1998-05-19 15:54:45 +00001433 (if (not (eq major-mode 'python-mode))
Barry Warsawebc7b7a1998-05-19 15:01:06 +00001434 (python-mode))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001435 (goto-line line)
1436 (message "Jumping to exception in file %s on line %d" file line)))
1437
1438(defun py-mouseto-exception (event)
Barry Warsaw12c92941998-08-10 21:44:37 +00001439 "Jump to the code which caused the Python exception at EVENT.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001440EVENT is usually a mouse click."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001441 (interactive "e")
1442 (cond
1443 ((fboundp 'event-point)
1444 ;; XEmacs
1445 (let* ((point (event-point event))
1446 (buffer (event-buffer event))
1447 (e (and point buffer (extent-at point buffer 'py-exc-info)))
1448 (info (and e (extent-property e 'py-exc-info))))
1449 (message "Event point: %d, info: %s" point info)
1450 (and info
1451 (py-jump-to-exception (car info) (cdr info)))
1452 ))
1453 ;; Emacs -- Please port this!
1454 ))
1455
1456(defun py-goto-exception ()
1457 "Go to the line indicated by the traceback."
1458 (interactive)
1459 (let (file line)
1460 (save-excursion
1461 (beginning-of-line)
1462 (if (looking-at py-traceback-line-re)
1463 (setq file (match-string 1)
1464 line (string-to-int (match-string 2)))))
1465 (if (not file)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001466 (error "Not on a traceback line"))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001467 (py-jump-to-exception file line)))
1468
1469(defun py-find-next-exception (start buffer searchdir errwhere)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001470 "Find the next Python exception and jump to the code that caused it.
1471START is the buffer position in BUFFER from which to begin searching
1472for an exception. SEARCHDIR is a function, either
1473`re-search-backward' or `re-search-forward' indicating the direction
1474to search. ERRWHERE is used in an error message if the limit (top or
1475bottom) of the trackback stack is encountered."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001476 (let (file line)
1477 (save-excursion
1478 (set-buffer buffer)
1479 (goto-char (py-point start))
1480 (if (funcall searchdir py-traceback-line-re nil t)
1481 (setq file (match-string 1)
1482 line (string-to-int (match-string 2)))))
1483 (if (and file line)
1484 (py-jump-to-exception file line)
1485 (error "%s of traceback" errwhere))))
1486
1487(defun py-down-exception (&optional bottom)
1488 "Go to the next line down in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001489With \\[univeral-argument] (programmatically, optional argument
1490BOTTOM), jump to the bottom (innermost) exception in the exception
1491stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001492 (interactive "P")
1493 (let* ((proc (get-process "Python"))
1494 (buffer (if proc "*Python*" py-output-buffer)))
1495 (if bottom
1496 (py-find-next-exception 'eob buffer 're-search-backward "Bottom")
1497 (py-find-next-exception 'eol buffer 're-search-forward "Bottom"))))
1498
1499(defun py-up-exception (&optional top)
1500 "Go to the previous line up in the traceback.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001501With \\[universal-argument] (programmatically, optional argument TOP)
1502jump to the top (outermost) exception in the exception stack."
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001503 (interactive "P")
1504 (let* ((proc (get-process "Python"))
1505 (buffer (if proc "*Python*" py-output-buffer)))
1506 (if top
1507 (py-find-next-exception 'bob buffer 're-search-forward "Top")
Barry Warsawffbc17d1997-11-27 20:08:14 +00001508 (py-find-next-exception 'bol buffer 're-search-backward "Top"))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001509
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001510
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001511;; Electric deletion
1512(defun py-electric-backspace (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001513 "Delete preceding character or levels of indentation.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001514Deletion is performed by calling the function in `py-backspace-function'
Barry Warsawb0539931996-12-17 22:05:07 +00001515with a single argument (the number of characters to delete).
Barry Warsaw7ae77681994-12-12 20:38:05 +00001516
Barry Warsaw41a05c71998-08-10 16:33:12 +00001517If point is at the leftmost column, delete the preceding newline.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001518
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001519Otherwise, if point is at the leftmost non-whitespace character of a
1520line that is neither a continuation line nor a non-indenting comment
1521line, or if point is at the end of a blank line, this command reduces
1522the indentation to match that of the line that opened the current
1523block of code. The line that opened the block is displayed in the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001524echo area to help you keep track of where you are. With
1525\\[universal-argument] dedents that many blocks (but not past column
1526zero).
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001527
1528Otherwise the preceding character is deleted, converting a tab to
1529spaces if needed so that only a single column position is deleted.
Barry Warsawfa2def21999-05-24 21:43:37 +00001530\\[universal-argument] specifies how many characters to delete;
1531default is 1.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001532
1533When used programmatically, argument ARG specifies the number of
1534blocks to dedent, or the number of characters to delete, as indicated
1535above."
Barry Warsaw03970731996-07-03 23:12:52 +00001536 (interactive "*p")
Barry Warsaw7ae77681994-12-12 20:38:05 +00001537 (if (or (/= (current-indentation) (current-column))
1538 (bolp)
1539 (py-continuation-line-p)
Barry Warsawfa2def21999-05-24 21:43:37 +00001540; (not py-honor-comment-indentation)
1541; (looking-at "#[^ \t\n]") ; non-indenting #
1542 )
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001543 (funcall py-backspace-function arg)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001544 ;; else indent the same as the colon line that opened the block
Barry Warsaw7ae77681994-12-12 20:38:05 +00001545 ;; force non-blank so py-goto-block-up doesn't ignore it
1546 (insert-char ?* 1)
1547 (backward-char)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001548 (let ((base-indent 0) ; indentation of base line
1549 (base-text "") ; and text of base line
1550 (base-found-p nil))
Barry Warsaw03970731996-07-03 23:12:52 +00001551 (save-excursion
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001552 (while (< 0 arg)
Barry Warsaw03970731996-07-03 23:12:52 +00001553 (condition-case nil ; in case no enclosing block
1554 (progn
1555 (py-goto-block-up 'no-mark)
1556 (setq base-indent (current-indentation)
1557 base-text (py-suck-up-leading-text)
1558 base-found-p t))
1559 (error nil))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001560 (setq arg (1- arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001561 (delete-char 1) ; toss the dummy character
1562 (delete-horizontal-space)
1563 (indent-to base-indent)
1564 (if base-found-p
1565 (message "Closes block: %s" base-text)))))
1566
Barry Warsawfc8a01f1995-03-09 16:07:29 +00001567
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001568(defun py-electric-delete (arg)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001569 "Delete preceding or following character or levels of whitespace.
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001570
1571The behavior of this function depends on the variable
1572`delete-key-deletes-forward'. If this variable is nil (or does not
Barry Warsaw41a05c71998-08-10 16:33:12 +00001573exist, as in older Emacsen and non-XEmacs versions), then this
1574function behaves identically to \\[c-electric-backspace].
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001575
1576If `delete-key-deletes-forward' is non-nil and is supported in your
1577Emacs, then deletion occurs in the forward direction, by calling the
Barry Warsaw41a05c71998-08-10 16:33:12 +00001578function in `py-delete-function'.
1579
1580\\[universal-argument] (programmatically, argument ARG) specifies the
1581number of characters to delete (default is 1)."
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001582 (interactive "*p")
Barry Warsaw1d7b0fa1999-01-15 02:12:31 +00001583 (if (or (and (fboundp 'delete-forward-p) ;XEmacs 21
1584 (delete-forward-p))
1585 (and (boundp 'delete-key-deletes-forward) ;XEmacs 20
1586 delete-key-deletes-forward))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001587 (funcall py-delete-function arg)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001588 (py-electric-backspace arg)))
1589
1590;; required for pending-del and delsel modes
1591(put 'py-electric-backspace 'delete-selection 'supersede) ;delsel
1592(put 'py-electric-backspace 'pending-delete 'supersede) ;pending-del
1593(put 'py-electric-delete 'delete-selection 'supersede) ;delsel
1594(put 'py-electric-delete 'pending-delete 'supersede) ;pending-del
1595
1596
1597
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001598(defun py-indent-line (&optional arg)
1599 "Fix the indentation of the current line according to Python rules.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001600With \\[universal-argument] (programmatically, the optional argument
1601ARG non-nil), ignore dedenting rules for block closing statements
1602(e.g. return, raise, break, continue, pass)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001603
1604This function is normally bound to `indent-line-function' so
1605\\[indent-for-tab-command] will call it."
1606 (interactive "P")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001607 (let* ((ci (current-indentation))
1608 (move-to-indentation-p (<= (current-column) ci))
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001609 (need (py-compute-indentation (not arg))))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001610 ;; see if we need to dedent
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001611 (if (py-outdent-p)
Barry Warsaw0012c1e1995-03-14 16:32:55 +00001612 (setq need (- need py-indent-offset)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001613 (if (/= ci need)
1614 (save-excursion
1615 (beginning-of-line)
1616 (delete-horizontal-space)
1617 (indent-to need)))
1618 (if move-to-indentation-p (back-to-indentation))))
1619
1620(defun py-newline-and-indent ()
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001621 "Strives to act like the Emacs `newline-and-indent'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001622This is just `strives to' because correct indentation can't be computed
1623from scratch for Python code. In general, deletes the whitespace before
1624point, inserts a newline, and takes an educated guess as to how you want
1625the new line indented."
1626 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001627 (let ((ci (current-indentation)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001628 (if (< ci (current-column)) ; if point beyond indentation
1629 (newline-and-indent)
1630 ;; else try to act like newline-and-indent "normally" acts
1631 (beginning-of-line)
1632 (insert-char ?\n 1)
1633 (move-to-column ci))))
1634
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001635(defun py-compute-indentation (honor-block-close-p)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001636 "Compute Python indentation.
1637When HONOR-BLOCK-CLOSE-P is non-nil, statements such as `return',
1638`raise', `break', `continue', and `pass' force one level of
1639dedenting."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001640 (save-excursion
Barry Warsawf64b4051998-02-12 16:52:14 +00001641 (beginning-of-line)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001642 (let* ((bod (py-point 'bod))
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001643 (pps (parse-partial-sexp bod (point)))
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001644 (boipps (parse-partial-sexp bod (py-point 'boi)))
1645 placeholder)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001646 (cond
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001647 ;; are we inside a multi-line string or comment?
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001648 ((or (and (nth 3 pps) (nth 3 boipps))
1649 (and (nth 4 pps) (nth 4 boipps)))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001650 (save-excursion
1651 (if (not py-align-multiline-strings-p) 0
1652 ;; skip back over blank & non-indenting comment lines
1653 ;; note: will skip a blank or non-indenting comment line
1654 ;; that happens to be a continuation line too
1655 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move)
1656 (back-to-indentation)
1657 (current-column))))
1658 ;; are we on a continuation line?
1659 ((py-continuation-line-p)
1660 (let ((startpos (point))
1661 (open-bracket-pos (py-nesting-level))
Barry Warsawce60bc71996-08-01 18:17:14 +00001662 endpos searching found state)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001663 (if open-bracket-pos
1664 (progn
1665 ;; align with first item in list; else a normal
1666 ;; indent beyond the line with the open bracket
1667 (goto-char (1+ open-bracket-pos)) ; just beyond bracket
1668 ;; is the first list item on the same line?
1669 (skip-chars-forward " \t")
1670 (if (null (memq (following-char) '(?\n ?# ?\\)))
1671 ; yes, so line up with it
1672 (current-column)
1673 ;; first list item on another line, or doesn't exist yet
1674 (forward-line 1)
1675 (while (and (< (point) startpos)
1676 (looking-at "[ \t]*[#\n\\\\]")) ; skip noise
1677 (forward-line 1))
Barry Warsaw92166d91998-04-01 21:59:41 +00001678 (if (and (< (point) startpos)
1679 (/= startpos
1680 (save-excursion
1681 (goto-char (1+ open-bracket-pos))
Barry Warsaw77d1fce1998-04-16 20:04:59 +00001682 (forward-comment (point-max))
Barry Warsaw92166d91998-04-01 21:59:41 +00001683 (point))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001684 ;; again mimic the first list item
1685 (current-indentation)
1686 ;; else they're about to enter the first item
1687 (goto-char open-bracket-pos)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001688 (setq placeholder (point))
1689 (py-goto-initial-line)
1690 (py-goto-beginning-of-tqs
1691 (save-excursion (nth 3 (parse-partial-sexp
1692 placeholder (point)))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001693 (+ (current-indentation) py-indent-offset))))
1694
1695 ;; else on backslash continuation line
1696 (forward-line -1)
1697 (if (py-continuation-line-p) ; on at least 3rd line in block
1698 (current-indentation) ; so just continue the pattern
1699 ;; else started on 2nd line in block, so indent more.
1700 ;; if base line is an assignment with a start on a RHS,
1701 ;; indent to 2 beyond the leftmost "="; else skip first
1702 ;; chunk of non-whitespace characters on base line, + 1 more
1703 ;; column
1704 (end-of-line)
1705 (setq endpos (point) searching t)
1706 (back-to-indentation)
1707 (setq startpos (point))
1708 ;; look at all "=" from left to right, stopping at first
1709 ;; one not nested in a list or string
1710 (while searching
1711 (skip-chars-forward "^=" endpos)
1712 (if (= (point) endpos)
1713 (setq searching nil)
1714 (forward-char 1)
1715 (setq state (parse-partial-sexp startpos (point)))
1716 (if (and (zerop (car state)) ; not in a bracket
1717 (null (nth 3 state))) ; & not in a string
1718 (progn
1719 (setq searching nil) ; done searching in any case
1720 (setq found
1721 (not (or
1722 (eq (following-char) ?=)
1723 (memq (char-after (- (point) 2))
1724 '(?< ?> ?!)))))))))
1725 (if (or (not found) ; not an assignment
1726 (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash>
1727 (progn
1728 (goto-char startpos)
1729 (skip-chars-forward "^ \t\n")))
1730 (1+ (current-column))))))
1731
1732 ;; not on a continuation line
Barry Warsawa7891711996-08-01 15:53:09 +00001733 ((bobp) (current-indentation))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001734
Barry Warsawa7891711996-08-01 15:53:09 +00001735 ;; Dfn: "Indenting comment line". A line containing only a
1736 ;; comment, but which is treated like a statement for
1737 ;; indentation calculation purposes. Such lines are only
1738 ;; treated specially by the mode; they are not treated
1739 ;; specially by the Python interpreter.
1740
1741 ;; The rules for indenting comment lines are a line where:
1742 ;; - the first non-whitespace character is `#', and
1743 ;; - the character following the `#' is whitespace, and
Barry Warsaw41a05c71998-08-10 16:33:12 +00001744 ;; - the line is dedented with respect to (i.e. to the left
Barry Warsawa7891711996-08-01 15:53:09 +00001745 ;; of) the indentation of the preceding non-blank line.
1746
1747 ;; The first non-blank line following an indenting comment
1748 ;; line is given the same amount of indentation as the
1749 ;; indenting comment line.
1750
1751 ;; All other comment-only lines are ignored for indentation
1752 ;; purposes.
1753
1754 ;; Are we looking at a comment-only line which is *not* an
Barry Warsaw145ab1c1998-05-19 14:49:49 +00001755 ;; indenting comment line? If so, we assume that it's been
Barry Warsawa7891711996-08-01 15:53:09 +00001756 ;; placed at the desired indentation, so leave it alone.
1757 ;; Indenting comment lines are aligned as statements down
1758 ;; below.
1759 ((and (looking-at "[ \t]*#[^ \t\n]")
1760 ;; NOTE: this test will not be performed in older Emacsen
1761 (fboundp 'forward-comment)
1762 (<= (current-indentation)
1763 (save-excursion
1764 (forward-comment (- (point-max)))
1765 (current-indentation))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001766 (current-indentation))
1767
1768 ;; else indentation based on that of the statement that
1769 ;; precedes us; use the first line of that statement to
1770 ;; establish the base, in case the user forced a non-std
1771 ;; indentation for the continuation lines (if any)
1772 (t
Barry Warsawc01c5c81995-09-14 18:49:11 +00001773 ;; skip back over blank & non-indenting comment lines note:
1774 ;; will skip a blank or non-indenting comment line that
Barry Warsawfd0fb381996-03-04 17:15:40 +00001775 ;; happens to be a continuation line too. use fast Emacs 19
1776 ;; function if it's there.
Barry Warsaw6d627751996-03-06 18:41:38 +00001777 (if (and (eq py-honor-comment-indentation nil)
Barry Warsaw33d6ec01996-03-05 16:28:07 +00001778 (fboundp 'forward-comment))
Barry Warsawfd0fb381996-03-04 17:15:40 +00001779 (forward-comment (- (point-max)))
Barry Warsaw218eb751998-09-22 19:51:47 +00001780 (let ((prefix-re (concat py-block-comment-prefix "[ \t]*"))
1781 done)
Barry Warsaw6d627751996-03-06 18:41:38 +00001782 (while (not done)
Barry Warsaw12c92941998-08-10 21:44:37 +00001783 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#\\)" nil 'move)
1784 (setq done (or (bobp)
1785 (and (eq py-honor-comment-indentation t)
1786 (save-excursion
1787 (back-to-indentation)
Barry Warsaw218eb751998-09-22 19:51:47 +00001788 (not (looking-at prefix-re))
Barry Warsaw12c92941998-08-10 21:44:37 +00001789 ))
1790 (and (not (eq py-honor-comment-indentation t))
1791 (save-excursion
1792 (back-to-indentation)
1793 (not (zerop (current-column)))))
1794 ))
Barry Warsaw6d627751996-03-06 18:41:38 +00001795 )))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001796 ;; if we landed inside a string, go to the beginning of that
1797 ;; string. this handles triple quoted, multi-line spanning
1798 ;; strings.
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001799 (py-goto-beginning-of-tqs (nth 3 (parse-partial-sexp bod (point))))
Barry Warsawc210e691998-01-20 22:52:56 +00001800 ;; now skip backward over continued lines
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001801 (setq placeholder (point))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001802 (py-goto-initial-line)
Barry Warsaw9c1696c1998-12-15 04:36:22 +00001803 ;; we may *now* have landed in a TQS, so find the beginning of
1804 ;; this string.
1805 (py-goto-beginning-of-tqs
1806 (save-excursion (nth 3 (parse-partial-sexp
1807 placeholder (point)))))
Barry Warsawf831d811996-07-31 20:42:59 +00001808 (+ (current-indentation)
1809 (if (py-statement-opens-block-p)
1810 py-indent-offset
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001811 (if (and honor-block-close-p (py-statement-closes-block-p))
Barry Warsawf831d811996-07-31 20:42:59 +00001812 (- py-indent-offset)
1813 0)))
1814 )))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001815
1816(defun py-guess-indent-offset (&optional global)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001817 "Guess a good value for, and change, `py-indent-offset'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00001818
1819By default, make a buffer-local copy of `py-indent-offset' with the
1820new value, so that other Python buffers are not affected. With
1821\\[universal-argument] (programmatically, optional argument GLOBAL),
1822change the global value of `py-indent-offset'. This affects all
1823Python buffers (that don't have their own buffer-local copy), both
1824those currently existing and those created later in the Emacs session.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001825
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001826Some people use a different value for `py-indent-offset' than you use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001827There's no excuse for such foolishness, but sometimes you have to deal
1828with their ugly code anyway. This function examines the file and sets
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001829`py-indent-offset' to what it thinks it was when they created the
1830mess.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001831
1832Specifically, it searches forward from the statement containing point,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001833looking for a line that opens a block of code. `py-indent-offset' is
1834set to the difference in indentation between that line and the Python
Barry Warsaw7ae77681994-12-12 20:38:05 +00001835statement following it. If the search doesn't succeed going forward,
1836it's tried again going backward."
1837 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001838 (let (new-value
1839 (start (point))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001840 (restart (point))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001841 (found nil)
1842 colon-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001843 (py-goto-initial-line)
1844 (while (not (or found (eobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001845 (when (and (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1846 (not (py-in-literal restart)))
1847 (setq restart (point))
1848 (py-goto-initial-line)
1849 (if (py-statement-opens-block-p)
1850 (setq found t)
1851 (goto-char restart))))
1852 (unless found
Barry Warsaw7ae77681994-12-12 20:38:05 +00001853 (goto-char start)
1854 (py-goto-initial-line)
1855 (while (not (or found (bobp)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001856 (setq found (and
1857 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1858 (or (py-goto-initial-line) t) ; always true -- side effect
1859 (py-statement-opens-block-p)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001860 (setq colon-indent (current-indentation)
1861 found (and found (zerop (py-next-statement 1)))
1862 new-value (- (current-indentation) colon-indent))
1863 (goto-char start)
Barry Warsawe908b6b1998-03-19 22:48:02 +00001864 (if (not found)
1865 (error "Sorry, couldn't guess a value for py-indent-offset")
1866 (funcall (if global 'kill-local-variable 'make-local-variable)
1867 'py-indent-offset)
1868 (setq py-indent-offset new-value)
Barry Warsawd35c2551998-09-25 00:08:38 +00001869 (or noninteractive
1870 (message "%s value of py-indent-offset set to %d"
1871 (if global "Global" "Local")
1872 py-indent-offset)))
Barry Warsawe908b6b1998-03-19 22:48:02 +00001873 ))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001874
Barry Warsaw003932a1998-07-07 15:11:24 +00001875(defun py-comment-indent-function ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00001876 "Python version of `comment-indent-function'."
1877 ;; This is required when filladapt is turned off. Without it, when
1878 ;; filladapt is not used, comments which start in column zero
1879 ;; cascade one character to the right
Barry Warsaw003932a1998-07-07 15:11:24 +00001880 (save-excursion
1881 (beginning-of-line)
1882 (let ((eol (py-point 'eol)))
1883 (and comment-start-skip
1884 (re-search-forward comment-start-skip eol t)
1885 (setq eol (match-beginning 0)))
1886 (goto-char eol)
1887 (skip-chars-backward " \t")
1888 (max comment-column (+ (current-column) (if (bolp) 0 1)))
1889 )))
1890
Barry Warsawf8ddb6a1999-01-18 21:49:39 +00001891(defun py-narrow-to-defun (&optional class)
1892 "Make text outside current defun invisible.
1893The defun visible is the one that contains point or follows point.
1894Optional CLASS is passed directly to `py-beginning-of-def-or-class'."
1895 (interactive "P")
1896 (save-excursion
1897 (widen)
1898 (py-end-of-def-or-class class)
1899 (let ((end (point)))
1900 (py-beginning-of-def-or-class class)
1901 (narrow-to-region (point) end))))
1902
Barry Warsaw003932a1998-07-07 15:11:24 +00001903
Barry Warsaw7ae77681994-12-12 20:38:05 +00001904(defun py-shift-region (start end count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00001905 "Indent lines from START to END by COUNT spaces."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001906 (save-excursion
Barry Warsaw41a05c71998-08-10 16:33:12 +00001907 (goto-char end)
1908 (beginning-of-line)
1909 (setq end (point))
1910 (goto-char start)
1911 (beginning-of-line)
1912 (setq start (point))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001913 (indent-rigidly start end count)))
1914
1915(defun py-shift-region-left (start end &optional count)
1916 "Shift region of Python code to the left.
1917The lines from the line containing the start of the current region up
1918to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001919shifted to the left, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001920
1921If a prefix argument is given, the region is instead shifted by that
Barry Warsaw41a05c71998-08-10 16:33:12 +00001922many columns. With no active region, dedent only the current line.
1923You cannot dedent the region if any line is already at column zero."
Barry Warsawdea4a291996-07-03 22:59:12 +00001924 (interactive
1925 (let ((p (point))
1926 (m (mark))
1927 (arg current-prefix-arg))
1928 (if m
1929 (list (min p m) (max p m) arg)
1930 (list p (save-excursion (forward-line 1) (point)) arg))))
1931 ;; if any line is at column zero, don't shift the region
1932 (save-excursion
1933 (goto-char start)
1934 (while (< (point) end)
1935 (back-to-indentation)
Barry Warsaw71e315b1996-07-23 15:03:16 +00001936 (if (and (zerop (current-column))
1937 (not (looking-at "\\s *$")))
Barry Warsaw41a05c71998-08-10 16:33:12 +00001938 (error "Region is at left edge"))
Barry Warsawdea4a291996-07-03 22:59:12 +00001939 (forward-line 1)))
1940 (py-shift-region start end (- (prefix-numeric-value
1941 (or count py-indent-offset))))
1942 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001943
1944(defun py-shift-region-right (start end &optional count)
1945 "Shift region of Python code to the right.
1946The lines from the line containing the start of the current region up
1947to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001948shifted to the right, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001949
1950If a prefix argument is given, the region is instead shifted by that
Barry Warsawdea4a291996-07-03 22:59:12 +00001951many columns. With no active region, indent only the current line."
1952 (interactive
1953 (let ((p (point))
1954 (m (mark))
1955 (arg current-prefix-arg))
1956 (if m
1957 (list (min p m) (max p m) arg)
1958 (list p (save-excursion (forward-line 1) (point)) arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001959 (py-shift-region start end (prefix-numeric-value
Barry Warsawdea4a291996-07-03 22:59:12 +00001960 (or count py-indent-offset)))
1961 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001962
1963(defun py-indent-region (start end &optional indent-offset)
1964 "Reindent a region of Python code.
Barry Warsaw867a32a1996-03-07 18:30:26 +00001965
Barry Warsaw7ae77681994-12-12 20:38:05 +00001966The lines from the line containing the start of the current region up
1967to (but not including) the line containing the end of the region are
1968reindented. If the first line of the region has a non-whitespace
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001969character in the first column, the first line is left alone and the
1970rest of the region is reindented with respect to it. Else the entire
Barry Warsaw867a32a1996-03-07 18:30:26 +00001971region is reindented with respect to the (closest code or indenting
1972comment) statement immediately preceding the region.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001973
1974This is useful when code blocks are moved or yanked, when enclosing
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001975control structures are introduced or removed, or to reformat code
1976using a new value for the indentation offset.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001977
1978If a numeric prefix argument is given, it will be used as the value of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001979the indentation offset. Else the value of `py-indent-offset' will be
Barry Warsaw7ae77681994-12-12 20:38:05 +00001980used.
1981
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001982Warning: The region must be consistently indented before this function
Barry Warsaw7ae77681994-12-12 20:38:05 +00001983is called! This function does not compute proper indentation from
1984scratch (that's impossible in Python), it merely adjusts the existing
1985indentation to be correct in context.
1986
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001987Warning: This function really has no idea what to do with
1988non-indenting comment lines, and shifts them as if they were indenting
1989comment lines. Fixing this appears to require telepathy.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001990
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001991Special cases: whitespace is deleted from blank lines; continuation
1992lines are shifted by the same amount their initial line was shifted,
1993in order to preserve their relative indentation with respect to their
Barry Warsaw7ae77681994-12-12 20:38:05 +00001994initial line; and comment lines beginning in column 1 are ignored."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001995 (interactive "*r\nP") ; region; raw prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00001996 (save-excursion
1997 (goto-char end) (beginning-of-line) (setq end (point-marker))
1998 (goto-char start) (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001999 (let ((py-indent-offset (prefix-numeric-value
2000 (or indent-offset py-indent-offset)))
2001 (indents '(-1)) ; stack of active indent levels
2002 (target-column 0) ; column to which to indent
2003 (base-shifted-by 0) ; amount last base line was shifted
2004 (indent-base (if (looking-at "[ \t\n]")
Barry Warsaw7cb505c1996-10-23 20:44:59 +00002005 (py-compute-indentation t)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002006 0))
2007 ci)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002008 (while (< (point) end)
2009 (setq ci (current-indentation))
2010 ;; figure out appropriate target column
2011 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002012 ((or (eq (following-char) ?#) ; comment in column 1
2013 (looking-at "[ \t]*$")) ; entirely blank
2014 (setq target-column 0))
2015 ((py-continuation-line-p) ; shift relative to base line
2016 (setq target-column (+ ci base-shifted-by)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002017 (t ; new base line
2018 (if (> ci (car indents)) ; going deeper; push it
2019 (setq indents (cons ci indents))
2020 ;; else we should have seen this indent before
2021 (setq indents (memq ci indents)) ; pop deeper indents
2022 (if (null indents)
2023 (error "Bad indentation in region, at line %d"
2024 (save-restriction
2025 (widen)
2026 (1+ (count-lines 1 (point)))))))
2027 (setq target-column (+ indent-base
2028 (* py-indent-offset
2029 (- (length indents) 2))))
2030 (setq base-shifted-by (- target-column ci))))
2031 ;; shift as needed
2032 (if (/= ci target-column)
2033 (progn
2034 (delete-horizontal-space)
2035 (indent-to target-column)))
2036 (forward-line 1))))
2037 (set-marker end nil))
2038
Barry Warsawa7891711996-08-01 15:53:09 +00002039(defun py-comment-region (beg end &optional arg)
2040 "Like `comment-region' but uses double hash (`#') comment starter."
2041 (interactive "r\nP")
Barry Warsaw3fcaf611996-08-01 20:11:51 +00002042 (let ((comment-start py-block-comment-prefix))
Barry Warsawa7891711996-08-01 15:53:09 +00002043 (comment-region beg end arg)))
2044
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002045
2046;; Functions for moving point
Barry Warsaw7ae77681994-12-12 20:38:05 +00002047(defun py-previous-statement (count)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002048 "Go to the start of the COUNTth preceding Python statement.
2049By default, goes to the previous statement. If there is no such
2050statement, goes to the first statement. Return count of statements
2051left to move. `Statements' do not include blank, comment, or
2052continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002053 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002054 (if (< count 0) (py-next-statement (- count))
2055 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002056 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002057 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002058 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002059 (> count 0)
2060 (zerop (forward-line -1))
2061 (py-goto-statement-at-or-above))
2062 (setq count (1- count)))
2063 (if (> count 0) (goto-char start)))
2064 count))
2065
2066(defun py-next-statement (count)
2067 "Go to the start of next Python statement.
2068If the statement at point is the i'th Python statement, goes to the
2069start of statement i+COUNT. If there is no such statement, goes to the
2070last statement. Returns count of statements left to move. `Statements'
2071do not include blank, comment, or continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002072 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00002073 (if (< count 0) (py-previous-statement (- count))
2074 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002075 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002076 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002077 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002078 (> count 0)
2079 (py-goto-statement-below))
2080 (setq count (1- count)))
2081 (if (> count 0) (goto-char start)))
2082 count))
2083
2084(defun py-goto-block-up (&optional nomark)
2085 "Move up to start of current block.
2086Go to the statement that starts the smallest enclosing block; roughly
2087speaking, this will be the closest preceding statement that ends with a
2088colon and is indented less than the statement you started on. If
2089successful, also sets the mark to the starting point.
2090
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002091`\\[py-mark-block]' can be used afterward to mark the whole code
2092block, if desired.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002093
2094If called from a program, the mark will not be set if optional argument
2095NOMARK is not nil."
2096 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002097 (let ((start (point))
2098 (found nil)
2099 initial-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002100 (py-goto-initial-line)
2101 ;; if on blank or non-indenting comment line, use the preceding stmt
2102 (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2103 (progn
2104 (py-goto-statement-at-or-above)
2105 (setq found (py-statement-opens-block-p))))
2106 ;; search back for colon line indented less
2107 (setq initial-indent (current-indentation))
2108 (if (zerop initial-indent)
2109 ;; force fast exit
2110 (goto-char (point-min)))
2111 (while (not (or found (bobp)))
2112 (setq found
2113 (and
2114 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
2115 (or (py-goto-initial-line) t) ; always true -- side effect
2116 (< (current-indentation) initial-indent)
2117 (py-statement-opens-block-p))))
2118 (if found
2119 (progn
2120 (or nomark (push-mark start))
2121 (back-to-indentation))
2122 (goto-char start)
2123 (error "Enclosing block not found"))))
2124
Barry Warsawab0e86c1998-05-19 15:31:46 +00002125(defun py-beginning-of-def-or-class (&optional class count)
2126 "Move point to start of `def' or `class'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002127
2128Searches back for the closest preceding `def'. If you supply a prefix
Barry Warsawab0e86c1998-05-19 15:31:46 +00002129arg, looks for a `class' instead. The docs below assume the `def'
2130case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002131Programmatically, if CLASS is `either', then moves to either `class'
2132or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002133
Barry Warsawab0e86c1998-05-19 15:31:46 +00002134When second optional argument is given programmatically, move to the
2135COUNTth start of `def'.
2136
2137If point is in a `def' statement already, and after the `d', simply
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002138moves point to the start of the statement.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002139
Barry Warsawab0e86c1998-05-19 15:31:46 +00002140Otherwise (i.e. when point is not in a `def' statement, or at or
2141before the `d' of a `def' statement), searches for the closest
2142preceding `def' statement, and leaves point at its start. If no such
2143statement can be found, leaves point at the start of the buffer.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002144
Barry Warsawab0e86c1998-05-19 15:31:46 +00002145Returns t iff a `def' statement is found by these rules.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002146
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002147Note that doing this command repeatedly will take you closer to the
2148start of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002149
Barry Warsaw7c29b231998-07-07 17:45:38 +00002150To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002151 (interactive "P") ; raw prefix arg
Barry Warsaw6839d3a1998-10-28 00:10:45 +00002152 (setq count (or count 1))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002153 (let ((at-or-before-p (<= (current-column) (current-indentation)))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002154 (start-of-line (goto-char (py-point 'bol)))
2155 (start-of-stmt (goto-char (py-point 'bos)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002156 (start-re (cond ((eq class 'either) "^[ \t]*\\(class\\|def\\)\\>")
2157 (class "^[ \t]*class\\>")
2158 (t "^[ \t]*def\\>")))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002159 )
2160 ;; searching backward
2161 (if (and (< 0 count)
2162 (or (/= start-of-stmt start-of-line)
2163 (not at-or-before-p)))
2164 (end-of-line))
2165 ;; search forward
2166 (if (and (> 0 count)
2167 (zerop (current-column))
2168 (looking-at start-re))
2169 (end-of-line))
Barry Warsawddc46961999-07-27 21:40:02 +00002170 (if (re-search-backward start-re nil 'move count)
2171 (goto-char (match-beginning 0)))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002172
Barry Warsawab0e86c1998-05-19 15:31:46 +00002173;; Backwards compatibility
2174(defalias 'beginning-of-python-def-or-class 'py-beginning-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002175
Barry Warsawab0e86c1998-05-19 15:31:46 +00002176(defun py-end-of-def-or-class (&optional class count)
2177 "Move point beyond end of `def' or `class' body.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002178
Barry Warsawab0e86c1998-05-19 15:31:46 +00002179By default, looks for an appropriate `def'. If you supply a prefix
2180arg, looks for a `class' instead. The docs below assume the `def'
2181case; just substitute `class' for `def' for the other case.
Barry Warsaw7c29b231998-07-07 17:45:38 +00002182Programmatically, if CLASS is `either', then moves to either `class'
2183or `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002184
Barry Warsawab0e86c1998-05-19 15:31:46 +00002185When second optional argument is given programmatically, move to the
2186COUNTth end of `def'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002187
Barry Warsawab0e86c1998-05-19 15:31:46 +00002188If point is in a `def' statement already, this is the `def' we use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002189
Barry Warsawab0e86c1998-05-19 15:31:46 +00002190Else, if the `def' found by `\\[py-beginning-of-def-or-class]'
2191contains the statement you started on, that's the `def' we use.
2192
2193Otherwise, we search forward for the closest following `def', and use that.
2194
2195If a `def' can be found by these rules, point is moved to the start of
2196the line immediately following the `def' block, and the position of the
2197start of the `def' is returned.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002198
2199Else point is moved to the end of the buffer, and nil is returned.
2200
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002201Note that doing this command repeatedly will take you closer to the
2202end of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002203
Barry Warsaw7c29b231998-07-07 17:45:38 +00002204To mark the current `def', see `\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002205 (interactive "P") ; raw prefix arg
Barry Warsawab0e86c1998-05-19 15:31:46 +00002206 (if (and count (/= count 1))
2207 (py-beginning-of-def-or-class (- 1 count)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002208 (let ((start (progn (py-goto-initial-line) (point)))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002209 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2210 (class "class")
2211 (t "def")))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002212 (state 'not-found))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002213 ;; move point to start of appropriate def/class
2214 (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one
2215 (setq state 'at-beginning)
Barry Warsawab0e86c1998-05-19 15:31:46 +00002216 ;; else see if py-beginning-of-def-or-class hits container
2217 (if (and (py-beginning-of-def-or-class class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002218 (progn (py-goto-beyond-block)
2219 (> (point) start)))
2220 (setq state 'at-end)
2221 ;; else search forward
2222 (goto-char start)
2223 (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move)
2224 (progn (setq state 'at-beginning)
2225 (beginning-of-line)))))
2226 (cond
2227 ((eq state 'at-beginning) (py-goto-beyond-block) t)
2228 ((eq state 'at-end) t)
2229 ((eq state 'not-found) nil)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002230 (t (error "Internal error in `py-end-of-def-or-class'")))))
Barry Warsawab0e86c1998-05-19 15:31:46 +00002231
2232;; Backwards compabitility
Barry Warsaw820273d1998-05-19 15:54:45 +00002233(defalias 'end-of-python-def-or-class 'py-end-of-def-or-class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002234
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002235
2236;; Functions for marking regions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002237(defun py-mark-block (&optional extend just-move)
2238 "Mark following block of lines. With prefix arg, mark structure.
2239Easier to use than explain. It sets the region to an `interesting'
2240block of succeeding lines. If point is on a blank line, it goes down to
2241the next non-blank line. That will be the start of the region. The end
2242of the region depends on the kind of line at the start:
2243
2244 - If a comment, the region will include all succeeding comment lines up
2245 to (but not including) the next non-comment line (if any).
2246
2247 - Else if a prefix arg is given, and the line begins one of these
2248 structures:
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002249
2250 if elif else try except finally for while def class
2251
Barry Warsaw7ae77681994-12-12 20:38:05 +00002252 the region will be set to the body of the structure, including
2253 following blocks that `belong' to it, but excluding trailing blank
2254 and comment lines. E.g., if on a `try' statement, the `try' block
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002255 and all (if any) of the following `except' and `finally' blocks
2256 that belong to the `try' structure will be in the region. Ditto
2257 for if/elif/else, for/else and while/else structures, and (a bit
2258 degenerate, since they're always one-block structures) def and
2259 class blocks.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002260
2261 - Else if no prefix argument is given, and the line begins a Python
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002262 block (see list above), and the block is not a `one-liner' (i.e.,
2263 the statement ends with a colon, not with code), the region will
2264 include all succeeding lines up to (but not including) the next
2265 code statement (if any) that's indented no more than the starting
2266 line, except that trailing blank and comment lines are excluded.
2267 E.g., if the starting line begins a multi-statement `def'
2268 structure, the region will be set to the full function definition,
2269 but without any trailing `noise' lines.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002270
2271 - Else the region will include all succeeding lines up to (but not
2272 including) the next blank line, or code or indenting-comment line
2273 indented strictly less than the starting line. Trailing indenting
2274 comment lines are included in this case, but not trailing blank
2275 lines.
2276
2277A msg identifying the location of the mark is displayed in the echo
2278area; or do `\\[exchange-point-and-mark]' to flip down to the end.
2279
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002280If called from a program, optional argument EXTEND plays the role of
2281the prefix arg, and if optional argument JUST-MOVE is not nil, just
2282moves to the end of the block (& does not set mark or display a msg)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002283 (interactive "P") ; raw prefix arg
2284 (py-goto-initial-line)
2285 ;; skip over blank lines
2286 (while (and
2287 (looking-at "[ \t]*$") ; while blank line
2288 (not (eobp))) ; & somewhere to go
2289 (forward-line 1))
2290 (if (eobp)
2291 (error "Hit end of buffer without finding a non-blank stmt"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002292 (let ((initial-pos (point))
2293 (initial-indent (current-indentation))
2294 last-pos ; position of last stmt in region
2295 (followers
2296 '((if elif else) (elif elif else) (else)
2297 (try except finally) (except except) (finally)
2298 (for else) (while else)
2299 (def) (class) ) )
2300 first-symbol next-symbol)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002301
2302 (cond
2303 ;; if comment line, suck up the following comment lines
2304 ((looking-at "[ \t]*#")
2305 (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment
2306 (re-search-backward "^[ \t]*#") ; and back to last comment in block
2307 (setq last-pos (point)))
2308
2309 ;; else if line is a block line and EXTEND given, suck up
2310 ;; the whole structure
2311 ((and extend
2312 (setq first-symbol (py-suck-up-first-keyword) )
2313 (assq first-symbol followers))
2314 (while (and
2315 (or (py-goto-beyond-block) t) ; side effect
2316 (forward-line -1) ; side effect
2317 (setq last-pos (point)) ; side effect
2318 (py-goto-statement-below)
2319 (= (current-indentation) initial-indent)
2320 (setq next-symbol (py-suck-up-first-keyword))
2321 (memq next-symbol (cdr (assq first-symbol followers))))
2322 (setq first-symbol next-symbol)))
2323
2324 ;; else if line *opens* a block, search for next stmt indented <=
2325 ((py-statement-opens-block-p)
2326 (while (and
2327 (setq last-pos (point)) ; always true -- side effect
2328 (py-goto-statement-below)
2329 (> (current-indentation) initial-indent))
2330 nil))
2331
2332 ;; else plain code line; stop at next blank line, or stmt or
2333 ;; indenting comment line indented <
2334 (t
2335 (while (and
2336 (setq last-pos (point)) ; always true -- side effect
2337 (or (py-goto-beyond-final-line) t)
2338 (not (looking-at "[ \t]*$")) ; stop at blank line
2339 (or
2340 (>= (current-indentation) initial-indent)
2341 (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting #
2342 nil)))
2343
2344 ;; skip to end of last stmt
2345 (goto-char last-pos)
2346 (py-goto-beyond-final-line)
2347
2348 ;; set mark & display
2349 (if just-move
2350 () ; just return
2351 (push-mark (point) 'no-msg)
2352 (forward-line -1)
2353 (message "Mark set after: %s" (py-suck-up-leading-text))
2354 (goto-char initial-pos))))
2355
Barry Warsaw2518c671997-11-05 00:51:08 +00002356(defun py-mark-def-or-class (&optional class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002357 "Set region to body of def (or class, with prefix arg) enclosing point.
2358Pushes the current mark, then point, on the mark ring (all language
2359modes do this, but although it's handy it's never documented ...).
2360
2361In most Emacs language modes, this function bears at least a
Barry Warsawab0e86c1998-05-19 15:31:46 +00002362hallucinogenic resemblance to `\\[py-end-of-def-or-class]' and
2363`\\[py-beginning-of-def-or-class]'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002364
2365And in earlier versions of Python mode, all 3 were tightly connected.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002366Turned out that was more confusing than useful: the `goto start' and
2367`goto end' commands are usually used to search through a file, and
2368people expect them to act a lot like `search backward' and `search
2369forward' string-search commands. But because Python `def' and `class'
2370can nest to arbitrary levels, finding the smallest def containing
2371point cannot be done via a simple backward search: the def containing
2372point may not be the closest preceding def, or even the closest
2373preceding def that's indented less. The fancy algorithm required is
2374appropriate for the usual uses of this `mark' command, but not for the
2375`goto' variations.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002376
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002377So the def marked by this command may not be the one either of the
2378`goto' commands find: If point is on a blank or non-indenting comment
2379line, moves back to start of the closest preceding code statement or
2380indenting comment line. If this is a `def' statement, that's the def
2381we use. Else searches for the smallest enclosing `def' block and uses
2382that. Else signals an error.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002383
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002384When an enclosing def is found: The mark is left immediately beyond
2385the last line of the def block. Point is left at the start of the
2386def, except that: if the def is preceded by a number of comment lines
2387followed by (at most) one optional blank line, point is left at the
2388start of the comments; else if the def is preceded by a blank line,
2389point is left at its start.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002390
2391The intent is to mark the containing def/class and its associated
2392documentation, to make moving and duplicating functions and classes
2393pleasant."
2394 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002395 (let ((start (point))
Barry Warsaw7c29b231998-07-07 17:45:38 +00002396 (which (cond ((eq class 'either) "\\(class\\|def\\)")
2397 (class "class")
2398 (t "def"))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002399 (push-mark start)
2400 (if (not (py-go-up-tree-to-keyword which))
2401 (progn (goto-char start)
Barry Warsaw7c29b231998-07-07 17:45:38 +00002402 (error "Enclosing %s not found"
2403 (if (eq class 'either)
2404 "def or class"
2405 which)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002406 ;; else enclosing def/class found
2407 (setq start (point))
2408 (py-goto-beyond-block)
2409 (push-mark (point))
2410 (goto-char start)
2411 (if (zerop (forward-line -1)) ; if there is a preceding line
2412 (progn
2413 (if (looking-at "[ \t]*$") ; it's blank
2414 (setq start (point)) ; so reset start point
2415 (goto-char start)) ; else try again
2416 (if (zerop (forward-line -1))
2417 (if (looking-at "[ \t]*#") ; a comment
2418 ;; look back for non-comment line
2419 ;; tricky: note that the regexp matches a blank
2420 ;; line, cuz \n is in the 2nd character class
2421 (and
2422 (re-search-backward "^[ \t]*[^ \t#]" nil 'move)
2423 (forward-line 1))
2424 ;; no comment, so go back
Barry Warsaw4da6bd51997-11-26 06:00:26 +00002425 (goto-char start)))))))
2426 (exchange-point-and-mark)
2427 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002428
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002429;; ripped from cc-mode
2430(defun py-forward-into-nomenclature (&optional arg)
2431 "Move forward to end of a nomenclature section or word.
Barry Warsaw41a05c71998-08-10 16:33:12 +00002432With \\[universal-argument] (programmatically, optional argument ARG),
2433do it that many times.
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002434
2435A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2436 (interactive "p")
2437 (let ((case-fold-search nil))
2438 (if (> arg 0)
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002439 (re-search-forward
2440 "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)"
2441 (point-max) t arg)
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002442 (while (and (< arg 0)
2443 (re-search-backward
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002444 "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+"
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002445 (point-min) 0))
2446 (forward-char 1)
2447 (setq arg (1+ arg)))))
2448 (py-keep-region-active))
2449
2450(defun py-backward-into-nomenclature (&optional arg)
2451 "Move backward to beginning of a nomenclature section or word.
2452With optional ARG, move that many times. If ARG is negative, move
2453forward.
2454
2455A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2456 (interactive "p")
2457 (py-forward-into-nomenclature (- arg))
2458 (py-keep-region-active))
2459
2460
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002461
2462;; Documentation functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002463
2464;; dump the long form of the mode blurb; does the usual doc escapes,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002465;; plus lines of the form ^[vc]:name$ to suck variable & command docs
2466;; out of the right places, along with the keys they're on & current
2467;; values
Barry Warsaw7ae77681994-12-12 20:38:05 +00002468(defun py-dump-help-string (str)
2469 (with-output-to-temp-buffer "*Help*"
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002470 (let ((locals (buffer-local-variables))
2471 funckind funcname func funcdoc
2472 (start 0) mstart end
2473 keys )
Barry Warsaw7ae77681994-12-12 20:38:05 +00002474 (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start)
2475 (setq mstart (match-beginning 0) end (match-end 0)
2476 funckind (substring str (match-beginning 1) (match-end 1))
2477 funcname (substring str (match-beginning 2) (match-end 2))
2478 func (intern funcname))
2479 (princ (substitute-command-keys (substring str start mstart)))
2480 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002481 ((equal funckind "c") ; command
2482 (setq funcdoc (documentation func)
2483 keys (concat
2484 "Key(s): "
2485 (mapconcat 'key-description
2486 (where-is-internal func py-mode-map)
2487 ", "))))
2488 ((equal funckind "v") ; variable
Barry Warsaw604cefa1996-09-03 18:17:04 +00002489 (setq funcdoc (documentation-property func 'variable-documentation)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002490 keys (if (assq func locals)
2491 (concat
2492 "Local/Global values: "
2493 (prin1-to-string (symbol-value func))
2494 " / "
2495 (prin1-to-string (default-value func)))
2496 (concat
2497 "Value: "
2498 (prin1-to-string (symbol-value func))))))
2499 (t ; unexpected
2500 (error "Error in py-dump-help-string, tag `%s'" funckind)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002501 (princ (format "\n-> %s:\t%s\t%s\n\n"
2502 (if (equal funckind "c") "Command" "Variable")
2503 funcname keys))
2504 (princ funcdoc)
2505 (terpri)
2506 (setq start end))
2507 (princ (substitute-command-keys (substring str start))))
2508 (print-help-return-message)))
2509
2510(defun py-describe-mode ()
2511 "Dump long form of Python-mode docs."
2512 (interactive)
2513 (py-dump-help-string "Major mode for editing Python files.
2514Knows about Python indentation, tokens, comments and continuation lines.
2515Paragraphs are separated by blank lines only.
2516
2517Major sections below begin with the string `@'; specific function and
2518variable docs begin with `->'.
2519
2520@EXECUTING PYTHON CODE
2521
Barry Warsaw820273d1998-05-19 15:54:45 +00002522\\[py-execute-import-or-reload]\timports or reloads the file in the Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002523\\[py-execute-buffer]\tsends the entire buffer to the Python interpreter
2524\\[py-execute-region]\tsends the current region
Barry Warsaw820273d1998-05-19 15:54:45 +00002525\\[py-execute-def-or-class]\tsends the current function or class definition
2526\\[py-execute-string]\tsends an arbitrary string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002527\\[py-shell]\tstarts a Python interpreter window; this will be used by
Barry Warsaw820273d1998-05-19 15:54:45 +00002528\tsubsequent Python execution commands
2529%c:py-execute-import-or-reload
Barry Warsaw7ae77681994-12-12 20:38:05 +00002530%c:py-execute-buffer
2531%c:py-execute-region
Barry Warsaw820273d1998-05-19 15:54:45 +00002532%c:py-execute-def-or-class
2533%c:py-execute-string
Barry Warsaw7ae77681994-12-12 20:38:05 +00002534%c:py-shell
2535
2536@VARIABLES
2537
2538py-indent-offset\tindentation increment
Barry Warsaw42f707f1996-07-29 21:05:05 +00002539py-block-comment-prefix\tcomment string used by comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002540
2541py-python-command\tshell command to invoke Python interpreter
Barry Warsaw7ae77681994-12-12 20:38:05 +00002542py-temp-directory\tdirectory used for temp files (if needed)
2543
2544py-beep-if-tab-change\tring the bell if tab-width is changed
2545%v:py-indent-offset
2546%v:py-block-comment-prefix
2547%v:py-python-command
Barry Warsaw7ae77681994-12-12 20:38:05 +00002548%v:py-temp-directory
2549%v:py-beep-if-tab-change
2550
2551@KINDS OF LINES
2552
2553Each physical line in the file is either a `continuation line' (the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002554preceding line ends with a backslash that's not part of a comment, or
2555the paren/bracket/brace nesting level at the start of the line is
2556non-zero, or both) or an `initial line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002557
2558An initial line is in turn a `blank line' (contains nothing except
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002559possibly blanks or tabs), a `comment line' (leftmost non-blank
2560character is `#'), or a `code line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002561
2562Comment Lines
2563
2564Although all comment lines are treated alike by Python, Python mode
2565recognizes two kinds that act differently with respect to indentation.
2566
2567An `indenting comment line' is a comment line with a blank, tab or
2568nothing after the initial `#'. The indentation commands (see below)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002569treat these exactly as if they were code lines: a line following an
Barry Warsaw7ae77681994-12-12 20:38:05 +00002570indenting comment line will be indented like the comment line. All
2571other comment lines (those with a non-whitespace character immediately
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002572following the initial `#') are `non-indenting comment lines', and
2573their indentation is ignored by the indentation commands.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002574
2575Indenting comment lines are by far the usual case, and should be used
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002576whenever possible. Non-indenting comment lines are useful in cases
2577like these:
Barry Warsaw7ae77681994-12-12 20:38:05 +00002578
2579\ta = b # a very wordy single-line comment that ends up being
2580\t #... continued onto another line
2581
2582\tif a == b:
2583##\t\tprint 'panic!' # old code we've `commented out'
2584\t\treturn a
2585
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002586Since the `#...' and `##' comment lines have a non-whitespace
2587character following the initial `#', Python mode ignores them when
2588computing the proper indentation for the next line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002589
2590Continuation Lines and Statements
2591
2592The Python-mode commands generally work on statements instead of on
2593individual lines, where a `statement' is a comment or blank line, or a
2594code line and all of its following continuation lines (if any)
2595considered as a single logical unit. The commands in this mode
2596generally (when it makes sense) automatically move to the start of the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002597statement containing point, even if point happens to be in the middle
2598of some continuation line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002599
2600
2601@INDENTATION
2602
2603Primarily for entering new code:
2604\t\\[indent-for-tab-command]\t indent line appropriately
2605\t\\[py-newline-and-indent]\t insert newline, then indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00002606\t\\[py-electric-backspace]\t reduce indentation, or delete single character
Barry Warsaw7ae77681994-12-12 20:38:05 +00002607
2608Primarily for reindenting existing code:
2609\t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally
2610\t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally
2611
2612\t\\[py-indent-region]\t reindent region to match its context
2613\t\\[py-shift-region-left]\t shift region left by py-indent-offset
2614\t\\[py-shift-region-right]\t shift region right by py-indent-offset
2615
2616Unlike most programming languages, Python uses indentation, and only
2617indentation, to specify block structure. Hence the indentation supplied
2618automatically by Python-mode is just an educated guess: only you know
2619the block structure you intend, so only you can supply correct
2620indentation.
2621
2622The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on
2623the indentation of preceding statements. E.g., assuming
2624py-indent-offset is 4, after you enter
2625\tif a > 0: \\[py-newline-and-indent]
2626the cursor will be moved to the position of the `_' (_ is not a
2627character in the file, it's just used here to indicate the location of
2628the cursor):
2629\tif a > 0:
2630\t _
2631If you then enter `c = d' \\[py-newline-and-indent], the cursor will move
2632to
2633\tif a > 0:
2634\t c = d
2635\t _
2636Python-mode cannot know whether that's what you intended, or whether
2637\tif a > 0:
2638\t c = d
2639\t_
2640was your intent. In general, Python-mode either reproduces the
2641indentation of the (closest code or indenting-comment) preceding
2642statement, or adds an extra py-indent-offset blanks if the preceding
2643statement has `:' as its last significant (non-whitespace and non-
2644comment) character. If the suggested indentation is too much, use
Barry Warsaw27ee1151997-12-03 05:03:44 +00002645\\[py-electric-backspace] to reduce it.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002646
2647Continuation lines are given extra indentation. If you don't like the
2648suggested indentation, change it to something you do like, and Python-
2649mode will strive to indent later lines of the statement in the same way.
2650
2651If a line is a continuation line by virtue of being in an unclosed
2652paren/bracket/brace structure (`list', for short), the suggested
2653indentation depends on whether the current line contains the first item
2654in the list. If it does, it's indented py-indent-offset columns beyond
2655the indentation of the line containing the open bracket. If you don't
2656like that, change it by hand. The remaining items in the list will mimic
2657whatever indentation you give to the first item.
2658
2659If a line is a continuation line because the line preceding it ends with
2660a backslash, the third and following lines of the statement inherit their
2661indentation from the line preceding them. The indentation of the second
2662line in the statement depends on the form of the first (base) line: if
2663the base line is an assignment statement with anything more interesting
2664than the backslash following the leftmost assigning `=', the second line
2665is indented two columns beyond that `='. Else it's indented to two
2666columns beyond the leftmost solid chunk of non-whitespace characters on
2667the base line.
2668
2669Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command]
2670repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block
2671structure you intend.
2672%c:indent-for-tab-command
2673%c:py-newline-and-indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00002674%c:py-electric-backspace
Barry Warsaw7ae77681994-12-12 20:38:05 +00002675
2676
2677The next function may be handy when editing code you didn't write:
2678%c:py-guess-indent-offset
2679
2680
2681The remaining `indent' functions apply to a region of Python code. They
2682assume the block structure (equals indentation, in Python) of the region
2683is correct, and alter the indentation in various ways while preserving
2684the block structure:
2685%c:py-indent-region
2686%c:py-shift-region-left
2687%c:py-shift-region-right
2688
2689@MARKING & MANIPULATING REGIONS OF CODE
2690
2691\\[py-mark-block]\t mark block of lines
Barry Warsaw2518c671997-11-05 00:51:08 +00002692\\[py-mark-def-or-class]\t mark smallest enclosing def
2693\\[universal-argument] \\[py-mark-def-or-class]\t mark smallest enclosing class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002694\\[comment-region]\t comment out region of code
2695\\[universal-argument] \\[comment-region]\t uncomment region of code
Barry Warsaw7ae77681994-12-12 20:38:05 +00002696%c:py-mark-block
Barry Warsaw2518c671997-11-05 00:51:08 +00002697%c:py-mark-def-or-class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002698%c:comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002699
2700@MOVING POINT
2701
2702\\[py-previous-statement]\t move to statement preceding point
2703\\[py-next-statement]\t move to statement following point
2704\\[py-goto-block-up]\t move up to start of current block
Barry Warsawab0e86c1998-05-19 15:31:46 +00002705\\[py-beginning-of-def-or-class]\t move to start of def
2706\\[universal-argument] \\[py-beginning-of-def-or-class]\t move to start of class
2707\\[py-end-of-def-or-class]\t move to end of def
2708\\[universal-argument] \\[py-end-of-def-or-class]\t move to end of class
Barry Warsaw7ae77681994-12-12 20:38:05 +00002709
2710The first two move to one statement beyond the statement that contains
2711point. A numeric prefix argument tells them to move that many
2712statements instead. Blank lines, comment lines, and continuation lines
2713do not count as `statements' for these commands. So, e.g., you can go
2714to the first code statement in a file by entering
2715\t\\[beginning-of-buffer]\t to move to the top of the file
2716\t\\[py-next-statement]\t to skip over initial comments and blank lines
2717Or do `\\[py-previous-statement]' with a huge prefix argument.
2718%c:py-previous-statement
2719%c:py-next-statement
2720%c:py-goto-block-up
Barry Warsawab0e86c1998-05-19 15:31:46 +00002721%c:py-beginning-of-def-or-class
2722%c:py-end-of-def-or-class
Barry Warsaw7ae77681994-12-12 20:38:05 +00002723
2724@LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE
2725
2726`\\[indent-new-comment-line]' is handy for entering a multi-line comment.
2727
2728`\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the
2729overall class and def structure of a module.
2730
2731`\\[back-to-indentation]' moves point to a line's first non-blank character.
2732
2733`\\[indent-relative]' is handy for creating odd indentation.
2734
2735@OTHER EMACS HINTS
2736
2737If you don't like the default value of a variable, change its value to
2738whatever you do like by putting a `setq' line in your .emacs file.
2739E.g., to set the indentation increment to 4, put this line in your
2740.emacs:
2741\t(setq py-indent-offset 4)
2742To see the value of a variable, do `\\[describe-variable]' and enter the variable
2743name at the prompt.
2744
2745When entering a key sequence like `C-c C-n', it is not necessary to
2746release the CONTROL key after doing the `C-c' part -- it suffices to
2747press the CONTROL key, press and release `c' (while still holding down
2748CONTROL), press and release `n' (while still holding down CONTROL), &
2749then release CONTROL.
2750
2751Entering Python mode calls with no arguments the value of the variable
2752`python-mode-hook', if that value exists and is not nil; for backward
2753compatibility it also tries `py-mode-hook'; see the `Hooks' section of
2754the Elisp manual for details.
2755
2756Obscure: When python-mode is first loaded, it looks for all bindings
2757to newline-and-indent in the global keymap, and shadows them with
2758local bindings to py-newline-and-indent."))
2759
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002760
2761;; Helper functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002762(defvar py-parse-state-re
2763 (concat
2764 "^[ \t]*\\(if\\|elif\\|else\\|while\\|def\\|class\\)\\>"
2765 "\\|"
2766 "^[^ #\t\n]"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002767
Barry Warsaw7ae77681994-12-12 20:38:05 +00002768(defun py-parse-state ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002769 "Return the parse state at point (see `parse-partial-sexp' docs)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002770 (save-excursion
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002771 (let ((here (point))
Barry Warsaw742a5111998-03-13 17:29:15 +00002772 pps done)
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002773 (while (not done)
2774 ;; back up to the first preceding line (if any; else start of
2775 ;; buffer) that begins with a popular Python keyword, or a
2776 ;; non- whitespace and non-comment character. These are good
2777 ;; places to start parsing to see whether where we started is
2778 ;; at a non-zero nesting level. It may be slow for people who
2779 ;; write huge code blocks or huge lists ... tough beans.
2780 (re-search-backward py-parse-state-re nil 'move)
2781 (beginning-of-line)
Barry Warsawf64b4051998-02-12 16:52:14 +00002782 ;; In XEmacs, we have a much better way to test for whether
2783 ;; we're in a triple-quoted string or not. Emacs does not
Barry Warsaw145ab1c1998-05-19 14:49:49 +00002784 ;; have this built-in function, which is its loss because
Barry Warsawf64b4051998-02-12 16:52:14 +00002785 ;; without scanning from the beginning of the buffer, there's
2786 ;; no accurate way to determine this otherwise.
2787 (if (not (fboundp 'buffer-syntactic-context))
2788 ;; Emacs
Barry Warsaw585f7331998-04-01 21:13:51 +00002789 (progn
2790 (save-excursion (setq pps (parse-partial-sexp (point) here)))
Barry Warsawf64b4051998-02-12 16:52:14 +00002791 ;; make sure we don't land inside a triple-quoted string
Barry Warsaw742a5111998-03-13 17:29:15 +00002792 (setq done (or (not (nth 3 pps))
Barry Warsaw53db8591999-05-24 19:57:32 +00002793 (bobp)))
2794 ;; Just go ahead and short circuit the test back to the
2795 ;; beginning of the buffer. This will be slow, but not
2796 ;; nearly as slow as looping through many
2797 ;; re-search-backwards.
2798 (if (not done)
2799 (goto-char (point-min))))
Barry Warsawf64b4051998-02-12 16:52:14 +00002800 ;; XEmacs
2801 (setq done (or (not (buffer-syntactic-context))
2802 (bobp)))
2803 (when done
2804 (setq pps (parse-partial-sexp (point) here)))
2805 ))
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002806 pps)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002807
Barry Warsaw7ae77681994-12-12 20:38:05 +00002808(defun py-nesting-level ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002809 "Return the buffer position of the last unclosed enclosing list.
2810If nesting level is zero, return nil."
Barry Warsawf64b4051998-02-12 16:52:14 +00002811 (let ((status (py-parse-state)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002812 (if (zerop (car status))
2813 nil ; not in a nest
2814 (car (cdr status))))) ; char# of open bracket
2815
Barry Warsaw7ae77681994-12-12 20:38:05 +00002816(defun py-backslash-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002817 "Return t iff preceding line ends with backslash that is not in a comment."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002818 (save-excursion
2819 (beginning-of-line)
2820 (and
2821 ;; use a cheap test first to avoid the regexp if possible
2822 ;; use 'eq' because char-after may return nil
2823 (eq (char-after (- (point) 2)) ?\\ )
2824 ;; make sure; since eq test passed, there is a preceding line
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002825 (forward-line -1) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002826 (looking-at py-continued-re))))
2827
Barry Warsaw7ae77681994-12-12 20:38:05 +00002828(defun py-continuation-line-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002829 "Return t iff current line is a continuation line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002830 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002831 (beginning-of-line)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002832 (or (py-backslash-continuation-line-p)
2833 (py-nesting-level))))
2834
Barry Warsaw9c1696c1998-12-15 04:36:22 +00002835(defun py-goto-beginning-of-tqs (delim)
2836 "Go to the beginning of the triple quoted string we find ourselves in.
2837DELIM is the TQS string delimiter character we're searching backwards
2838for."
2839 (let ((skip (and delim (make-string 1 delim))))
2840 (when skip
2841 (save-excursion
2842 (py-safe (search-backward skip))
2843 (if (and (eq (char-before) delim)
2844 (eq (char-before (1- (point))) delim))
2845 (setq skip (make-string 3 delim))))
2846 ;; we're looking at a triple-quoted string
2847 (py-safe (search-backward skip)))))
2848
Barry Warsaw7ae77681994-12-12 20:38:05 +00002849(defun py-goto-initial-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002850 "Go to the initial line of the current statement.
2851Usually this is the line we're on, but if we're on the 2nd or
2852following lines of a continuation block, we need to go up to the first
2853line of the block."
2854 ;; Tricky: We want to avoid quadratic-time behavior for long
2855 ;; continued blocks, whether of the backslash or open-bracket
2856 ;; varieties, or a mix of the two. The following manages to do that
2857 ;; in the usual cases.
2858 ;;
2859 ;; Also, if we're sitting inside a triple quoted string, this will
2860 ;; drop us at the line that begins the string.
Barry Warsaw9ec9fbc1998-01-21 05:15:57 +00002861 (let (open-bracket-pos)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002862 (while (py-continuation-line-p)
2863 (beginning-of-line)
2864 (if (py-backslash-continuation-line-p)
2865 (while (py-backslash-continuation-line-p)
2866 (forward-line -1))
2867 ;; else zip out of nested brackets/braces/parens
2868 (while (setq open-bracket-pos (py-nesting-level))
2869 (goto-char open-bracket-pos)))))
2870 (beginning-of-line))
2871
Barry Warsaw7ae77681994-12-12 20:38:05 +00002872(defun py-goto-beyond-final-line ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002873 "Go to the point just beyond the fine line of the current statement.
2874Usually this is the start of the next line, but if this is a
2875multi-line statement we need to skip over the continuation lines."
2876 ;; Tricky: Again we need to be clever to avoid quadratic time
2877 ;; behavior.
2878 ;;
2879 ;; XXX: Not quite the right solution, but deals with multi-line doc
2880 ;; strings
Barry Warsaw751f4931998-05-19 16:06:21 +00002881 (if (looking-at (concat "[ \t]*\\(" py-stringlit-re "\\)"))
2882 (goto-char (match-end 0)))
2883 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +00002884 (forward-line 1)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002885 (let (state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002886 (while (and (py-continuation-line-p)
2887 (not (eobp)))
2888 ;; skip over the backslash flavor
2889 (while (and (py-backslash-continuation-line-p)
2890 (not (eobp)))
2891 (forward-line 1))
2892 ;; if in nest, zip to the end of the nest
2893 (setq state (py-parse-state))
2894 (if (and (not (zerop (car state)))
2895 (not (eobp)))
2896 (progn
Barry Warsawaffc0ca1997-11-03 16:59:38 +00002897 (parse-partial-sexp (point) (point-max) 0 nil state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002898 (forward-line 1))))))
2899
Barry Warsaw7ae77681994-12-12 20:38:05 +00002900(defun py-statement-opens-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002901 "Return t iff the current statement opens a block.
2902I.e., iff it ends with a colon that is not in a comment. Point should
2903be at the start of a statement."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002904 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002905 (let ((start (point))
2906 (finish (progn (py-goto-beyond-final-line) (1- (point))))
2907 (searching t)
2908 (answer nil)
2909 state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002910 (goto-char start)
2911 (while searching
2912 ;; look for a colon with nothing after it except whitespace, and
2913 ;; maybe a comment
2914 (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$"
2915 finish t)
2916 (if (eq (point) finish) ; note: no `else' clause; just
2917 ; keep searching if we're not at
2918 ; the end yet
2919 ;; sure looks like it opens a block -- but it might
2920 ;; be in a comment
2921 (progn
2922 (setq searching nil) ; search is done either way
2923 (setq state (parse-partial-sexp start
2924 (match-beginning 0)))
2925 (setq answer (not (nth 4 state)))))
2926 ;; search failed: couldn't find another interesting colon
2927 (setq searching nil)))
2928 answer)))
2929
Barry Warsawf831d811996-07-31 20:42:59 +00002930(defun py-statement-closes-block-p ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002931 "Return t iff the current statement closes a block.
2932I.e., if the line starts with `return', `raise', `break', `continue',
2933and `pass'. This doesn't catch embedded statements."
Barry Warsawf831d811996-07-31 20:42:59 +00002934 (let ((here (point)))
Barry Warsawa8f99ba1999-05-24 18:37:57 +00002935 (py-goto-initial-line)
Barry Warsawc0d2d511999-06-03 22:18:59 +00002936 (back-to-indentation)
Barry Warsawf831d811996-07-31 20:42:59 +00002937 (prog1
Barry Warsawaffc0ca1997-11-03 16:59:38 +00002938 (looking-at (concat py-block-closing-keywords-re "\\>"))
Barry Warsawf831d811996-07-31 20:42:59 +00002939 (goto-char here))))
2940
Barry Warsaw7ae77681994-12-12 20:38:05 +00002941(defun py-goto-beyond-block ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002942 "Go to point just beyond the final line of block begun by the current line.
2943This is the same as where `py-goto-beyond-final-line' goes unless
2944we're on colon line, in which case we go to the end of the block.
2945Assumes point is at the beginning of the line."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002946 (if (py-statement-opens-block-p)
2947 (py-mark-block nil 'just-move)
2948 (py-goto-beyond-final-line)))
2949
Barry Warsaw7ae77681994-12-12 20:38:05 +00002950(defun py-goto-statement-at-or-above ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002951 "Go to the start of the first statement at or preceding point.
2952Return t if there is such a statement, otherwise nil. `Statement'
2953does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002954 (py-goto-initial-line)
2955 (if (looking-at py-blank-or-comment-re)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002956 ;; skip back over blank & comment lines
2957 ;; note: will skip a blank or comment line that happens to be
2958 ;; a continuation line too
2959 (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t)
2960 (progn (py-goto-initial-line) t)
2961 nil)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002962 t))
2963
Barry Warsaw7ae77681994-12-12 20:38:05 +00002964(defun py-goto-statement-below ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00002965 "Go to start of the first statement following the statement containing point.
2966Return t if there is such a statement, otherwise nil. `Statement'
2967does not include blank lines, comments, or continuation lines."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002968 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002969 (let ((start (point)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002970 (py-goto-beyond-final-line)
2971 (while (and
2972 (looking-at py-blank-or-comment-re)
2973 (not (eobp)))
2974 (forward-line 1))
2975 (if (eobp)
2976 (progn (goto-char start) nil)
2977 t)))
2978
Barry Warsaw7ae77681994-12-12 20:38:05 +00002979(defun py-go-up-tree-to-keyword (key)
Barry Warsaw41a05c71998-08-10 16:33:12 +00002980 "Go to begining of statement starting with KEY, at or preceding point.
2981
2982KEY is a regular expression describing a Python keyword. Skip blank
2983lines and non-indenting comments. If the statement found starts with
2984KEY, then stop, otherwise go back to first enclosing block starting
2985with KEY. If successful, leave point at the start of the KEY line and
2986return t. Otherwise, leav point at an undefined place and return nil."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002987 ;; skip blanks and non-indenting #
2988 (py-goto-initial-line)
2989 (while (and
2990 (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2991 (zerop (forward-line -1))) ; go back
2992 nil)
2993 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002994 (let* ((re (concat "[ \t]*" key "\\b"))
2995 (case-fold-search nil) ; let* so looking-at sees this
2996 (found (looking-at re))
2997 (dead nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002998 (while (not (or found dead))
2999 (condition-case nil ; in case no enclosing block
3000 (py-goto-block-up 'no-mark)
3001 (error (setq dead t)))
3002 (or dead (setq found (looking-at re))))
3003 (beginning-of-line)
3004 found))
3005
Barry Warsaw7ae77681994-12-12 20:38:05 +00003006(defun py-suck-up-leading-text ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003007 "Return string in buffer from start of indentation to end of line.
3008Prefix with \"...\" if leading whitespace was skipped."
Barry Warsaw7ae77681994-12-12 20:38:05 +00003009 (save-excursion
3010 (back-to-indentation)
3011 (concat
3012 (if (bolp) "" "...")
3013 (buffer-substring (point) (progn (end-of-line) (point))))))
3014
Barry Warsaw7ae77681994-12-12 20:38:05 +00003015(defun py-suck-up-first-keyword ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003016 "Return first keyword on the line as a Lisp symbol.
3017`Keyword' is defined (essentially) as the regular expression
3018([a-z]+). Returns nil if none was found."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003019 (let ((case-fold-search nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00003020 (if (looking-at "[ \t]*\\([a-z]+\\)\\b")
3021 (intern (buffer-substring (match-beginning 1) (match-end 1)))
3022 nil)))
3023
Barry Warsawb3e81d51996-09-04 15:12:42 +00003024(defun py-current-defun ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003025 "Python value for `add-log-current-defun-function'.
3026This tells add-log.el how to find the current function/method/variable."
Barry Warsawb3e81d51996-09-04 15:12:42 +00003027 (save-excursion
3028 (if (re-search-backward py-defun-start-re nil t)
3029 (or (match-string 3)
3030 (let ((method (match-string 2)))
3031 (if (and (not (zerop (length (match-string 1))))
3032 (re-search-backward py-class-start-re nil t))
3033 (concat (match-string 1) "." method)
3034 method)))
3035 nil)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003036
3037
Barry Warsawfec75d61995-07-05 23:26:15 +00003038(defconst py-help-address "python-mode@python.org"
Barry Warsaw850437a1995-03-08 21:50:28 +00003039 "Address accepting submission of bug reports.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003040
Barry Warsaw850437a1995-03-08 21:50:28 +00003041(defun py-version ()
3042 "Echo the current version of `python-mode' in the minibuffer."
3043 (interactive)
3044 (message "Using `python-mode' version %s" py-version)
3045 (py-keep-region-active))
3046
3047;; only works under Emacs 19
3048;(eval-when-compile
3049; (require 'reporter))
3050
3051(defun py-submit-bug-report (enhancement-p)
3052 "Submit via mail a bug report on `python-mode'.
Barry Warsaw41a05c71998-08-10 16:33:12 +00003053With \\[universal-argument] (programmatically, argument ENHANCEMENT-P
3054non-nil) just submit an enhancement request."
Barry Warsaw850437a1995-03-08 21:50:28 +00003055 (interactive
3056 (list (not (y-or-n-p
Barry Warsaw41a05c71998-08-10 16:33:12 +00003057 "Is this a bug report (hit `n' to send other comments)? "))))
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003058 (let ((reporter-prompt-for-summary-p (if enhancement-p
3059 "(Very) brief summary: "
3060 t)))
Barry Warsaw850437a1995-03-08 21:50:28 +00003061 (require 'reporter)
3062 (reporter-submit-bug-report
3063 py-help-address ;address
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00003064 (concat "python-mode " py-version) ;pkgname
Barry Warsaw850437a1995-03-08 21:50:28 +00003065 ;; varlist
3066 (if enhancement-p nil
3067 '(py-python-command
3068 py-indent-offset
3069 py-block-comment-prefix
Barry Warsaw850437a1995-03-08 21:50:28 +00003070 py-temp-directory
3071 py-beep-if-tab-change))
3072 nil ;pre-hooks
3073 nil ;post-hooks
3074 "Dear Barry,") ;salutation
3075 (if enhancement-p nil
3076 (set-mark (point))
3077 (insert
3078"Please replace this text with a sufficiently large code sample\n\
3079and an exact recipe so that I can reproduce your problem. Failure\n\
3080to do so may mean a greater delay in fixing your bug.\n\n")
3081 (exchange-point-and-mark)
3082 (py-keep-region-active))))
3083
3084
Barry Warsaw47384781997-11-26 05:27:45 +00003085(defun py-kill-emacs-hook ()
Barry Warsaw41a05c71998-08-10 16:33:12 +00003086 "Delete files in `py-file-queue'.
3087These are Python temporary files awaiting execution."
Barry Warsaw47384781997-11-26 05:27:45 +00003088 (mapcar #'(lambda (filename)
3089 (py-safe (delete-file filename)))
3090 py-file-queue))
3091
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003092;; arrange to kill temp files when Emacs exists
Barry Warsawc72c11c1997-08-09 06:42:08 +00003093(add-hook 'kill-emacs-hook 'py-kill-emacs-hook)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00003094
3095
3096
3097(provide 'python-mode)
3098;;; python-mode.el ends here