blob: 4f53f1fe1e79e67a03f35f95a0171b339fcf74ca [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 Warsaw5e21cb01997-11-05 18:41:11 +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
24;; subsequently left the net; in 1995, Barry Warsaw inherited the
25;; mode and is the current maintainer.
Barry Warsaw7b0f5681995-03-08 21:33:04 +000026
Barry Warsaw37231521997-12-11 17:23:13 +000027;; COMPATIBILITY:
Barry Warsaw7b0f5681995-03-08 21:33:04 +000028
Barry Warsaw37231521997-12-11 17:23:13 +000029;; This version of python-mode.el is no longer compatible with Emacs
30;; 18. For a gabazillion reasons, I highly recommend upgrading to
31;; X/Emacs 19 or X/Emacs 20. I recommend at least Emacs 19.34 or
32;; XEmacs 19.15. Any of the v20 X/Emacsen should be fine.
Barry Warsaw673d05f1997-12-02 21:51:57 +000033
Barry Warsaw37231521997-12-11 17:23:13 +000034;; NOTE TO FSF EMACS USERS:
35
36;; You may need to acquire the Custom library -- this applies to users
37;; of Emacs 19.34 and NTEmacs based on 19.34, but not to Emacs 20
38;; users. You must also byte-compile this file before use -- this
39;; applies to FSF's Emacs 19.34, 20.x, and NTEmacs based on 19.34.
40;; None of this applies to XEmacs (although byte compilation is still
41;; recommended). You will also need to add the following to your
42;; .emacs file so that the .py files come up in python-mode:
Barry Warsaw7ae77681994-12-12 20:38:05 +000043;;
Barry Warsawaffc0ca1997-11-03 16:59:38 +000044;; (autoload 'python-mode "python-mode" "Python editing mode." t)
45;; (setq auto-mode-alist
46;; (cons '("\\.py$" . python-mode) auto-mode-alist))
47;; (setq interpreter-mode-alist
48;; (cons '("python" . python-mode) interpreter-mode-alist))
Barry Warsaw44b72201996-07-05 20:11:35 +000049;;
Barry Warsawaffc0ca1997-11-03 16:59:38 +000050;; Assuming python-mode.el is on your load-path, it will be invoked
51;; when you visit a .py file, or a file with a first line that looks
52;; like:
53;;
54;; #! /usr/bin/env python
55
Barry Warsaw37231521997-12-11 17:23:13 +000056;; NOTE TO XEMACS USERS:
57
58;; An older version of this file was distributed with XEmacs 19.15,
59;; 19.16 and 20.3. By default, in XEmacs when you visit a .py file,
60;; the buffer is put in Python mode. Likewise for executable scripts
61;; with the word `python' on the first line. You shouldn't need to do
62;; much except make sure this new version is earlier in your
63;; load-path, and byte-compile this file.
64
65;; FOR MORE INFORMATION:
66
67;; Please see <http://www.python.org/ftp/emacs/pmdetails.html> for the
68;; latest information and compatibility notes.
69
70;; BUG REPORTING:
Barry Warsaw7ae77681994-12-12 20:38:05 +000071
Barry Warsawaffc0ca1997-11-03 16:59:38 +000072;; To submit bug reports, use C-c C-b. Please include a complete, but
73;; concise code sample and a recipe for reproducing the bug. Send
74;; suggestions and other comments to python-mode@python.org.
75
76;; When in a Python mode buffer, do a C-h m for more help. It's
Barry Warsaw37231521997-12-11 17:23:13 +000077;; doubtful that a texinfo manual would be very useful, but if you
78;; want to contribute one, I'll certainly accept it!
Barry Warsawb5e0ecb1995-03-14 18:32:54 +000079
Barry Warsaw5ea20d51997-12-06 00:00:47 +000080;; If you are using XEmacs, you may also want to check out OO-Browser
81;; that comes bundled with it, including documentation in the info
82;; pages. For GNU Emacs you have to install it yourself. To read
83;; more about OO-Browser, follow these links:
84
85;; http://www.python.org/workshops/1996-06/papers/h.pasanen/oobr_contents.html
86;; http://www.infodock.com/manuals/alt-oobr-cover.html
87
Barry Warsaw37231521997-12-11 17:23:13 +000088;; You may also want to take a look at Harri Pasanen's "Python Library
89;; Reference Hot-Key Help System for XEmacs (or PLRHKHSX for short ;),
90;; version 1.0"
Barry Warsaw7b0f5681995-03-08 21:33:04 +000091;;
Barry Warsaw37231521997-12-11 17:23:13 +000092;; <http://www.iki.fi/hpa/>
93
94;; TO DO LIST:
95
96;; - Better integration with pdb.py and gud-mode for debugging.
Barry Warsawb5e0ecb1995-03-14 18:32:54 +000097;; - Rewrite according to GNU Emacs Lisp standards.
Barry Warsaw5c0d00f1996-07-31 21:30:21 +000098;; - possibly force indent-tabs-mode == nil, and add a
99;; write-file-hooks that runs untabify on the whole buffer (to work
100;; around potential tab/space mismatch problems). In practice this
101;; hasn't been a problem... yet.
Barry Warsaw9e277db1996-07-31 22:33:40 +0000102;; - have py-execute-region on indented code act as if the region is
Barry Warsaw37231521997-12-11 17:23:13 +0000103;; left justified. Avoids syntax errors.
104;; - add a py-goto-block-down, bound to C-c C-d
Barry Warsaw7ae77681994-12-12 20:38:05 +0000105
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000106;;; Code:
107
Barry Warsawc72c11c1997-08-09 06:42:08 +0000108(require 'custom)
Barry Warsaw8529ebb1997-12-01 20:03:12 +0000109(eval-when-compile
Barry Warsaw673d05f1997-12-02 21:51:57 +0000110 (require 'cl)
111 (require 'custom)
112 ;; Stock Emacs 19.34 has a broken/old Custom library that does more
113 ;; harm than good
114 (or (fboundp 'defcustom)
115 (error "STOP! STOP! STOP! STOP!
116
117The Custom library was not found or is out of date. A more current
118version is required. Please download and install the latest version
119of the Custom library from:
120
121 <http://www.dina.kvl.dk/~abraham/custom/>
122
123See the Python Mode home page for details:
124
125 <http://www.python.org/ftp/emacs/>
126")))
127
Barry Warsawc72c11c1997-08-09 06:42:08 +0000128
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000129
130;; user definable variables
131;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
Barry Warsaw7ae77681994-12-12 20:38:05 +0000132
Barry Warsawc72c11c1997-08-09 06:42:08 +0000133(defgroup python nil
134 "Support for the Python programming language, <http://www.python.org/>"
135 :group 'languages)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000136
Barry Warsawc72c11c1997-08-09 06:42:08 +0000137(defcustom py-python-command "python"
138 "*Shell command used to start Python interpreter."
139 :type 'string
140 :group 'python)
141
Barry Warsaw8f972b71998-02-05 20:45:49 +0000142(defcustom py-python-command-args '("-i")
143 "*List of string arguments to be used when starting a Python shell."
144 :type '(repeat string)
145 :group 'python)
146
Barry Warsawc72c11c1997-08-09 06:42:08 +0000147(defcustom py-indent-offset 4
148 "*Amount of offset per level of indentation
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000149Note that `\\[py-guess-indent-offset]' can usually guess a good value
Barry Warsawc72c11c1997-08-09 06:42:08 +0000150when you're editing someone else's Python code."
151 :type 'integer
152 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000153
Barry Warsaw742a5111998-03-13 17:29:15 +0000154(defcustom py-smart-indentation t
155 "*Should `python-mode' try to automagically set some indentation variables?
156When this variable is non-nil, two things happen when a buffer is set
157to `python-mode':
158
159 1. `py-indent-offset' is guess from existing code in the buffer.
Barry Warsaw639eea61998-03-16 18:12:13 +0000160 Only guessed values between 2 and 8 are considered. If a valid
Barry Warsaw742a5111998-03-13 17:29:15 +0000161 guess can't be made (perhaps because you are visiting a new
Barry Warsaw639eea61998-03-16 18:12:13 +0000162 file), then the value in `py-indent-offset' is used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000163
Barry Warsaw639eea61998-03-16 18:12:13 +0000164 2. `indent-tabs-mode' is turned off if `py-indent-offset' does not
165 equal `tab-width' (`indent-tabs-mode' is never turned on by
166 Python mode). This means that for newly written code, tabs are
167 only inserted in indentation if one tab is one indentation
168 level, otherwise only spaces are used.
Barry Warsaw742a5111998-03-13 17:29:15 +0000169
Barry Warsaw8046bef1998-03-13 20:04:52 +0000170Note that both these settings occur *after* `python-mode-hook' is run,
171so if you want to defeat the automagic configuration, you must also
172set `py-smart-indentation' to nil in your `python-mode-hook'."
Barry Warsaw742a5111998-03-13 17:29:15 +0000173 :type 'boolean
174 :group 'python)
175
Barry Warsawc72c11c1997-08-09 06:42:08 +0000176(defcustom py-align-multiline-strings-p t
177 "*Flag describing how multi-line triple quoted strings are aligned.
Barry Warsaw095e9c61995-09-19 20:01:42 +0000178When this flag is non-nil, continuation lines are lined up under the
179preceding line's indentation. When this flag is nil, continuation
Barry Warsawc72c11c1997-08-09 06:42:08 +0000180lines are aligned to column zero."
181 :type '(choice (const :tag "Align under preceding line" t)
182 (const :tag "Align to column zero" nil))
183 :group 'python)
Barry Warsaw095e9c61995-09-19 20:01:42 +0000184
Barry Warsawc72c11c1997-08-09 06:42:08 +0000185(defcustom py-block-comment-prefix "## "
Barry Warsaw867a32a1996-03-07 18:30:26 +0000186 "*String used by \\[comment-region] to comment out a block of code.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000187This should follow the convention for non-indenting comment lines so
188that the indentation commands won't get confused (i.e., the string
189should be of the form `#x...' where `x' is not a blank or a tab, and
Barry Warsawc72c11c1997-08-09 06:42:08 +0000190`...' is arbitrary)."
191 :type 'string
192 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000193
Barry Warsawc72c11c1997-08-09 06:42:08 +0000194(defcustom py-honor-comment-indentation t
Barry Warsaw6d627751996-03-06 18:41:38 +0000195 "*Controls how comment lines influence subsequent indentation.
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000196
Barry Warsaw6d627751996-03-06 18:41:38 +0000197When nil, all comment lines are skipped for indentation purposes, and
Barry Warsawc72c11c1997-08-09 06:42:08 +0000198if possible, a faster algorithm is used (i.e. X/Emacs 19 and beyond).
Barry Warsaw6d627751996-03-06 18:41:38 +0000199
200When t, lines that begin with a single `#' are a hint to subsequent
201line indentation. If the previous line is such a comment line (as
202opposed to one that starts with `py-block-comment-prefix'), then it's
203indentation is used as a hint for this line's indentation. Lines that
204begin with `py-block-comment-prefix' are ignored for indentation
205purposes.
206
207When not nil or t, comment lines that begin with a `#' are used as
Barry Warsawc72c11c1997-08-09 06:42:08 +0000208indentation hints, unless the comment character is in column zero."
209 :type '(choice
210 (const :tag "Skip all comment lines (fast)" nil)
211 (const :tag "Single # `sets' indentation for next line" t)
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000212 (const :tag "Single # `sets' indentation except at column zero"
213 other)
Barry Warsawc72c11c1997-08-09 06:42:08 +0000214 )
215 :group 'python)
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000216
Barry Warsaw8ee4a601998-02-06 16:01:52 +0000217(defcustom py-scroll-process-buffer nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000218 "*Scroll Python process buffer as output arrives.
219If nil, the Python process buffer acts, with respect to scrolling, like
220Shell-mode buffers normally act. This is surprisingly complicated and
221so won't be explained here; in fact, you can't get the whole story
222without studying the Emacs C code.
223
224If non-nil, the behavior is different in two respects (which are
225slightly inaccurate in the interest of brevity):
226
227 - If the buffer is in a window, and you left point at its end, the
228 window will scroll as new output arrives, and point will move to the
229 buffer's end, even if the window is not the selected window (that
230 being the one the cursor is in). The usual behavior for shell-mode
231 windows is not to scroll, and to leave point where it was, if the
232 buffer is in a window other than the selected window.
233
234 - If the buffer is not visible in any window, and you left point at
235 its end, the buffer will be popped into a window as soon as more
236 output arrives. This is handy if you have a long-running
237 computation and don't want to tie up screen area waiting for the
238 output. The usual behavior for a shell-mode buffer is to stay
239 invisible until you explicitly visit it.
240
241Note the `and if you left point at its end' clauses in both of the
242above: you can `turn off' the special behaviors while output is in
243progress, by visiting the Python buffer and moving point to anywhere
244besides the end. Then the buffer won't scroll, point will remain where
245you leave it, and if you hide the buffer it will stay hidden until you
246visit it again. You can enable and disable the special behaviors as
247often as you like, while output is in progress, by (respectively) moving
248point to, or away from, the end of the buffer.
249
250Warning: If you expect a large amount of output, you'll probably be
251happier setting this option to nil.
252
253Obscure: `End of buffer' above should really say `at or beyond the
254process mark', but if you know what that means you didn't need to be
Barry Warsawc72c11c1997-08-09 06:42:08 +0000255told <grin>."
256 :type 'boolean
257 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000258
Barry Warsaw516b6201997-08-09 06:43:20 +0000259(defcustom py-temp-directory
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000260 (let ((ok '(lambda (x)
261 (and x
262 (setq x (expand-file-name x)) ; always true
263 (file-directory-p x)
264 (file-writable-p x)
265 x))))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000266 (or (funcall ok (getenv "TMPDIR"))
267 (funcall ok "/usr/tmp")
268 (funcall ok "/tmp")
269 (funcall ok ".")
270 (error
Barry Warsaw6c6db0a1998-02-25 16:33:56 +0000271 "Couldn't find a usable temp directory -- set `py-temp-directory'")))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000272 "*Directory used for temp files created by a *Python* process.
273By default, the first directory from this list that exists and that you
274can write into: the value (if any) of the environment variable TMPDIR,
Barry Warsawc72c11c1997-08-09 06:42:08 +0000275/usr/tmp, /tmp, or the current directory."
276 :type 'string
277 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000278
Barry Warsaw516b6201997-08-09 06:43:20 +0000279(defcustom py-beep-if-tab-change t
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000280 "*Ring the bell if tab-width is changed.
281If a comment of the form
282
283 \t# vi:set tabsize=<number>:
284
285is found before the first code line when the file is entered, and the
286current value of (the general Emacs variable) `tab-width' does not
287equal <number>, `tab-width' is set to <number>, a message saying so is
288displayed in the echo area, and if `py-beep-if-tab-change' is non-nil
Barry Warsawc72c11c1997-08-09 06:42:08 +0000289the Emacs bell is also rung as a warning."
290 :type 'boolean
291 :group 'python)
292
Barry Warsaw9981d221997-12-03 05:25:48 +0000293(defcustom py-jump-on-exception t
294 "*Jump to innermost exception frame in *Python Output* buffer.
295When this variable is non-nil and ane exception occurs when running
296Python code synchronously in a subprocess, jump immediately to the
297source code of the innermost frame.")
298
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000299(defcustom py-backspace-function 'backward-delete-char-untabify
300 "*Function called by `py-electric-backspace' when deleting backwards."
301 :type 'function
302 :group 'python)
303
304(defcustom py-delete-function 'delete-char
305 "*Function called by `py-electric-delete' when deleting forwards."
306 :type 'function
307 :group 'python)
308
Barry Warsawc0ecb531998-01-20 21:43:34 +0000309;; Not customizable
310(defvar py-master-file nil
311 "If non-nil, execute the named file instead of the buffer's file.
Barry Warsaw50b3eb61998-02-25 15:57:47 +0000312The intent is to allow you to set this variable in the file's local
Barry Warsawc0ecb531998-01-20 21:43:34 +0000313variable section, e.g.:
314
315 # Local Variables:
316 # py-master-file: \"master.py\"
317 # End:
318
Barry Warsaw50b3eb61998-02-25 15:57:47 +0000319so that typing \\[py-execute-buffer] in that buffer executes the
Barry Warsawc0ecb531998-01-20 21:43:34 +0000320named master file instead of the buffer's file. Note that if the file
Barry Warsaw50b3eb61998-02-25 15:57:47 +0000321name has a relative path, the `default-directory' for the buffer is
322prepended to come up with a file name.")
Barry Warsawc0ecb531998-01-20 21:43:34 +0000323(make-variable-buffer-local 'py-master-file)
324
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000325
Barry Warsawc72c11c1997-08-09 06:42:08 +0000326
327;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
328;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT
329
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000330(defconst py-emacs-features
331 (let (features)
332 ;; NTEmacs 19.34.6 has a broken make-temp-name; it always returns
333 ;; the same string.
334 (let ((tmp1 (make-temp-name ""))
335 (tmp2 (make-temp-name "")))
336 (if (string-equal tmp1 tmp2)
337 (push 'broken-temp-names features)))
338 ;; return the features
339 features)
Barry Warsawc12c62e1997-09-04 04:18:07 +0000340 "A list of features extant in the Emacs you are using.
Barry Warsaw6ae21ad1997-11-06 14:36:49 +0000341There are many flavors of Emacs out there, with different levels of
342support for features needed by `python-mode'.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000343
Barry Warsawfb07f401997-02-24 03:37:22 +0000344(defvar python-font-lock-keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000345 (let ((kw1 (mapconcat 'identity
346 '("and" "assert" "break" "class"
347 "continue" "def" "del" "elif"
348 "else" "except" "exec" "for"
349 "from" "global" "if" "import"
350 "in" "is" "lambda" "not"
351 "or" "pass" "print" "raise"
352 "return" "while"
353 )
354 "\\|"))
355 (kw2 (mapconcat 'identity
356 '("else:" "except:" "finally:" "try:")
357 "\\|"))
358 )
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000359 (list
Barry Warsawef3c8911997-11-05 18:55:50 +0000360 ;; keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000361 (cons (concat "\\b\\(" kw1 "\\)\\b[ \n\t(]") 1)
362 ;; block introducing keywords with immediately following colons.
363 ;; Yes "except" is in both lists.
364 (cons (concat "\\b\\(" kw2 "\\)[ \n\t(]") 1)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000365 ;; classes
366 '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
367 1 font-lock-type-face)
368 ;; functions
369 '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
370 1 font-lock-function-name-face)
371 ))
Barry Warsaw62d9d6e1996-03-06 20:32:27 +0000372 "Additional expressions to highlight in Python mode.")
Barry Warsawfb07f401997-02-24 03:37:22 +0000373(put 'python-mode 'font-lock-defaults '(python-font-lock-keywords))
374
Barry Warsawb01b4fa1995-06-20 18:55:34 +0000375
Barry Warsaw81437461996-08-01 19:48:02 +0000376(defvar imenu-example--python-show-method-args-p nil
377 "*Controls echoing of arguments of functions & methods in the imenu buffer.
378When non-nil, arguments are printed.")
379
Barry Warsaw52bc17c1995-10-12 21:15:49 +0000380(make-variable-buffer-local 'py-indent-offset)
381
Barry Warsawe467bfb1997-11-26 05:40:58 +0000382;; have to bind py-file-queue before installing the kill-emacs-hook
Barry Warsaw7ae77681994-12-12 20:38:05 +0000383(defvar py-file-queue nil
384 "Queue of Python temp files awaiting execution.
385Currently-active file is at the head of the list.")
386
Barry Warsawc72c11c1997-08-09 06:42:08 +0000387
388;; Constants
389
390;; Regexp matching a Python string literal
391(defconst py-stringlit-re
392 (concat
393 "'\\([^'\n\\]\\|\\\\.\\)*'" ; single-quoted
394 "\\|" ; or
395 "\"\\([^\"\n\\]\\|\\\\.\\)*\"")) ; double-quoted
396
397;; Regexp matching Python lines that are continued via backslash.
398;; This is tricky because a trailing backslash does not mean
399;; continuation if it's in a comment
400(defconst py-continued-re
401 (concat
402 "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*"
403 "\\\\$"))
404
405;; Regexp matching blank or comment lines.
406(defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)")
407
408;; Regexp matching clauses to be outdented one level.
409(defconst py-outdent-re
410 (concat "\\(" (mapconcat 'identity
411 '("else:"
412 "except\\(\\s +.*\\)?:"
413 "finally:"
414 "elif\\s +.*:")
415 "\\|")
416 "\\)"))
417
418
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000419;; Regexp matching keywords which typically close a block
420(defconst py-block-closing-keywords-re
421 "\\(return\\|raise\\|break\\|continue\\|pass\\)")
422
Barry Warsawc72c11c1997-08-09 06:42:08 +0000423;; Regexp matching lines to not outdent after.
424(defconst py-no-outdent-re
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000425 (concat
426 "\\("
427 (mapconcat 'identity
428 (list "try:"
429 "except\\(\\s +.*\\)?:"
430 "while\\s +.*:"
431 "for\\s +.*:"
432 "if\\s +.*:"
433 "elif\\s +.*:"
434 (concat py-block-closing-keywords-re "[ \t\n]")
435 )
436 "\\|")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000437 "\\)"))
438
439;; Regexp matching a function, method or variable assignment. If you
440;; change this, you probably have to change `py-current-defun' as
441;; well. This is only used by `py-current-defun' to find the name for
442;; add-log.el.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000443(defconst py-defun-start-re
Barry Warsawc72c11c1997-08-09 06:42:08 +0000444 "^\\([ \t]*\\)def[ \t]+\\([a-zA-Z_0-9]+\\)\\|\\(^[a-zA-Z_0-9]+\\)[ \t]*=")
445
446;; Regexp for finding a class name. If you change this, you probably
447;; have to change `py-current-defun' as well. This is only used by
448;; `py-current-defun' to find the name for add-log.el.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000449(defconst py-class-start-re "^class[ \t]*\\([a-zA-Z_0-9]+\\)")
450
451;; Regexp that describes tracebacks
452(defconst py-traceback-line-re
Barry Warsawffbc17d1997-11-27 20:08:14 +0000453 "[ \t]+File \"\\([^\"]+\\)\", line \\([0-9]+\\)")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000454
455
456
457;; Utilities
458
459(defmacro py-safe (&rest body)
460 ;; safely execute BODY, return nil if an error occurred
461 (` (condition-case nil
462 (progn (,@ body))
463 (error nil))))
464
465(defsubst py-keep-region-active ()
466 ;; Do whatever is necessary to keep the region active in XEmacs.
467 ;; Ignore byte-compiler warnings you might see. Also note that
468 ;; FSF's Emacs 19 does it differently; its policy doesn't require us
469 ;; to take explicit action.
470 (and (boundp 'zmacs-region-stays)
471 (setq zmacs-region-stays t)))
472
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000473(defsubst py-point (position)
474 ;; Returns the value of point at certain commonly referenced POSITIONs.
475 ;; POSITION can be one of the following symbols:
476 ;;
477 ;; bol -- beginning of line
478 ;; eol -- end of line
479 ;; bod -- beginning of defun
480 ;; boi -- back to indentation
481 ;;
482 ;; This function does not modify point or mark.
483 (let ((here (point)))
484 (cond
485 ((eq position 'bol) (beginning-of-line))
486 ((eq position 'eol) (end-of-line))
487 ((eq position 'bod) (beginning-of-python-def-or-class))
488 ((eq position 'bob) (beginning-of-buffer))
489 ((eq position 'eob) (end-of-buffer))
490 ((eq position 'boi) (back-to-indentation))
491 (t (error "unknown buffer position requested: %s" position))
492 )
493 (prog1
494 (point)
495 (goto-char here))))
496
497(defsubst py-highlight-line (from to file line)
498 (cond
499 ((fboundp 'make-extent)
500 ;; XEmacs
501 (let ((e (make-extent from to)))
502 (set-extent-property e 'mouse-face 'highlight)
503 (set-extent-property e 'py-exc-info (cons file line))
504 (set-extent-property e 'keymap py-mode-output-map)))
505 (t
506 ;; Emacs -- Please port this!
507 )
508 ))
509
Barry Warsawc72c11c1997-08-09 06:42:08 +0000510
511;; Major mode boilerplate
512
Barry Warsaw7ae77681994-12-12 20:38:05 +0000513;; define a mode-specific abbrev table for those who use such things
514(defvar python-mode-abbrev-table nil
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000515 "Abbrev table in use in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000516(define-abbrev-table 'python-mode-abbrev-table nil)
517
Barry Warsaw7ae77681994-12-12 20:38:05 +0000518(defvar python-mode-hook nil
519 "*Hook called by `python-mode'.")
520
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000521;; in previous version of python-mode.el, the hook was incorrectly
522;; called py-mode-hook, and was not defvar'd. deprecate its use.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000523(and (fboundp 'make-obsolete-variable)
524 (make-obsolete-variable 'py-mode-hook 'python-mode-hook))
525
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000526(defvar py-mode-map ()
527 "Keymap used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000528(if py-mode-map
Barry Warsawc72c11c1997-08-09 06:42:08 +0000529 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000530 (setq py-mode-map (make-sparse-keymap))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000531 ;; electric keys
532 (define-key py-mode-map ":" 'py-electric-colon)
533 ;; indentation level modifiers
534 (define-key py-mode-map "\C-c\C-l" 'py-shift-region-left)
535 (define-key py-mode-map "\C-c\C-r" 'py-shift-region-right)
536 (define-key py-mode-map "\C-c<" 'py-shift-region-left)
537 (define-key py-mode-map "\C-c>" 'py-shift-region-right)
538 ;; subprocess commands
539 (define-key py-mode-map "\C-c\C-c" 'py-execute-buffer)
540 (define-key py-mode-map "\C-c|" 'py-execute-region)
541 (define-key py-mode-map "\C-c!" 'py-shell)
542 ;; Caution! Enter here at your own risk. We are trying to support
543 ;; several behaviors and it gets disgusting. :-( This logic ripped
544 ;; largely from CC Mode.
545 ;;
546 ;; In XEmacs 19, Emacs 19, and Emacs 20, we use this to bind
547 ;; backwards deletion behavior to DEL, which both Delete and
548 ;; Backspace get translated to. There's no way to separate this
549 ;; behavior in a clean way, so deal with it! Besides, it's been
550 ;; this way since the dawn of time.
551 (if (not (boundp 'delete-key-deletes-forward))
552 (define-key py-mode-map "\177" 'py-electric-backspace)
553 ;; However, XEmacs 20 actually achieved enlightenment. It is
554 ;; possible to sanely define both backward and forward deletion
555 ;; behavior under X separately (TTYs are forever beyond hope, but
556 ;; who cares? XEmacs 20 does the right thing with these too).
557 (define-key py-mode-map [delete] 'py-electric-delete)
558 (define-key py-mode-map [backspace] 'py-electric-backspace))
Barry Warsaw8c4a8de1997-11-26 20:30:33 +0000559 ;; Separate M-BS from C-M-h. The former should remain
560 ;; backward-kill-word.
561 (define-key py-mode-map [(control meta h)] 'py-mark-def-or-class)
Barry Warsaw2518c671997-11-05 00:51:08 +0000562 (define-key py-mode-map "\C-c\C-k" 'py-mark-block)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000563 ;; Miscellaneous
564 (define-key py-mode-map "\C-c:" 'py-guess-indent-offset)
565 (define-key py-mode-map "\C-c\t" 'py-indent-region)
566 (define-key py-mode-map "\C-c\C-n" 'py-next-statement)
567 (define-key py-mode-map "\C-c\C-p" 'py-previous-statement)
568 (define-key py-mode-map "\C-c\C-u" 'py-goto-block-up)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000569 (define-key py-mode-map "\C-c#" 'py-comment-region)
570 (define-key py-mode-map "\C-c?" 'py-describe-mode)
571 (define-key py-mode-map "\C-c\C-hm" 'py-describe-mode)
572 (define-key py-mode-map "\e\C-a" 'beginning-of-python-def-or-class)
573 (define-key py-mode-map "\e\C-e" 'end-of-python-def-or-class)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000574 (define-key py-mode-map "\C-c-" 'py-up-exception)
575 (define-key py-mode-map "\C-c=" 'py-down-exception)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000576 ;; information
577 (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report)
578 (define-key py-mode-map "\C-c\C-v" 'py-version)
579 ;; py-newline-and-indent mappings
Barry Warsaw82aecb91998-01-21 05:14:24 +0000580 (define-key py-mode-map "\n" 'py-newline-and-indent)
581 (define-key py-mode-map "\C-m" 'py-newline-and-indent)
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000582 ;; shadow global bindings for newline-and-indent w/ the py- version.
583 ;; BAW - this is extremely bad form, but I'm not going to change it
584 ;; for now.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000585 (mapcar #'(lambda (key)
586 (define-key py-mode-map key 'py-newline-and-indent))
587 (where-is-internal 'newline-and-indent))
588 )
589
590(defvar py-mode-output-map nil
591 "Keymap used in *Python Output* buffers*")
592(if py-mode-output-map
593 nil
594 (setq py-mode-output-map (make-sparse-keymap))
595 (define-key py-mode-output-map [button2] 'py-mouseto-exception)
596 (define-key py-mode-output-map "\C-c\C-c" 'py-goto-exception)
597 ;; TBD: Disable all self-inserting keys. This is bogus, we should
598 ;; really implement this as *Python Output* buffer being read-only
599 (mapcar #' (lambda (key)
600 (define-key py-mode-output-map key
601 #'(lambda () (interactive) (beep))))
602 (where-is-internal 'self-insert-command))
Barry Warsaw850437a1995-03-08 21:50:28 +0000603 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000604
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000605(defvar py-mode-syntax-table nil
606 "Syntax table used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000607(if py-mode-syntax-table
Barry Warsawc72c11c1997-08-09 06:42:08 +0000608 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000609 (setq py-mode-syntax-table (make-syntax-table))
Barry Warsawc72c11c1997-08-09 06:42:08 +0000610 (modify-syntax-entry ?\( "()" py-mode-syntax-table)
611 (modify-syntax-entry ?\) ")(" py-mode-syntax-table)
612 (modify-syntax-entry ?\[ "(]" py-mode-syntax-table)
613 (modify-syntax-entry ?\] ")[" py-mode-syntax-table)
614 (modify-syntax-entry ?\{ "(}" py-mode-syntax-table)
615 (modify-syntax-entry ?\} "){" py-mode-syntax-table)
616 ;; Add operator symbols misassigned in the std table
617 (modify-syntax-entry ?\$ "." py-mode-syntax-table)
618 (modify-syntax-entry ?\% "." py-mode-syntax-table)
619 (modify-syntax-entry ?\& "." py-mode-syntax-table)
620 (modify-syntax-entry ?\* "." py-mode-syntax-table)
621 (modify-syntax-entry ?\+ "." py-mode-syntax-table)
622 (modify-syntax-entry ?\- "." py-mode-syntax-table)
623 (modify-syntax-entry ?\/ "." py-mode-syntax-table)
624 (modify-syntax-entry ?\< "." py-mode-syntax-table)
625 (modify-syntax-entry ?\= "." py-mode-syntax-table)
626 (modify-syntax-entry ?\> "." py-mode-syntax-table)
627 (modify-syntax-entry ?\| "." py-mode-syntax-table)
628 ;; For historical reasons, underscore is word class instead of
629 ;; symbol class. GNU conventions say it should be symbol class, but
630 ;; there's a natural conflict between what major mode authors want
631 ;; and what users expect from `forward-word' and `backward-word'.
632 ;; Guido and I have hashed this out and have decided to keep
633 ;; underscore in word class. If you're tempted to change it, try
634 ;; binding M-f and M-b to py-forward-into-nomenclature and
635 ;; py-backward-into-nomenclature instead.
636 (modify-syntax-entry ?\_ "w" py-mode-syntax-table)
637 ;; Both single quote and double quote are string delimiters
638 (modify-syntax-entry ?\' "\"" py-mode-syntax-table)
639 (modify-syntax-entry ?\" "\"" py-mode-syntax-table)
640 ;; backquote is open and close paren
641 (modify-syntax-entry ?\` "$" py-mode-syntax-table)
642 ;; comment delimiters
643 (modify-syntax-entry ?\# "<" py-mode-syntax-table)
644 (modify-syntax-entry ?\n ">" py-mode-syntax-table)
645 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000646
Barry Warsawb3e81d51996-09-04 15:12:42 +0000647
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000648
Barry Warsaw42f707f1996-07-29 21:05:05 +0000649;; Menu definitions, only relevent if you have the easymenu.el package
650;; (standard in the latest Emacs 19 and XEmacs 19 distributions).
Barry Warsaw5490a061996-08-06 15:43:33 +0000651(defvar py-menu nil
652 "Menu for Python Mode.
Barry Warsawc72c11c1997-08-09 06:42:08 +0000653This menu will get created automatically if you have the `easymenu'
654package. Note that the latest X/Emacs releases contain this package.")
Barry Warsaw5490a061996-08-06 15:43:33 +0000655
Barry Warsawc72c11c1997-08-09 06:42:08 +0000656(and (py-safe (require 'easymenu) t)
657 (easy-menu-define
658 py-menu py-mode-map "Python Mode menu"
659 '("Python"
660 ["Comment Out Region" py-comment-region (mark)]
661 ["Uncomment Region" (py-comment-region (point) (mark) '(4)) (mark)]
662 "-"
663 ["Mark current block" py-mark-block t]
Barry Warsaw2518c671997-11-05 00:51:08 +0000664 ["Mark current def" py-mark-def-or-class t]
665 ["Mark current class" (py-mark-def-or-class t) t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000666 "-"
667 ["Shift region left" py-shift-region-left (mark)]
668 ["Shift region right" py-shift-region-right (mark)]
669 "-"
670 ["Execute buffer" py-execute-buffer t]
671 ["Execute region" py-execute-region (mark)]
672 ["Start interpreter..." py-shell t]
673 "-"
674 ["Go to start of block" py-goto-block-up t]
675 ["Go to start of class" (beginning-of-python-def-or-class t) t]
676 ["Move to end of class" (end-of-python-def-or-class t) t]
677 ["Move to start of def" beginning-of-python-def-or-class t]
678 ["Move to end of def" end-of-python-def-or-class t]
679 "-"
680 ["Describe mode" py-describe-mode t]
681 )))
Barry Warsaw42f707f1996-07-29 21:05:05 +0000682
Barry Warsaw81437461996-08-01 19:48:02 +0000683
684
685;; imenu definitions, courtesy of Perry A. Stoll <stoll@atr-sw.atr.co.jp>
686(defvar imenu-example--python-class-regexp
687 (concat ; <<classes>>
688 "\\(" ;
689 "^[ \t]*" ; newline and maybe whitespace
690 "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name
691 ; possibly multiple superclasses
692 "\\([ \t]*\\((\\([a-zA-Z0-9_, \t\n]\\)*)\\)?\\)"
693 "[ \t]*:" ; and the final :
694 "\\)" ; >>classes<<
695 )
696 "Regexp for Python classes for use with the imenu package."
697 )
698
699(defvar imenu-example--python-method-regexp
700 (concat ; <<methods and functions>>
701 "\\(" ;
702 "^[ \t]*" ; new line and maybe whitespace
703 "\\(def[ \t]+" ; function definitions start with def
704 "\\([a-zA-Z0-9_]+\\)" ; name is here
705 ; function arguments...
706 "[ \t]*(\\([a-zA-Z0-9_=,\* \t\n]*\\))"
707 "\\)" ; end of def
708 "[ \t]*:" ; and then the :
709 "\\)" ; >>methods and functions<<
710 )
711 "Regexp for Python methods/functions for use with the imenu package."
712 )
713
714(defvar imenu-example--python-method-no-arg-parens '(2 8)
715 "Indicies into groups of the Python regexp for use with imenu.
716
717Using these values will result in smaller imenu lists, as arguments to
718functions are not listed.
719
720See the variable `imenu-example--python-show-method-args-p' for more
721information.")
722
723(defvar imenu-example--python-method-arg-parens '(2 7)
724 "Indicies into groups of the Python regexp for use with imenu.
725Using these values will result in large imenu lists, as arguments to
726functions are listed.
727
728See the variable `imenu-example--python-show-method-args-p' for more
729information.")
730
731;; Note that in this format, this variable can still be used with the
732;; imenu--generic-function. Otherwise, there is no real reason to have
733;; it.
734(defvar imenu-example--generic-python-expression
735 (cons
736 (concat
737 imenu-example--python-class-regexp
738 "\\|" ; or...
739 imenu-example--python-method-regexp
740 )
741 imenu-example--python-method-no-arg-parens)
742 "Generic Python expression which may be used directly with imenu.
743Used by setting the variable `imenu-generic-expression' to this value.
744Also, see the function \\[imenu-example--create-python-index] for a
745better alternative for finding the index.")
746
747;; These next two variables are used when searching for the python
748;; class/definitions. Just saving some time in accessing the
749;; generic-python-expression, really.
Barry Warsaw01af4011996-09-04 14:57:22 +0000750(defvar imenu-example--python-generic-regexp nil)
751(defvar imenu-example--python-generic-parens nil)
Barry Warsaw81437461996-08-01 19:48:02 +0000752
753
Barry Warsaw81437461996-08-01 19:48:02 +0000754(defun imenu-example--create-python-index ()
755 "Python interface function for imenu package.
756Finds all python classes and functions/methods. Calls function
757\\[imenu-example--create-python-index-engine]. See that function for
758the details of how this works."
759 (setq imenu-example--python-generic-regexp
760 (car imenu-example--generic-python-expression))
761 (setq imenu-example--python-generic-parens
762 (if imenu-example--python-show-method-args-p
763 imenu-example--python-method-arg-parens
764 imenu-example--python-method-no-arg-parens))
765 (goto-char (point-min))
766 (imenu-example--create-python-index-engine nil))
767
768(defun imenu-example--create-python-index-engine (&optional start-indent)
769 "Function for finding imenu definitions in Python.
770
771Finds all definitions (classes, methods, or functions) in a Python
772file for the imenu package.
773
774Returns a possibly nested alist of the form
775
776 (INDEX-NAME . INDEX-POSITION)
777
778The second element of the alist may be an alist, producing a nested
779list as in
780
781 (INDEX-NAME . INDEX-ALIST)
782
783This function should not be called directly, as it calls itself
784recursively and requires some setup. Rather this is the engine for
785the function \\[imenu-example--create-python-index].
786
787It works recursively by looking for all definitions at the current
788indention level. When it finds one, it adds it to the alist. If it
789finds a definition at a greater indentation level, it removes the
790previous definition from the alist. In it's place it adds all
791definitions found at the next indentation level. When it finds a
792definition that is less indented then the current level, it retuns the
793alist it has created thus far.
794
795The optional argument START-INDENT indicates the starting indentation
796at which to continue looking for Python classes, methods, or
797functions. If this is not supplied, the function uses the indentation
798of the first definition found."
799 (let ((index-alist '())
800 (sub-method-alist '())
801 looking-p
802 def-name prev-name
803 cur-indent def-pos
804 (class-paren (first imenu-example--python-generic-parens))
805 (def-paren (second imenu-example--python-generic-parens)))
806 (setq looking-p
807 (re-search-forward imenu-example--python-generic-regexp
808 (point-max) t))
809 (while looking-p
810 (save-excursion
811 ;; used to set def-name to this value but generic-extract-name is
812 ;; new to imenu-1.14. this way it still works with imenu-1.11
813 ;;(imenu--generic-extract-name imenu-example--python-generic-parens))
814 (let ((cur-paren (if (match-beginning class-paren)
815 class-paren def-paren)))
816 (setq def-name
Barry Warsawc8520351997-11-26 06:14:40 +0000817 (buffer-substring-no-properties (match-beginning cur-paren)
818 (match-end cur-paren))))
Barry Warsaw81437461996-08-01 19:48:02 +0000819 (beginning-of-line)
820 (setq cur-indent (current-indentation)))
821
822 ;; HACK: want to go to the next correct definition location. we
823 ;; explicitly list them here. would be better to have them in a
824 ;; list.
825 (setq def-pos
826 (or (match-beginning class-paren)
827 (match-beginning def-paren)))
828
829 ;; if we don't have a starting indent level, take this one
830 (or start-indent
831 (setq start-indent cur-indent))
832
833 ;; if we don't have class name yet, take this one
834 (or prev-name
835 (setq prev-name def-name))
836
837 ;; what level is the next definition on? must be same, deeper
838 ;; or shallower indentation
839 (cond
840 ;; at the same indent level, add it to the list...
841 ((= start-indent cur-indent)
842
843 ;; if we don't have push, use the following...
844 ;;(setf index-alist (cons (cons def-name def-pos) index-alist))
845 (push (cons def-name def-pos) index-alist))
846
847 ;; deeper indented expression, recur...
848 ((< start-indent cur-indent)
849
850 ;; the point is currently on the expression we're supposed to
851 ;; start on, so go back to the last expression. The recursive
852 ;; call will find this place again and add it to the correct
853 ;; list
854 (re-search-backward imenu-example--python-generic-regexp
855 (point-min) 'move)
856 (setq sub-method-alist (imenu-example--create-python-index-engine
857 cur-indent))
858
859 (if sub-method-alist
860 ;; we put the last element on the index-alist on the start
861 ;; of the submethod alist so the user can still get to it.
862 (let ((save-elmt (pop index-alist)))
Barry Warsawc8520351997-11-26 06:14:40 +0000863 (push (cons prev-name
Barry Warsaw81437461996-08-01 19:48:02 +0000864 (cons save-elmt sub-method-alist))
865 index-alist))))
866
867 ;; found less indented expression, we're done.
868 (t
869 (setq looking-p nil)
870 (re-search-backward imenu-example--python-generic-regexp
871 (point-min) t)))
872 (setq prev-name def-name)
873 (and looking-p
874 (setq looking-p
875 (re-search-forward imenu-example--python-generic-regexp
876 (point-max) 'move))))
877 (nreverse index-alist)))
878
Barry Warsaw42f707f1996-07-29 21:05:05 +0000879
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000880;;;###autoload
Barry Warsaw7ae77681994-12-12 20:38:05 +0000881(defun python-mode ()
882 "Major mode for editing Python files.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000883To submit a problem report, enter `\\[py-submit-bug-report]' from a
884`python-mode' buffer. Do `\\[py-describe-mode]' for detailed
885documentation. To see what version of `python-mode' you are running,
886enter `\\[py-version]'.
887
888This mode knows about Python indentation, tokens, comments and
889continuation lines. Paragraphs are separated by blank lines only.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000890
891COMMANDS
892\\{py-mode-map}
893VARIABLES
894
Barry Warsaw42f707f1996-07-29 21:05:05 +0000895py-indent-offset\t\tindentation increment
896py-block-comment-prefix\t\tcomment string used by comment-region
897py-python-command\t\tshell command to invoke Python interpreter
898py-scroll-process-buffer\t\talways scroll Python process buffer
899py-temp-directory\t\tdirectory used for temp files (if needed)
900py-beep-if-tab-change\t\tring the bell if tab-width is changed"
Barry Warsaw7ae77681994-12-12 20:38:05 +0000901 (interactive)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000902 ;; set up local variables
Barry Warsaw7ae77681994-12-12 20:38:05 +0000903 (kill-all-local-variables)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000904 (make-local-variable 'font-lock-defaults)
905 (make-local-variable 'paragraph-separate)
906 (make-local-variable 'paragraph-start)
907 (make-local-variable 'require-final-newline)
908 (make-local-variable 'comment-start)
Barry Warsaw5c8bef11996-12-17 21:56:10 +0000909 (make-local-variable 'comment-end)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000910 (make-local-variable 'comment-start-skip)
911 (make-local-variable 'comment-column)
912 (make-local-variable 'indent-region-function)
913 (make-local-variable 'indent-line-function)
Barry Warsawb3e81d51996-09-04 15:12:42 +0000914 (make-local-variable 'add-log-current-defun-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000915 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +0000916 (set-syntax-table py-mode-syntax-table)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000917 (setq major-mode 'python-mode
918 mode-name "Python"
919 local-abbrev-table python-mode-abbrev-table
Barry Warsaw5c38bf61997-12-02 22:01:04 +0000920 font-lock-defaults '(python-font-lock-keywords)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000921 paragraph-separate "^[ \t]*$"
922 paragraph-start "^[ \t]*$"
923 require-final-newline t
924 comment-start "# "
Barry Warsaw5c8bef11996-12-17 21:56:10 +0000925 comment-end ""
Barry Warsaw615d4a41996-09-04 14:14:10 +0000926 comment-start-skip "# *"
927 comment-column 40
Barry Warsaw550a02e1996-09-04 14:23:00 +0000928 indent-region-function 'py-indent-region
929 indent-line-function 'py-indent-line
Barry Warsawb3e81d51996-09-04 15:12:42 +0000930 ;; tell add-log.el how to find the current function/method/variable
931 add-log-current-defun-function 'py-current-defun
Barry Warsawb1f89511996-09-03 16:38:30 +0000932 )
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000933 (use-local-map py-mode-map)
Barry Warsaw42f707f1996-07-29 21:05:05 +0000934 ;; add the menu
935 (if py-menu
936 (easy-menu-add py-menu))
Barry Warsaw57697af1995-09-14 20:01:14 +0000937 ;; Emacs 19 requires this
Barry Warsawc72c11c1997-08-09 06:42:08 +0000938 (if (boundp 'comment-multi-line)
Barry Warsaw57697af1995-09-14 20:01:14 +0000939 (setq comment-multi-line nil))
Barry Warsaw742a5111998-03-13 17:29:15 +0000940 ;; Install Imenu, only works for Emacs.
941 (when (py-safe (require 'imenu))
942 (make-variable-buffer-local 'imenu-create-index-function)
943 (setq imenu-create-index-function
944 (function imenu-example--create-python-index))
945 (setq imenu-generic-expression
946 imenu-example--generic-python-expression)
947 (if (fboundp 'imenu-add-to-menubar)
948 (imenu-add-to-menubar (format "%s-%s" "IM" mode-name)))
949 )
950 ;; Run the mode hook. Note that py-mode-hook is deprecated.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000951 (if python-mode-hook
952 (run-hooks 'python-mode-hook)
Barry Warsaw742a5111998-03-13 17:29:15 +0000953 (run-hooks 'py-mode-hook))
954 ;; Now do the automagical guessing
955 (if py-smart-indentation
956 (let ((offset py-indent-offset))
957 ;; Its okay if this fails to guess a good value
958 (if (and (py-safe (py-guess-indent-offset))
959 (<= py-indent-offset 8)
960 (>= py-indent-offset 2))
961 (setq offset py-indent-offset))
962 (setq py-indent-offset offset)
Barry Warsaw639eea61998-03-16 18:12:13 +0000963 ;; Only turn indent-tabs-mode off if tab-width !=
964 ;; py-indent-offset. Never turn it on, because the user must
965 ;; have explicitly turned it off.
966 (if (/= tab-width py-indent-offset)
967 (setq indent-tabs-mode nil))
Barry Warsaw742a5111998-03-13 17:29:15 +0000968 )))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000969
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000970
Barry Warsawb91b7431995-03-14 15:55:20 +0000971;; electric characters
Barry Warsaw3874a3d1995-03-14 22:05:53 +0000972(defun py-outdent-p ()
973 ;; returns non-nil if the current line should outdent one level
974 (save-excursion
975 (and (progn (back-to-indentation)
976 (looking-at py-outdent-re))
Barry Warsawf06777d1998-01-21 05:36:18 +0000977 (progn (forward-line -1)
978 (py-goto-initial-line)
979 (back-to-indentation)
Barry Warsaw3874a3d1995-03-14 22:05:53 +0000980 (while (or (looking-at py-blank-or-comment-re)
981 (bobp))
982 (backward-to-indentation 1))
983 (not (looking-at py-no-outdent-re)))
984 )))
985
Barry Warsawb91b7431995-03-14 15:55:20 +0000986(defun py-electric-colon (arg)
987 "Insert a colon.
988In certain cases the line is outdented appropriately. If a numeric
Barry Warsaw0c6563f1995-09-14 20:57:02 +0000989argument is provided, that many colons are inserted non-electrically.
990Electric behavior is inhibited inside a string or comment."
Barry Warsawb91b7431995-03-14 15:55:20 +0000991 (interactive "P")
992 (self-insert-command (prefix-numeric-value arg))
Barry Warsaw0c6563f1995-09-14 20:57:02 +0000993 ;; are we in a string or comment?
994 (if (save-excursion
995 (let ((pps (parse-partial-sexp (save-excursion
996 (beginning-of-python-def-or-class)
997 (point))
998 (point))))
999 (not (or (nth 3 pps) (nth 4 pps)))))
1000 (save-excursion
1001 (let ((here (point))
1002 (outdent 0)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001003 (indent (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001004 (if (and (not arg)
1005 (py-outdent-p)
1006 (= indent (save-excursion
Barry Warsawa7661821996-08-02 16:22:43 +00001007 (py-next-statement -1)
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001008 (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +00001009 )
1010 (setq outdent py-indent-offset))
1011 ;; Don't indent, only outdent. This assumes that any lines that
1012 ;; are already outdented relative to py-compute-indentation were
1013 ;; put there on purpose. Its highly annoying to have `:' indent
1014 ;; for you. Use TAB, C-c C-l or C-c C-r to adjust. TBD: Is
1015 ;; there a better way to determine this???
1016 (if (< (current-indentation) indent) nil
1017 (goto-char here)
1018 (beginning-of-line)
1019 (delete-horizontal-space)
1020 (indent-to (- indent outdent))
1021 )))))
Barry Warsawb91b7431995-03-14 15:55:20 +00001022
1023
Barry Warsawa97a3f31997-11-04 18:47:06 +00001024;; Python subprocess utilities and filters
1025(defun py-execute-file (proc filename)
1026 ;; Send a properly formatted execfile('FILENAME') to the underlying
1027 ;; Python interpreter process FILENAME. Make that process's buffer
1028 ;; visible and force display. Also make comint believe the user
1029 ;; typed this string so that kill-output-from-shell does The Right
1030 ;; Thing.
1031 (let ((curbuf (current-buffer))
1032 (procbuf (process-buffer proc))
1033 (comint-scroll-to-bottom-on-output t)
1034 (msg (format "## working on region in file %s...\n" filename))
1035 (cmd (format "execfile('%s')\n" filename)))
1036 (unwind-protect
1037 (progn
1038 (set-buffer procbuf)
1039 (goto-char (point-max))
1040 (move-marker (process-mark proc) (point))
1041 (funcall (process-filter proc) proc msg))
1042 (set-buffer curbuf))
1043 (process-send-string proc cmd)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001044
1045(defun py-process-filter (pyproc string)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001046 (let ((curbuf (current-buffer))
1047 (pbuf (process-buffer pyproc))
1048 (pmark (process-mark pyproc))
1049 file-finished)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001050 ;; make sure we switch to a different buffer at least once. if we
1051 ;; *don't* do this, then if the process buffer is in the selected
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001052 ;; window, and point is before the end, and lots of output is
1053 ;; coming at a fast pace, then (a) simple cursor-movement commands
1054 ;; like C-p, C-n, C-f, C-b, C-a, C-e take an incredibly long time
1055 ;; to have a visible effect (the window just doesn't get updated,
1056 ;; sometimes for minutes(!)), and (b) it takes about 5x longer to
1057 ;; get all the process output (until the next python prompt).
Barry Warsaw7ae77681994-12-12 20:38:05 +00001058 ;;
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001059 ;; #b makes no sense to me at all. #a almost makes sense: unless
1060 ;; we actually change buffers, set_buffer_internal in buffer.c
1061 ;; doesn't set windows_or_buffers_changed to 1, & that in turn
1062 ;; seems to make the Emacs command loop reluctant to update the
1063 ;; display. Perhaps the default process filter in process.c's
1064 ;; read_process_output has update_mode_lines++ for a similar
1065 ;; reason? beats me ...
1066
Barry Warsaw7a73ef81996-09-30 23:00:40 +00001067 (unwind-protect
1068 ;; make sure current buffer is restored
1069 ;; BAW - we want to check to see if this still applies
1070 (progn
1071 ;; mysterious ugly hack
1072 (if (eq curbuf pbuf)
1073 (set-buffer (get-buffer-create "*scratch*")))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001074
Barry Warsaw7a73ef81996-09-30 23:00:40 +00001075 (set-buffer pbuf)
1076 (let* ((start (point))
1077 (goback (< start pmark))
1078 (goend (and (not goback) (= start (point-max))))
1079 (buffer-read-only nil))
1080 (goto-char pmark)
1081 (insert string)
1082 (move-marker pmark (point))
1083 (setq file-finished
1084 (and py-file-queue
1085 (equal ">>> "
1086 (buffer-substring
1087 (prog2 (beginning-of-line) (point)
1088 (goto-char pmark))
1089 (point)))))
1090 (if goback (goto-char start)
1091 ;; else
1092 (if py-scroll-process-buffer
1093 (let* ((pop-up-windows t)
1094 (pwin (display-buffer pbuf)))
1095 (set-window-point pwin (point)))))
1096 (set-buffer curbuf)
1097 (if file-finished
1098 (progn
Barry Warsawf4710561997-11-26 21:00:36 +00001099 (py-safe (delete-file (car py-file-queue)))
Barry Warsaw7a73ef81996-09-30 23:00:40 +00001100 (setq py-file-queue (cdr py-file-queue))
1101 (if py-file-queue
1102 (py-execute-file pyproc (car py-file-queue)))))
1103 (and goend
1104 (progn (set-buffer pbuf)
1105 (goto-char (point-max))))
1106 ))
1107 (set-buffer curbuf))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001108
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001109(defun py-postprocess-output-buffer (buf)
Barry Warsaw9981d221997-12-03 05:25:48 +00001110 (let (line file bol)
1111 (save-excursion
1112 (set-buffer buf)
1113 (beginning-of-buffer)
1114 (while (re-search-forward py-traceback-line-re nil t)
1115 (setq file (match-string 1)
1116 line (string-to-int (match-string 2))
1117 bol (py-point 'bol))
1118 (py-highlight-line bol (py-point 'eol) file line))
1119 (when (and py-jump-on-exception line)
1120 (beep)
1121 (py-jump-to-exception file line))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001122 )))
1123
Barry Warsaw9981d221997-12-03 05:25:48 +00001124
Barry Warsawa97a3f31997-11-04 18:47:06 +00001125
1126;;; Subprocess commands
1127
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001128;; only used when (memq 'broken-temp-names py-emacs-features)
1129(defvar py-serial-number 0)
1130(defvar py-exception-buffer nil)
1131(defconst py-output-buffer "*Python Output*")
1132
Barry Warsawa97a3f31997-11-04 18:47:06 +00001133;;;###autoload
1134(defun py-shell ()
1135 "Start an interactive Python interpreter in another window.
1136This is like Shell mode, except that Python is running in the window
1137instead of a shell. See the `Interactive Shell' and `Shell Mode'
1138sections of the Emacs manual for details, especially for the key
1139bindings active in the `*Python*' buffer.
1140
1141See the docs for variable `py-scroll-buffer' for info on scrolling
1142behavior in the process window.
1143
1144Warning: Don't use an interactive Python if you change sys.ps1 or
1145sys.ps2 from their default values, or if you're running code that
1146prints `>>> ' or `... ' at the start of a line. `python-mode' can't
1147distinguish your output from Python's output, and assumes that `>>> '
1148at the start of a line is a prompt from Python. Similarly, the Emacs
1149Shell mode code assumes that both `>>> ' and `... ' at the start of a
1150line are Python prompts. Bad things can happen if you fool either
1151mode.
1152
1153Warning: If you do any editing *in* the process buffer *while* the
1154buffer is accepting output from Python, do NOT attempt to `undo' the
1155changes. Some of the output (nowhere near the parts you changed!) may
1156be lost if you do. This appears to be an Emacs bug, an unfortunate
1157interaction between undo and process filters; the same problem exists in
1158non-Python process buffers using the default (Emacs-supplied) process
1159filter."
1160 ;; BAW - should undo be disabled in the python process buffer, if
1161 ;; this bug still exists?
1162 (interactive)
1163 (require 'comint)
Barry Warsaw2518c671997-11-05 00:51:08 +00001164 (switch-to-buffer-other-window
Barry Warsaw8f972b71998-02-05 20:45:49 +00001165 (apply 'make-comint "Python" py-python-command nil py-python-command-args))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001166 (make-local-variable 'comint-prompt-regexp)
1167 (setq comint-prompt-regexp "^>>> \\|^[.][.][.] ")
1168 (set-process-filter (get-buffer-process (current-buffer)) 'py-process-filter)
1169 (set-syntax-table py-mode-syntax-table)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001170 ;; set up keybindings for this subshell
1171 (local-set-key [tab] 'self-insert-command)
1172 (local-set-key "\C-c-" 'py-up-exception)
1173 (local-set-key "\C-c=" 'py-down-exception)
1174 )
Barry Warsawa97a3f31997-11-04 18:47:06 +00001175
Barry Warsawa97a3f31997-11-04 18:47:06 +00001176(defun py-clear-queue ()
1177 "Clear the queue of temporary files waiting to execute."
1178 (interactive)
1179 (let ((n (length py-file-queue)))
1180 (mapcar 'delete-file py-file-queue)
1181 (setq py-file-queue nil)
1182 (message "%d pending files de-queued." n)))
1183
1184(defun py-execute-region (start end &optional async)
1185 "Execute the the region in a Python interpreter.
1186The region is first copied into a temporary file (in the directory
1187`py-temp-directory'). If there is no Python interpreter shell
1188running, this file is executed synchronously using
1189`shell-command-on-region'. If the program is long running, use an
1190optional \\[universal-argument] to run the command asynchronously in
1191its own buffer.
1192
1193If the Python interpreter shell is running, the region is execfile()'d
1194in that shell. If you try to execute regions too quickly,
1195`python-mode' will queue them up and execute them one at a time when
1196it sees a `>>> ' prompt from Python. Each time this happens, the
1197process buffer is popped into a window (if it's not already in some
1198window) so you can see it, and a comment of the form
1199
1200 \t## working on region in file <name>...
1201
1202is inserted at the end. See also the command `py-clear-queue'."
1203 (interactive "r\nP")
1204 (or (< start end)
1205 (error "Region is empty"))
1206 (let* ((proc (get-process "Python"))
Barry Warsaw5e21cb01997-11-05 18:41:11 +00001207 (temp (if (memq 'broken-temp-names py-emacs-features)
1208 (prog1
1209 (format "python-%d" py-serial-number)
1210 (setq py-serial-number (1+ py-serial-number)))
Barry Warsaw2f32fbb1998-02-25 16:45:43 +00001211 (make-temp-name "python-")))
1212 (file (expand-file-name temp py-temp-directory)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001213 (write-region start end file nil 'nomsg)
1214 (cond
1215 ;; always run the code in it's own asynchronous subprocess
1216 (async
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001217 (let* ((buf (generate-new-buffer-name py-output-buffer)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001218 (start-process "Python" buf py-python-command "-u" file)
1219 (pop-to-buffer buf)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001220 (py-postprocess-output-buffer buf)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001221 ))
1222 ;; if the Python interpreter shell is running, queue it up for
1223 ;; execution there.
1224 (proc
1225 ;; use the existing python shell
1226 (if (not py-file-queue)
1227 (py-execute-file proc file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001228 (message "File %s queued for execution" file))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001229 (push file py-file-queue)
1230 (setq py-exception-buffer (cons file (current-buffer))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001231 (t
1232 ;; otherwise either run it synchronously in a subprocess
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001233 (shell-command-on-region start end py-python-command py-output-buffer)
1234 (setq py-exception-buffer (current-buffer))
1235 (py-postprocess-output-buffer py-output-buffer)
Barry Warsaw2f32fbb1998-02-25 16:45:43 +00001236 (pop-to-buffer py-output-buffer)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001237 ))))
1238
1239;; Code execution command
1240(defun py-execute-buffer (&optional async)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001241 "Send the contents of the buffer to a Python interpreter.
Barry Warsawc0ecb531998-01-20 21:43:34 +00001242If the file local variable `py-master-file' is non-nil, execute the
1243named file instead of the buffer's file.
1244
Barry Warsaw7ae77681994-12-12 20:38:05 +00001245If there is a *Python* process buffer it is used. If a clipping
1246restriction is in effect, only the accessible portion of the buffer is
1247sent. A trailing newline will be supplied if needed.
1248
1249See the `\\[py-execute-region]' docs for an account of some subtleties."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001250 (interactive "P")
Barry Warsawc0ecb531998-01-20 21:43:34 +00001251 (if py-master-file
1252 (let* ((filename (expand-file-name py-master-file))
1253 (buffer (or (get-file-buffer filename)
1254 (find-file-noselect filename))))
1255 (set-buffer buffer)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001256 (py-execute-region (point-min) (point-max) async))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001257
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001258
1259
1260(defun py-jump-to-exception (file line)
1261 (let ((buffer (cond ((string-equal file "<stdin>")
1262 py-exception-buffer)
1263 ((and (consp py-exception-buffer)
1264 (string-equal file (car py-exception-buffer)))
1265 (cdr py-exception-buffer))
1266 ((py-safe (find-file-noselect file)))
1267 ;; could not figure out what file the exception
1268 ;; is pointing to, so prompt for it
1269 (t (find-file (read-file-name "Exception file: "
1270 nil
1271 file t))))))
1272 (pop-to-buffer buffer)
1273 (goto-line line)
1274 (message "Jumping to exception in file %s on line %d" file line)))
1275
1276(defun py-mouseto-exception (event)
1277 (interactive "e")
1278 (cond
1279 ((fboundp 'event-point)
1280 ;; XEmacs
1281 (let* ((point (event-point event))
1282 (buffer (event-buffer event))
1283 (e (and point buffer (extent-at point buffer 'py-exc-info)))
1284 (info (and e (extent-property e 'py-exc-info))))
1285 (message "Event point: %d, info: %s" point info)
1286 (and info
1287 (py-jump-to-exception (car info) (cdr info)))
1288 ))
1289 ;; Emacs -- Please port this!
1290 ))
1291
1292(defun py-goto-exception ()
1293 "Go to the line indicated by the traceback."
1294 (interactive)
1295 (let (file line)
1296 (save-excursion
1297 (beginning-of-line)
1298 (if (looking-at py-traceback-line-re)
1299 (setq file (match-string 1)
1300 line (string-to-int (match-string 2)))))
1301 (if (not file)
1302 (error "Not on a traceback line."))
1303 (py-jump-to-exception file line)))
1304
1305(defun py-find-next-exception (start buffer searchdir errwhere)
1306 ;; Go to start position in buffer, search in the specified
1307 ;; direction, and jump to the exception found. If at the end of the
1308 ;; exception, print error message
1309 (let (file line)
1310 (save-excursion
1311 (set-buffer buffer)
1312 (goto-char (py-point start))
1313 (if (funcall searchdir py-traceback-line-re nil t)
1314 (setq file (match-string 1)
1315 line (string-to-int (match-string 2)))))
1316 (if (and file line)
1317 (py-jump-to-exception file line)
1318 (error "%s of traceback" errwhere))))
1319
1320(defun py-down-exception (&optional bottom)
1321 "Go to the next line down in the traceback.
1322With optional \\[universal-argument], jump to the bottom (innermost)
1323exception in the exception stack."
1324 (interactive "P")
1325 (let* ((proc (get-process "Python"))
1326 (buffer (if proc "*Python*" py-output-buffer)))
1327 (if bottom
1328 (py-find-next-exception 'eob buffer 're-search-backward "Bottom")
1329 (py-find-next-exception 'eol buffer 're-search-forward "Bottom"))))
1330
1331(defun py-up-exception (&optional top)
1332 "Go to the previous line up in the traceback.
1333With optional \\[universal-argument], jump to the top (outermost)
1334exception in the exception stack."
1335 (interactive "P")
1336 (let* ((proc (get-process "Python"))
1337 (buffer (if proc "*Python*" py-output-buffer)))
1338 (if top
1339 (py-find-next-exception 'bob buffer 're-search-forward "Top")
Barry Warsawffbc17d1997-11-27 20:08:14 +00001340 (py-find-next-exception 'bol buffer 're-search-backward "Top"))))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001341
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001342
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001343;; Electric deletion
1344(defun py-electric-backspace (arg)
1345 "Deletes preceding character or levels of indentation.
1346Deletion is performed by calling the function in `py-backspace-function'
Barry Warsawb0539931996-12-17 22:05:07 +00001347with a single argument (the number of characters to delete).
Barry Warsaw7ae77681994-12-12 20:38:05 +00001348
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001349If point is at the leftmost column, deletes the preceding newline.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001350
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001351Otherwise, if point is at the leftmost non-whitespace character of a
1352line that is neither a continuation line nor a non-indenting comment
1353line, or if point is at the end of a blank line, this command reduces
1354the indentation to match that of the line that opened the current
1355block of code. The line that opened the block is displayed in the
1356echo area to help you keep track of where you are. With numeric arg,
1357outdents that many blocks (but not past column zero).
1358
1359Otherwise the preceding character is deleted, converting a tab to
1360spaces if needed so that only a single column position is deleted.
1361Numeric argument deletes that many preceding characters."
Barry Warsaw03970731996-07-03 23:12:52 +00001362 (interactive "*p")
Barry Warsaw7ae77681994-12-12 20:38:05 +00001363 (if (or (/= (current-indentation) (current-column))
1364 (bolp)
1365 (py-continuation-line-p)
Barry Warsaw6e527d21996-08-01 15:57:48 +00001366 (not py-honor-comment-indentation)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001367 (looking-at "#[^ \t\n]")) ; non-indenting #
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001368 (funcall py-backspace-function arg)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001369 ;; else indent the same as the colon line that opened the block
Barry Warsaw7ae77681994-12-12 20:38:05 +00001370 ;; force non-blank so py-goto-block-up doesn't ignore it
1371 (insert-char ?* 1)
1372 (backward-char)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001373 (let ((base-indent 0) ; indentation of base line
1374 (base-text "") ; and text of base line
1375 (base-found-p nil))
Barry Warsaw03970731996-07-03 23:12:52 +00001376 (save-excursion
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001377 (while (< 0 arg)
Barry Warsaw03970731996-07-03 23:12:52 +00001378 (condition-case nil ; in case no enclosing block
1379 (progn
1380 (py-goto-block-up 'no-mark)
1381 (setq base-indent (current-indentation)
1382 base-text (py-suck-up-leading-text)
1383 base-found-p t))
1384 (error nil))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001385 (setq arg (1- arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001386 (delete-char 1) ; toss the dummy character
1387 (delete-horizontal-space)
1388 (indent-to base-indent)
1389 (if base-found-p
1390 (message "Closes block: %s" base-text)))))
1391
Barry Warsawfc8a01f1995-03-09 16:07:29 +00001392
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001393(defun py-electric-delete (arg)
1394 "Deletes preceding or following character or levels of whitespace.
1395
1396The behavior of this function depends on the variable
1397`delete-key-deletes-forward'. If this variable is nil (or does not
1398exist, as in older Emacsen), then this function behaves identical to
1399\\[c-electric-backspace].
1400
1401If `delete-key-deletes-forward' is non-nil and is supported in your
1402Emacs, then deletion occurs in the forward direction, by calling the
1403function in `py-delete-function'."
1404 (interactive "*p")
1405 (if (and (boundp 'delete-key-deletes-forward)
1406 delete-key-deletes-forward)
1407 (funcall py-delete-function arg)
1408 ;; else
1409 (py-electric-backspace arg)))
1410
1411;; required for pending-del and delsel modes
1412(put 'py-electric-backspace 'delete-selection 'supersede) ;delsel
1413(put 'py-electric-backspace 'pending-delete 'supersede) ;pending-del
1414(put 'py-electric-delete 'delete-selection 'supersede) ;delsel
1415(put 'py-electric-delete 'pending-delete 'supersede) ;pending-del
1416
1417
1418
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001419(defun py-indent-line (&optional arg)
1420 "Fix the indentation of the current line according to Python rules.
1421With \\[universal-argument], ignore outdenting rules for block
1422closing statements (e.g. return, raise, break, continue, pass)
1423
1424This function is normally bound to `indent-line-function' so
1425\\[indent-for-tab-command] will call it."
1426 (interactive "P")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001427 (let* ((ci (current-indentation))
1428 (move-to-indentation-p (<= (current-column) ci))
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001429 (need (py-compute-indentation (not arg))))
Barry Warsaw4f009fb1995-03-14 20:53:08 +00001430 ;; see if we need to outdent
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001431 (if (py-outdent-p)
Barry Warsaw0012c1e1995-03-14 16:32:55 +00001432 (setq need (- need py-indent-offset)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001433 (if (/= ci need)
1434 (save-excursion
1435 (beginning-of-line)
1436 (delete-horizontal-space)
1437 (indent-to need)))
1438 (if move-to-indentation-p (back-to-indentation))))
1439
1440(defun py-newline-and-indent ()
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001441 "Strives to act like the Emacs `newline-and-indent'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001442This is just `strives to' because correct indentation can't be computed
1443from scratch for Python code. In general, deletes the whitespace before
1444point, inserts a newline, and takes an educated guess as to how you want
1445the new line indented."
1446 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001447 (let ((ci (current-indentation)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001448 (if (< ci (current-column)) ; if point beyond indentation
1449 (newline-and-indent)
1450 ;; else try to act like newline-and-indent "normally" acts
1451 (beginning-of-line)
1452 (insert-char ?\n 1)
1453 (move-to-column ci))))
1454
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001455(defun py-compute-indentation (honor-block-close-p)
1456 ;; implements all the rules for indentation computation. when
1457 ;; honor-block-close-p is non-nil, statements such as return, raise,
1458 ;; break, continue, and pass force one level of outdenting.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001459 (save-excursion
Barry Warsawf64b4051998-02-12 16:52:14 +00001460 (beginning-of-line)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001461 (let* ((bod (py-point 'bod))
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001462 (pps (parse-partial-sexp bod (point)))
1463 (boipps (parse-partial-sexp bod (py-point 'boi))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001464 (cond
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001465 ;; are we inside a multi-line string or comment?
Barry Warsaw3b3ff4e1997-11-26 20:58:48 +00001466 ((or (and (nth 3 pps) (nth 3 boipps))
1467 (and (nth 4 pps) (nth 4 boipps)))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001468 (save-excursion
1469 (if (not py-align-multiline-strings-p) 0
1470 ;; skip back over blank & non-indenting comment lines
1471 ;; note: will skip a blank or non-indenting comment line
1472 ;; that happens to be a continuation line too
1473 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move)
1474 (back-to-indentation)
1475 (current-column))))
1476 ;; are we on a continuation line?
1477 ((py-continuation-line-p)
1478 (let ((startpos (point))
1479 (open-bracket-pos (py-nesting-level))
Barry Warsawce60bc71996-08-01 18:17:14 +00001480 endpos searching found state)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001481 (if open-bracket-pos
1482 (progn
1483 ;; align with first item in list; else a normal
1484 ;; indent beyond the line with the open bracket
1485 (goto-char (1+ open-bracket-pos)) ; just beyond bracket
1486 ;; is the first list item on the same line?
1487 (skip-chars-forward " \t")
1488 (if (null (memq (following-char) '(?\n ?# ?\\)))
1489 ; yes, so line up with it
1490 (current-column)
1491 ;; first list item on another line, or doesn't exist yet
1492 (forward-line 1)
1493 (while (and (< (point) startpos)
1494 (looking-at "[ \t]*[#\n\\\\]")) ; skip noise
1495 (forward-line 1))
1496 (if (< (point) startpos)
1497 ;; again mimic the first list item
1498 (current-indentation)
1499 ;; else they're about to enter the first item
1500 (goto-char open-bracket-pos)
1501 (+ (current-indentation) py-indent-offset))))
1502
1503 ;; else on backslash continuation line
1504 (forward-line -1)
1505 (if (py-continuation-line-p) ; on at least 3rd line in block
1506 (current-indentation) ; so just continue the pattern
1507 ;; else started on 2nd line in block, so indent more.
1508 ;; if base line is an assignment with a start on a RHS,
1509 ;; indent to 2 beyond the leftmost "="; else skip first
1510 ;; chunk of non-whitespace characters on base line, + 1 more
1511 ;; column
1512 (end-of-line)
1513 (setq endpos (point) searching t)
1514 (back-to-indentation)
1515 (setq startpos (point))
1516 ;; look at all "=" from left to right, stopping at first
1517 ;; one not nested in a list or string
1518 (while searching
1519 (skip-chars-forward "^=" endpos)
1520 (if (= (point) endpos)
1521 (setq searching nil)
1522 (forward-char 1)
1523 (setq state (parse-partial-sexp startpos (point)))
1524 (if (and (zerop (car state)) ; not in a bracket
1525 (null (nth 3 state))) ; & not in a string
1526 (progn
1527 (setq searching nil) ; done searching in any case
1528 (setq found
1529 (not (or
1530 (eq (following-char) ?=)
1531 (memq (char-after (- (point) 2))
1532 '(?< ?> ?!)))))))))
1533 (if (or (not found) ; not an assignment
1534 (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash>
1535 (progn
1536 (goto-char startpos)
1537 (skip-chars-forward "^ \t\n")))
1538 (1+ (current-column))))))
1539
1540 ;; not on a continuation line
Barry Warsawa7891711996-08-01 15:53:09 +00001541 ((bobp) (current-indentation))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001542
Barry Warsawa7891711996-08-01 15:53:09 +00001543 ;; Dfn: "Indenting comment line". A line containing only a
1544 ;; comment, but which is treated like a statement for
1545 ;; indentation calculation purposes. Such lines are only
1546 ;; treated specially by the mode; they are not treated
1547 ;; specially by the Python interpreter.
1548
1549 ;; The rules for indenting comment lines are a line where:
1550 ;; - the first non-whitespace character is `#', and
1551 ;; - the character following the `#' is whitespace, and
1552 ;; - the line is outdented with respect to (i.e. to the left
1553 ;; of) the indentation of the preceding non-blank line.
1554
1555 ;; The first non-blank line following an indenting comment
1556 ;; line is given the same amount of indentation as the
1557 ;; indenting comment line.
1558
1559 ;; All other comment-only lines are ignored for indentation
1560 ;; purposes.
1561
1562 ;; Are we looking at a comment-only line which is *not* an
1563 ;; indenting comment line? If so, we assume that its been
1564 ;; placed at the desired indentation, so leave it alone.
1565 ;; Indenting comment lines are aligned as statements down
1566 ;; below.
1567 ((and (looking-at "[ \t]*#[^ \t\n]")
1568 ;; NOTE: this test will not be performed in older Emacsen
1569 (fboundp 'forward-comment)
1570 (<= (current-indentation)
1571 (save-excursion
1572 (forward-comment (- (point-max)))
1573 (current-indentation))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001574 (current-indentation))
1575
1576 ;; else indentation based on that of the statement that
1577 ;; precedes us; use the first line of that statement to
1578 ;; establish the base, in case the user forced a non-std
1579 ;; indentation for the continuation lines (if any)
1580 (t
Barry Warsawc01c5c81995-09-14 18:49:11 +00001581 ;; skip back over blank & non-indenting comment lines note:
1582 ;; will skip a blank or non-indenting comment line that
Barry Warsawfd0fb381996-03-04 17:15:40 +00001583 ;; happens to be a continuation line too. use fast Emacs 19
1584 ;; function if it's there.
Barry Warsaw6d627751996-03-06 18:41:38 +00001585 (if (and (eq py-honor-comment-indentation nil)
Barry Warsaw33d6ec01996-03-05 16:28:07 +00001586 (fboundp 'forward-comment))
Barry Warsawfd0fb381996-03-04 17:15:40 +00001587 (forward-comment (- (point-max)))
Barry Warsaw6d627751996-03-06 18:41:38 +00001588 (let (done)
1589 (while (not done)
1590 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)"
1591 nil 'move)
1592 (setq done (or (eq py-honor-comment-indentation t)
1593 (bobp)
1594 (/= (following-char) ?#)
1595 (not (zerop (current-column)))))
1596 )))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001597 ;; if we landed inside a string, go to the beginning of that
1598 ;; string. this handles triple quoted, multi-line spanning
1599 ;; strings.
Barry Warsawf64b4051998-02-12 16:52:14 +00001600 (let* ((pps3 (nth 3 (parse-partial-sexp bod (point))))
1601 (delim (and pps3 (int-to-char pps3)))
1602 (skip (and delim (make-string 1 delim))))
1603 (when skip
1604 (save-excursion
1605 (py-safe (search-backward skip))
1606 (if (and (eq (char-before) delim)
1607 (eq (char-before (1- (point))) delim))
1608 (setq skip (make-string 3 delim))))
1609 ;; we're looking at a triple-quoted string
1610 (py-safe (search-backward skip))))
Barry Warsawc210e691998-01-20 22:52:56 +00001611 ;; now skip backward over continued lines
Barry Warsaw095e9c61995-09-19 20:01:42 +00001612 (py-goto-initial-line)
Barry Warsawf831d811996-07-31 20:42:59 +00001613 (+ (current-indentation)
1614 (if (py-statement-opens-block-p)
1615 py-indent-offset
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001616 (if (and honor-block-close-p (py-statement-closes-block-p))
Barry Warsawf831d811996-07-31 20:42:59 +00001617 (- py-indent-offset)
1618 0)))
1619 )))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001620
1621(defun py-guess-indent-offset (&optional global)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001622 "Guess a good value for, and change, `py-indent-offset'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001623By default (without a prefix arg), makes a buffer-local copy of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001624`py-indent-offset' with the new value. This will not affect any other
Barry Warsaw7ae77681994-12-12 20:38:05 +00001625Python buffers. With a prefix arg, changes the global value of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001626`py-indent-offset'. This affects all Python buffers (that don't have
Barry Warsaw7ae77681994-12-12 20:38:05 +00001627their own buffer-local copy), both those currently existing and those
1628created later in the Emacs session.
1629
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001630Some people use a different value for `py-indent-offset' than you use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001631There's no excuse for such foolishness, but sometimes you have to deal
1632with their ugly code anyway. This function examines the file and sets
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001633`py-indent-offset' to what it thinks it was when they created the
1634mess.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001635
1636Specifically, it searches forward from the statement containing point,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001637looking for a line that opens a block of code. `py-indent-offset' is
1638set to the difference in indentation between that line and the Python
Barry Warsaw7ae77681994-12-12 20:38:05 +00001639statement following it. If the search doesn't succeed going forward,
1640it's tried again going backward."
1641 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001642 (let (new-value
1643 (start (point))
1644 restart
1645 (found nil)
1646 colon-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001647 (py-goto-initial-line)
1648 (while (not (or found (eobp)))
1649 (if (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1650 (progn
1651 (setq restart (point))
1652 (py-goto-initial-line)
1653 (if (py-statement-opens-block-p)
1654 (setq found t)
1655 (goto-char restart)))))
1656 (if found
1657 ()
1658 (goto-char start)
1659 (py-goto-initial-line)
1660 (while (not (or found (bobp)))
1661 (setq found
1662 (and
1663 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1664 (or (py-goto-initial-line) t) ; always true -- side effect
1665 (py-statement-opens-block-p)))))
1666 (setq colon-indent (current-indentation)
1667 found (and found (zerop (py-next-statement 1)))
1668 new-value (- (current-indentation) colon-indent))
1669 (goto-char start)
1670 (if found
1671 (progn
1672 (funcall (if global 'kill-local-variable 'make-local-variable)
1673 'py-indent-offset)
1674 (setq py-indent-offset new-value)
1675 (message "%s value of py-indent-offset set to %d"
1676 (if global "Global" "Local")
1677 py-indent-offset))
1678 (error "Sorry, couldn't guess a value for py-indent-offset"))))
1679
1680(defun py-shift-region (start end count)
1681 (save-excursion
1682 (goto-char end) (beginning-of-line) (setq end (point))
1683 (goto-char start) (beginning-of-line) (setq start (point))
1684 (indent-rigidly start end count)))
1685
1686(defun py-shift-region-left (start end &optional count)
1687 "Shift region of Python code to the left.
1688The lines from the line containing the start of the current region up
1689to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001690shifted to the left, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001691
1692If a prefix argument is given, the region is instead shifted by that
Barry Warsawdea4a291996-07-03 22:59:12 +00001693many columns. With no active region, outdent only the current line.
1694You cannot outdent the region if any line is already at column zero."
1695 (interactive
1696 (let ((p (point))
1697 (m (mark))
1698 (arg current-prefix-arg))
1699 (if m
1700 (list (min p m) (max p m) arg)
1701 (list p (save-excursion (forward-line 1) (point)) arg))))
1702 ;; if any line is at column zero, don't shift the region
1703 (save-excursion
1704 (goto-char start)
1705 (while (< (point) end)
1706 (back-to-indentation)
Barry Warsaw71e315b1996-07-23 15:03:16 +00001707 (if (and (zerop (current-column))
1708 (not (looking-at "\\s *$")))
Barry Warsawdea4a291996-07-03 22:59:12 +00001709 (error "Region is at left edge."))
1710 (forward-line 1)))
1711 (py-shift-region start end (- (prefix-numeric-value
1712 (or count py-indent-offset))))
1713 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001714
1715(defun py-shift-region-right (start end &optional count)
1716 "Shift region of Python code to the right.
1717The lines from the line containing the start of the current region up
1718to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001719shifted to the right, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001720
1721If a prefix argument is given, the region is instead shifted by that
Barry Warsawdea4a291996-07-03 22:59:12 +00001722many columns. With no active region, indent only the current line."
1723 (interactive
1724 (let ((p (point))
1725 (m (mark))
1726 (arg current-prefix-arg))
1727 (if m
1728 (list (min p m) (max p m) arg)
1729 (list p (save-excursion (forward-line 1) (point)) arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001730 (py-shift-region start end (prefix-numeric-value
Barry Warsawdea4a291996-07-03 22:59:12 +00001731 (or count py-indent-offset)))
1732 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001733
1734(defun py-indent-region (start end &optional indent-offset)
1735 "Reindent a region of Python code.
Barry Warsaw867a32a1996-03-07 18:30:26 +00001736
Barry Warsaw7ae77681994-12-12 20:38:05 +00001737The lines from the line containing the start of the current region up
1738to (but not including) the line containing the end of the region are
1739reindented. If the first line of the region has a non-whitespace
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001740character in the first column, the first line is left alone and the
1741rest of the region is reindented with respect to it. Else the entire
Barry Warsaw867a32a1996-03-07 18:30:26 +00001742region is reindented with respect to the (closest code or indenting
1743comment) statement immediately preceding the region.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001744
1745This is useful when code blocks are moved or yanked, when enclosing
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001746control structures are introduced or removed, or to reformat code
1747using a new value for the indentation offset.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001748
1749If a numeric prefix argument is given, it will be used as the value of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001750the indentation offset. Else the value of `py-indent-offset' will be
Barry Warsaw7ae77681994-12-12 20:38:05 +00001751used.
1752
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001753Warning: The region must be consistently indented before this function
Barry Warsaw7ae77681994-12-12 20:38:05 +00001754is called! This function does not compute proper indentation from
1755scratch (that's impossible in Python), it merely adjusts the existing
1756indentation to be correct in context.
1757
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001758Warning: This function really has no idea what to do with
1759non-indenting comment lines, and shifts them as if they were indenting
1760comment lines. Fixing this appears to require telepathy.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001761
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001762Special cases: whitespace is deleted from blank lines; continuation
1763lines are shifted by the same amount their initial line was shifted,
1764in order to preserve their relative indentation with respect to their
Barry Warsaw7ae77681994-12-12 20:38:05 +00001765initial line; and comment lines beginning in column 1 are ignored."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001766 (interactive "*r\nP") ; region; raw prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00001767 (save-excursion
1768 (goto-char end) (beginning-of-line) (setq end (point-marker))
1769 (goto-char start) (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001770 (let ((py-indent-offset (prefix-numeric-value
1771 (or indent-offset py-indent-offset)))
1772 (indents '(-1)) ; stack of active indent levels
1773 (target-column 0) ; column to which to indent
1774 (base-shifted-by 0) ; amount last base line was shifted
1775 (indent-base (if (looking-at "[ \t\n]")
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001776 (py-compute-indentation t)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001777 0))
1778 ci)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001779 (while (< (point) end)
1780 (setq ci (current-indentation))
1781 ;; figure out appropriate target column
1782 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001783 ((or (eq (following-char) ?#) ; comment in column 1
1784 (looking-at "[ \t]*$")) ; entirely blank
1785 (setq target-column 0))
1786 ((py-continuation-line-p) ; shift relative to base line
1787 (setq target-column (+ ci base-shifted-by)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001788 (t ; new base line
1789 (if (> ci (car indents)) ; going deeper; push it
1790 (setq indents (cons ci indents))
1791 ;; else we should have seen this indent before
1792 (setq indents (memq ci indents)) ; pop deeper indents
1793 (if (null indents)
1794 (error "Bad indentation in region, at line %d"
1795 (save-restriction
1796 (widen)
1797 (1+ (count-lines 1 (point)))))))
1798 (setq target-column (+ indent-base
1799 (* py-indent-offset
1800 (- (length indents) 2))))
1801 (setq base-shifted-by (- target-column ci))))
1802 ;; shift as needed
1803 (if (/= ci target-column)
1804 (progn
1805 (delete-horizontal-space)
1806 (indent-to target-column)))
1807 (forward-line 1))))
1808 (set-marker end nil))
1809
Barry Warsawa7891711996-08-01 15:53:09 +00001810(defun py-comment-region (beg end &optional arg)
1811 "Like `comment-region' but uses double hash (`#') comment starter."
1812 (interactive "r\nP")
Barry Warsaw3fcaf611996-08-01 20:11:51 +00001813 (let ((comment-start py-block-comment-prefix))
Barry Warsawa7891711996-08-01 15:53:09 +00001814 (comment-region beg end arg)))
1815
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001816
1817;; Functions for moving point
Barry Warsaw7ae77681994-12-12 20:38:05 +00001818(defun py-previous-statement (count)
1819 "Go to the start of previous Python statement.
1820If the statement at point is the i'th Python statement, goes to the
1821start of statement i-COUNT. If there is no such statement, goes to the
1822first statement. Returns count of statements left to move.
1823`Statements' do not include blank, comment, or continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001824 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00001825 (if (< count 0) (py-next-statement (- count))
1826 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001827 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001828 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001829 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00001830 (> count 0)
1831 (zerop (forward-line -1))
1832 (py-goto-statement-at-or-above))
1833 (setq count (1- count)))
1834 (if (> count 0) (goto-char start)))
1835 count))
1836
1837(defun py-next-statement (count)
1838 "Go to the start of next Python statement.
1839If the statement at point is the i'th Python statement, goes to the
1840start of statement i+COUNT. If there is no such statement, goes to the
1841last statement. Returns count of statements left to move. `Statements'
1842do not include blank, comment, or continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001843 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00001844 (if (< count 0) (py-previous-statement (- count))
1845 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001846 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001847 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001848 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00001849 (> count 0)
1850 (py-goto-statement-below))
1851 (setq count (1- count)))
1852 (if (> count 0) (goto-char start)))
1853 count))
1854
1855(defun py-goto-block-up (&optional nomark)
1856 "Move up to start of current block.
1857Go to the statement that starts the smallest enclosing block; roughly
1858speaking, this will be the closest preceding statement that ends with a
1859colon and is indented less than the statement you started on. If
1860successful, also sets the mark to the starting point.
1861
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001862`\\[py-mark-block]' can be used afterward to mark the whole code
1863block, if desired.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001864
1865If called from a program, the mark will not be set if optional argument
1866NOMARK is not nil."
1867 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001868 (let ((start (point))
1869 (found nil)
1870 initial-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001871 (py-goto-initial-line)
1872 ;; if on blank or non-indenting comment line, use the preceding stmt
1873 (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
1874 (progn
1875 (py-goto-statement-at-or-above)
1876 (setq found (py-statement-opens-block-p))))
1877 ;; search back for colon line indented less
1878 (setq initial-indent (current-indentation))
1879 (if (zerop initial-indent)
1880 ;; force fast exit
1881 (goto-char (point-min)))
1882 (while (not (or found (bobp)))
1883 (setq found
1884 (and
1885 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1886 (or (py-goto-initial-line) t) ; always true -- side effect
1887 (< (current-indentation) initial-indent)
1888 (py-statement-opens-block-p))))
1889 (if found
1890 (progn
1891 (or nomark (push-mark start))
1892 (back-to-indentation))
1893 (goto-char start)
1894 (error "Enclosing block not found"))))
1895
1896(defun beginning-of-python-def-or-class (&optional class)
1897 "Move point to start of def (or class, with prefix arg).
1898
1899Searches back for the closest preceding `def'. If you supply a prefix
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001900arg, looks for a `class' instead. The docs assume the `def' case;
1901just substitute `class' for `def' for the other case.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001902
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001903If point is in a def statement already, and after the `d', simply
1904moves point to the start of the statement.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001905
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001906Else (point is not in a def statement, or at or before the `d' of a
1907def statement), searches for the closest preceding def statement, and
1908leaves point at its start. If no such statement can be found, leaves
1909point at the start of the buffer.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001910
1911Returns t iff a def statement is found by these rules.
1912
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001913Note that doing this command repeatedly will take you closer to the
1914start of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001915
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001916If you want to mark the current def/class, see
Barry Warsaw2518c671997-11-05 00:51:08 +00001917`\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001918 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001919 (let ((at-or-before-p (<= (current-column) (current-indentation)))
1920 (start-of-line (progn (beginning-of-line) (point)))
1921 (start-of-stmt (progn (py-goto-initial-line) (point))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001922 (if (or (/= start-of-stmt start-of-line)
1923 (not at-or-before-p))
1924 (end-of-line)) ; OK to match on this line
1925 (re-search-backward (if class "^[ \t]*class\\>" "^[ \t]*def\\>")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001926 nil 'move)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001927
1928(defun end-of-python-def-or-class (&optional class)
1929 "Move point beyond end of def (or class, with prefix arg) body.
1930
1931By default, looks for an appropriate `def'. If you supply a prefix arg,
1932looks for a `class' instead. The docs assume the `def' case; just
1933substitute `class' for `def' for the other case.
1934
1935If point is in a def statement already, this is the def we use.
1936
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001937Else if the def found by `\\[beginning-of-python-def-or-class]'
1938contains the statement you started on, that's the def we use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001939
1940Else we search forward for the closest following def, and use that.
1941
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001942If a def can be found by these rules, point is moved to the start of
1943the line immediately following the def block, and the position of the
1944start of the def is returned.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001945
1946Else point is moved to the end of the buffer, and nil is returned.
1947
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001948Note that doing this command repeatedly will take you closer to the
1949end of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001950
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001951If you want to mark the current def/class, see
Barry Warsaw2518c671997-11-05 00:51:08 +00001952`\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001953 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001954 (let ((start (progn (py-goto-initial-line) (point)))
1955 (which (if class "class" "def"))
1956 (state 'not-found))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001957 ;; move point to start of appropriate def/class
1958 (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one
1959 (setq state 'at-beginning)
1960 ;; else see if beginning-of-python-def-or-class hits container
1961 (if (and (beginning-of-python-def-or-class class)
1962 (progn (py-goto-beyond-block)
1963 (> (point) start)))
1964 (setq state 'at-end)
1965 ;; else search forward
1966 (goto-char start)
1967 (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move)
1968 (progn (setq state 'at-beginning)
1969 (beginning-of-line)))))
1970 (cond
1971 ((eq state 'at-beginning) (py-goto-beyond-block) t)
1972 ((eq state 'at-end) t)
1973 ((eq state 'not-found) nil)
1974 (t (error "internal error in end-of-python-def-or-class")))))
1975
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001976
1977;; Functions for marking regions
Barry Warsaw7ae77681994-12-12 20:38:05 +00001978(defun py-mark-block (&optional extend just-move)
1979 "Mark following block of lines. With prefix arg, mark structure.
1980Easier to use than explain. It sets the region to an `interesting'
1981block of succeeding lines. If point is on a blank line, it goes down to
1982the next non-blank line. That will be the start of the region. The end
1983of the region depends on the kind of line at the start:
1984
1985 - If a comment, the region will include all succeeding comment lines up
1986 to (but not including) the next non-comment line (if any).
1987
1988 - Else if a prefix arg is given, and the line begins one of these
1989 structures:
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001990
1991 if elif else try except finally for while def class
1992
Barry Warsaw7ae77681994-12-12 20:38:05 +00001993 the region will be set to the body of the structure, including
1994 following blocks that `belong' to it, but excluding trailing blank
1995 and comment lines. E.g., if on a `try' statement, the `try' block
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001996 and all (if any) of the following `except' and `finally' blocks
1997 that belong to the `try' structure will be in the region. Ditto
1998 for if/elif/else, for/else and while/else structures, and (a bit
1999 degenerate, since they're always one-block structures) def and
2000 class blocks.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002001
2002 - Else if no prefix argument is given, and the line begins a Python
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002003 block (see list above), and the block is not a `one-liner' (i.e.,
2004 the statement ends with a colon, not with code), the region will
2005 include all succeeding lines up to (but not including) the next
2006 code statement (if any) that's indented no more than the starting
2007 line, except that trailing blank and comment lines are excluded.
2008 E.g., if the starting line begins a multi-statement `def'
2009 structure, the region will be set to the full function definition,
2010 but without any trailing `noise' lines.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002011
2012 - Else the region will include all succeeding lines up to (but not
2013 including) the next blank line, or code or indenting-comment line
2014 indented strictly less than the starting line. Trailing indenting
2015 comment lines are included in this case, but not trailing blank
2016 lines.
2017
2018A msg identifying the location of the mark is displayed in the echo
2019area; or do `\\[exchange-point-and-mark]' to flip down to the end.
2020
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002021If called from a program, optional argument EXTEND plays the role of
2022the prefix arg, and if optional argument JUST-MOVE is not nil, just
2023moves to the end of the block (& does not set mark or display a msg)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00002024 (interactive "P") ; raw prefix arg
2025 (py-goto-initial-line)
2026 ;; skip over blank lines
2027 (while (and
2028 (looking-at "[ \t]*$") ; while blank line
2029 (not (eobp))) ; & somewhere to go
2030 (forward-line 1))
2031 (if (eobp)
2032 (error "Hit end of buffer without finding a non-blank stmt"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002033 (let ((initial-pos (point))
2034 (initial-indent (current-indentation))
2035 last-pos ; position of last stmt in region
2036 (followers
2037 '((if elif else) (elif elif else) (else)
2038 (try except finally) (except except) (finally)
2039 (for else) (while else)
2040 (def) (class) ) )
2041 first-symbol next-symbol)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002042
2043 (cond
2044 ;; if comment line, suck up the following comment lines
2045 ((looking-at "[ \t]*#")
2046 (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment
2047 (re-search-backward "^[ \t]*#") ; and back to last comment in block
2048 (setq last-pos (point)))
2049
2050 ;; else if line is a block line and EXTEND given, suck up
2051 ;; the whole structure
2052 ((and extend
2053 (setq first-symbol (py-suck-up-first-keyword) )
2054 (assq first-symbol followers))
2055 (while (and
2056 (or (py-goto-beyond-block) t) ; side effect
2057 (forward-line -1) ; side effect
2058 (setq last-pos (point)) ; side effect
2059 (py-goto-statement-below)
2060 (= (current-indentation) initial-indent)
2061 (setq next-symbol (py-suck-up-first-keyword))
2062 (memq next-symbol (cdr (assq first-symbol followers))))
2063 (setq first-symbol next-symbol)))
2064
2065 ;; else if line *opens* a block, search for next stmt indented <=
2066 ((py-statement-opens-block-p)
2067 (while (and
2068 (setq last-pos (point)) ; always true -- side effect
2069 (py-goto-statement-below)
2070 (> (current-indentation) initial-indent))
2071 nil))
2072
2073 ;; else plain code line; stop at next blank line, or stmt or
2074 ;; indenting comment line indented <
2075 (t
2076 (while (and
2077 (setq last-pos (point)) ; always true -- side effect
2078 (or (py-goto-beyond-final-line) t)
2079 (not (looking-at "[ \t]*$")) ; stop at blank line
2080 (or
2081 (>= (current-indentation) initial-indent)
2082 (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting #
2083 nil)))
2084
2085 ;; skip to end of last stmt
2086 (goto-char last-pos)
2087 (py-goto-beyond-final-line)
2088
2089 ;; set mark & display
2090 (if just-move
2091 () ; just return
2092 (push-mark (point) 'no-msg)
2093 (forward-line -1)
2094 (message "Mark set after: %s" (py-suck-up-leading-text))
2095 (goto-char initial-pos))))
2096
Barry Warsaw2518c671997-11-05 00:51:08 +00002097(defun py-mark-def-or-class (&optional class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002098 "Set region to body of def (or class, with prefix arg) enclosing point.
2099Pushes the current mark, then point, on the mark ring (all language
2100modes do this, but although it's handy it's never documented ...).
2101
2102In most Emacs language modes, this function bears at least a
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002103hallucinogenic resemblance to `\\[end-of-python-def-or-class]' and
2104`\\[beginning-of-python-def-or-class]'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002105
2106And in earlier versions of Python mode, all 3 were tightly connected.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002107Turned out that was more confusing than useful: the `goto start' and
2108`goto end' commands are usually used to search through a file, and
2109people expect them to act a lot like `search backward' and `search
2110forward' string-search commands. But because Python `def' and `class'
2111can nest to arbitrary levels, finding the smallest def containing
2112point cannot be done via a simple backward search: the def containing
2113point may not be the closest preceding def, or even the closest
2114preceding def that's indented less. The fancy algorithm required is
2115appropriate for the usual uses of this `mark' command, but not for the
2116`goto' variations.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002117
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002118So the def marked by this command may not be the one either of the
2119`goto' commands find: If point is on a blank or non-indenting comment
2120line, moves back to start of the closest preceding code statement or
2121indenting comment line. If this is a `def' statement, that's the def
2122we use. Else searches for the smallest enclosing `def' block and uses
2123that. Else signals an error.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002124
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002125When an enclosing def is found: The mark is left immediately beyond
2126the last line of the def block. Point is left at the start of the
2127def, except that: if the def is preceded by a number of comment lines
2128followed by (at most) one optional blank line, point is left at the
2129start of the comments; else if the def is preceded by a blank line,
2130point is left at its start.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002131
2132The intent is to mark the containing def/class and its associated
2133documentation, to make moving and duplicating functions and classes
2134pleasant."
2135 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002136 (let ((start (point))
2137 (which (if class "class" "def")))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002138 (push-mark start)
2139 (if (not (py-go-up-tree-to-keyword which))
2140 (progn (goto-char start)
2141 (error "Enclosing %s not found" which))
2142 ;; else enclosing def/class found
2143 (setq start (point))
2144 (py-goto-beyond-block)
2145 (push-mark (point))
2146 (goto-char start)
2147 (if (zerop (forward-line -1)) ; if there is a preceding line
2148 (progn
2149 (if (looking-at "[ \t]*$") ; it's blank
2150 (setq start (point)) ; so reset start point
2151 (goto-char start)) ; else try again
2152 (if (zerop (forward-line -1))
2153 (if (looking-at "[ \t]*#") ; a comment
2154 ;; look back for non-comment line
2155 ;; tricky: note that the regexp matches a blank
2156 ;; line, cuz \n is in the 2nd character class
2157 (and
2158 (re-search-backward "^[ \t]*[^ \t#]" nil 'move)
2159 (forward-line 1))
2160 ;; no comment, so go back
Barry Warsaw4da6bd51997-11-26 06:00:26 +00002161 (goto-char start)))))))
2162 (exchange-point-and-mark)
2163 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002164
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002165;; ripped from cc-mode
2166(defun py-forward-into-nomenclature (&optional arg)
2167 "Move forward to end of a nomenclature section or word.
2168With arg, to it arg times.
2169
2170A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2171 (interactive "p")
2172 (let ((case-fold-search nil))
2173 (if (> arg 0)
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002174 (re-search-forward
2175 "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)"
2176 (point-max) t arg)
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002177 (while (and (< arg 0)
2178 (re-search-backward
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002179 "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+"
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002180 (point-min) 0))
2181 (forward-char 1)
2182 (setq arg (1+ arg)))))
2183 (py-keep-region-active))
2184
2185(defun py-backward-into-nomenclature (&optional arg)
2186 "Move backward to beginning of a nomenclature section or word.
2187With optional ARG, move that many times. If ARG is negative, move
2188forward.
2189
2190A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2191 (interactive "p")
2192 (py-forward-into-nomenclature (- arg))
2193 (py-keep-region-active))
2194
2195
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002196
2197;; Documentation functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002198
2199;; dump the long form of the mode blurb; does the usual doc escapes,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002200;; plus lines of the form ^[vc]:name$ to suck variable & command docs
2201;; out of the right places, along with the keys they're on & current
2202;; values
Barry Warsaw7ae77681994-12-12 20:38:05 +00002203(defun py-dump-help-string (str)
2204 (with-output-to-temp-buffer "*Help*"
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002205 (let ((locals (buffer-local-variables))
2206 funckind funcname func funcdoc
2207 (start 0) mstart end
2208 keys )
Barry Warsaw7ae77681994-12-12 20:38:05 +00002209 (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start)
2210 (setq mstart (match-beginning 0) end (match-end 0)
2211 funckind (substring str (match-beginning 1) (match-end 1))
2212 funcname (substring str (match-beginning 2) (match-end 2))
2213 func (intern funcname))
2214 (princ (substitute-command-keys (substring str start mstart)))
2215 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002216 ((equal funckind "c") ; command
2217 (setq funcdoc (documentation func)
2218 keys (concat
2219 "Key(s): "
2220 (mapconcat 'key-description
2221 (where-is-internal func py-mode-map)
2222 ", "))))
2223 ((equal funckind "v") ; variable
Barry Warsaw604cefa1996-09-03 18:17:04 +00002224 (setq funcdoc (documentation-property func 'variable-documentation)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002225 keys (if (assq func locals)
2226 (concat
2227 "Local/Global values: "
2228 (prin1-to-string (symbol-value func))
2229 " / "
2230 (prin1-to-string (default-value func)))
2231 (concat
2232 "Value: "
2233 (prin1-to-string (symbol-value func))))))
2234 (t ; unexpected
2235 (error "Error in py-dump-help-string, tag `%s'" funckind)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002236 (princ (format "\n-> %s:\t%s\t%s\n\n"
2237 (if (equal funckind "c") "Command" "Variable")
2238 funcname keys))
2239 (princ funcdoc)
2240 (terpri)
2241 (setq start end))
2242 (princ (substitute-command-keys (substring str start))))
2243 (print-help-return-message)))
2244
2245(defun py-describe-mode ()
2246 "Dump long form of Python-mode docs."
2247 (interactive)
2248 (py-dump-help-string "Major mode for editing Python files.
2249Knows about Python indentation, tokens, comments and continuation lines.
2250Paragraphs are separated by blank lines only.
2251
2252Major sections below begin with the string `@'; specific function and
2253variable docs begin with `->'.
2254
2255@EXECUTING PYTHON CODE
2256
2257\\[py-execute-buffer]\tsends the entire buffer to the Python interpreter
2258\\[py-execute-region]\tsends the current region
2259\\[py-shell]\tstarts a Python interpreter window; this will be used by
2260\tsubsequent \\[py-execute-buffer] or \\[py-execute-region] commands
2261%c:py-execute-buffer
2262%c:py-execute-region
2263%c:py-shell
2264
2265@VARIABLES
2266
2267py-indent-offset\tindentation increment
Barry Warsaw42f707f1996-07-29 21:05:05 +00002268py-block-comment-prefix\tcomment string used by comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002269
2270py-python-command\tshell command to invoke Python interpreter
2271py-scroll-process-buffer\talways scroll Python process buffer
2272py-temp-directory\tdirectory used for temp files (if needed)
2273
2274py-beep-if-tab-change\tring the bell if tab-width is changed
2275%v:py-indent-offset
2276%v:py-block-comment-prefix
2277%v:py-python-command
2278%v:py-scroll-process-buffer
2279%v:py-temp-directory
2280%v:py-beep-if-tab-change
2281
2282@KINDS OF LINES
2283
2284Each physical line in the file is either a `continuation line' (the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002285preceding line ends with a backslash that's not part of a comment, or
2286the paren/bracket/brace nesting level at the start of the line is
2287non-zero, or both) or an `initial line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002288
2289An initial line is in turn a `blank line' (contains nothing except
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002290possibly blanks or tabs), a `comment line' (leftmost non-blank
2291character is `#'), or a `code line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002292
2293Comment Lines
2294
2295Although all comment lines are treated alike by Python, Python mode
2296recognizes two kinds that act differently with respect to indentation.
2297
2298An `indenting comment line' is a comment line with a blank, tab or
2299nothing after the initial `#'. The indentation commands (see below)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002300treat these exactly as if they were code lines: a line following an
Barry Warsaw7ae77681994-12-12 20:38:05 +00002301indenting comment line will be indented like the comment line. All
2302other comment lines (those with a non-whitespace character immediately
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002303following the initial `#') are `non-indenting comment lines', and
2304their indentation is ignored by the indentation commands.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002305
2306Indenting comment lines are by far the usual case, and should be used
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002307whenever possible. Non-indenting comment lines are useful in cases
2308like these:
Barry Warsaw7ae77681994-12-12 20:38:05 +00002309
2310\ta = b # a very wordy single-line comment that ends up being
2311\t #... continued onto another line
2312
2313\tif a == b:
2314##\t\tprint 'panic!' # old code we've `commented out'
2315\t\treturn a
2316
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002317Since the `#...' and `##' comment lines have a non-whitespace
2318character following the initial `#', Python mode ignores them when
2319computing the proper indentation for the next line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002320
2321Continuation Lines and Statements
2322
2323The Python-mode commands generally work on statements instead of on
2324individual lines, where a `statement' is a comment or blank line, or a
2325code line and all of its following continuation lines (if any)
2326considered as a single logical unit. The commands in this mode
2327generally (when it makes sense) automatically move to the start of the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002328statement containing point, even if point happens to be in the middle
2329of some continuation line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002330
2331
2332@INDENTATION
2333
2334Primarily for entering new code:
2335\t\\[indent-for-tab-command]\t indent line appropriately
2336\t\\[py-newline-and-indent]\t insert newline, then indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00002337\t\\[py-electric-backspace]\t reduce indentation, or delete single character
Barry Warsaw7ae77681994-12-12 20:38:05 +00002338
2339Primarily for reindenting existing code:
2340\t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally
2341\t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally
2342
2343\t\\[py-indent-region]\t reindent region to match its context
2344\t\\[py-shift-region-left]\t shift region left by py-indent-offset
2345\t\\[py-shift-region-right]\t shift region right by py-indent-offset
2346
2347Unlike most programming languages, Python uses indentation, and only
2348indentation, to specify block structure. Hence the indentation supplied
2349automatically by Python-mode is just an educated guess: only you know
2350the block structure you intend, so only you can supply correct
2351indentation.
2352
2353The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on
2354the indentation of preceding statements. E.g., assuming
2355py-indent-offset is 4, after you enter
2356\tif a > 0: \\[py-newline-and-indent]
2357the cursor will be moved to the position of the `_' (_ is not a
2358character in the file, it's just used here to indicate the location of
2359the cursor):
2360\tif a > 0:
2361\t _
2362If you then enter `c = d' \\[py-newline-and-indent], the cursor will move
2363to
2364\tif a > 0:
2365\t c = d
2366\t _
2367Python-mode cannot know whether that's what you intended, or whether
2368\tif a > 0:
2369\t c = d
2370\t_
2371was your intent. In general, Python-mode either reproduces the
2372indentation of the (closest code or indenting-comment) preceding
2373statement, or adds an extra py-indent-offset blanks if the preceding
2374statement has `:' as its last significant (non-whitespace and non-
2375comment) character. If the suggested indentation is too much, use
Barry Warsaw27ee1151997-12-03 05:03:44 +00002376\\[py-electric-backspace] to reduce it.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002377
2378Continuation lines are given extra indentation. If you don't like the
2379suggested indentation, change it to something you do like, and Python-
2380mode will strive to indent later lines of the statement in the same way.
2381
2382If a line is a continuation line by virtue of being in an unclosed
2383paren/bracket/brace structure (`list', for short), the suggested
2384indentation depends on whether the current line contains the first item
2385in the list. If it does, it's indented py-indent-offset columns beyond
2386the indentation of the line containing the open bracket. If you don't
2387like that, change it by hand. The remaining items in the list will mimic
2388whatever indentation you give to the first item.
2389
2390If a line is a continuation line because the line preceding it ends with
2391a backslash, the third and following lines of the statement inherit their
2392indentation from the line preceding them. The indentation of the second
2393line in the statement depends on the form of the first (base) line: if
2394the base line is an assignment statement with anything more interesting
2395than the backslash following the leftmost assigning `=', the second line
2396is indented two columns beyond that `='. Else it's indented to two
2397columns beyond the leftmost solid chunk of non-whitespace characters on
2398the base line.
2399
2400Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command]
2401repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block
2402structure you intend.
2403%c:indent-for-tab-command
2404%c:py-newline-and-indent
Barry Warsaw27ee1151997-12-03 05:03:44 +00002405%c:py-electric-backspace
Barry Warsaw7ae77681994-12-12 20:38:05 +00002406
2407
2408The next function may be handy when editing code you didn't write:
2409%c:py-guess-indent-offset
2410
2411
2412The remaining `indent' functions apply to a region of Python code. They
2413assume the block structure (equals indentation, in Python) of the region
2414is correct, and alter the indentation in various ways while preserving
2415the block structure:
2416%c:py-indent-region
2417%c:py-shift-region-left
2418%c:py-shift-region-right
2419
2420@MARKING & MANIPULATING REGIONS OF CODE
2421
2422\\[py-mark-block]\t mark block of lines
Barry Warsaw2518c671997-11-05 00:51:08 +00002423\\[py-mark-def-or-class]\t mark smallest enclosing def
2424\\[universal-argument] \\[py-mark-def-or-class]\t mark smallest enclosing class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002425\\[comment-region]\t comment out region of code
2426\\[universal-argument] \\[comment-region]\t uncomment region of code
Barry Warsaw7ae77681994-12-12 20:38:05 +00002427%c:py-mark-block
Barry Warsaw2518c671997-11-05 00:51:08 +00002428%c:py-mark-def-or-class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002429%c:comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002430
2431@MOVING POINT
2432
2433\\[py-previous-statement]\t move to statement preceding point
2434\\[py-next-statement]\t move to statement following point
2435\\[py-goto-block-up]\t move up to start of current block
2436\\[beginning-of-python-def-or-class]\t move to start of def
2437\\[universal-argument] \\[beginning-of-python-def-or-class]\t move to start of class
2438\\[end-of-python-def-or-class]\t move to end of def
2439\\[universal-argument] \\[end-of-python-def-or-class]\t move to end of class
2440
2441The first two move to one statement beyond the statement that contains
2442point. A numeric prefix argument tells them to move that many
2443statements instead. Blank lines, comment lines, and continuation lines
2444do not count as `statements' for these commands. So, e.g., you can go
2445to the first code statement in a file by entering
2446\t\\[beginning-of-buffer]\t to move to the top of the file
2447\t\\[py-next-statement]\t to skip over initial comments and blank lines
2448Or do `\\[py-previous-statement]' with a huge prefix argument.
2449%c:py-previous-statement
2450%c:py-next-statement
2451%c:py-goto-block-up
2452%c:beginning-of-python-def-or-class
2453%c:end-of-python-def-or-class
2454
2455@LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE
2456
2457`\\[indent-new-comment-line]' is handy for entering a multi-line comment.
2458
2459`\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the
2460overall class and def structure of a module.
2461
2462`\\[back-to-indentation]' moves point to a line's first non-blank character.
2463
2464`\\[indent-relative]' is handy for creating odd indentation.
2465
2466@OTHER EMACS HINTS
2467
2468If you don't like the default value of a variable, change its value to
2469whatever you do like by putting a `setq' line in your .emacs file.
2470E.g., to set the indentation increment to 4, put this line in your
2471.emacs:
2472\t(setq py-indent-offset 4)
2473To see the value of a variable, do `\\[describe-variable]' and enter the variable
2474name at the prompt.
2475
2476When entering a key sequence like `C-c C-n', it is not necessary to
2477release the CONTROL key after doing the `C-c' part -- it suffices to
2478press the CONTROL key, press and release `c' (while still holding down
2479CONTROL), press and release `n' (while still holding down CONTROL), &
2480then release CONTROL.
2481
2482Entering Python mode calls with no arguments the value of the variable
2483`python-mode-hook', if that value exists and is not nil; for backward
2484compatibility it also tries `py-mode-hook'; see the `Hooks' section of
2485the Elisp manual for details.
2486
2487Obscure: When python-mode is first loaded, it looks for all bindings
2488to newline-and-indent in the global keymap, and shadows them with
2489local bindings to py-newline-and-indent."))
2490
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002491
2492;; Helper functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002493(defvar py-parse-state-re
2494 (concat
2495 "^[ \t]*\\(if\\|elif\\|else\\|while\\|def\\|class\\)\\>"
2496 "\\|"
2497 "^[^ #\t\n]"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002498
Barry Warsaw7ae77681994-12-12 20:38:05 +00002499;; returns the parse state at point (see parse-partial-sexp docs)
2500(defun py-parse-state ()
2501 (save-excursion
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002502 (let ((here (point))
Barry Warsaw742a5111998-03-13 17:29:15 +00002503 pps done)
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002504 (while (not done)
2505 ;; back up to the first preceding line (if any; else start of
2506 ;; buffer) that begins with a popular Python keyword, or a
2507 ;; non- whitespace and non-comment character. These are good
2508 ;; places to start parsing to see whether where we started is
2509 ;; at a non-zero nesting level. It may be slow for people who
2510 ;; write huge code blocks or huge lists ... tough beans.
2511 (re-search-backward py-parse-state-re nil 'move)
2512 (beginning-of-line)
Barry Warsawf64b4051998-02-12 16:52:14 +00002513 ;; In XEmacs, we have a much better way to test for whether
2514 ;; we're in a triple-quoted string or not. Emacs does not
2515 ;; have this built-in function, which is it's loss because
2516 ;; without scanning from the beginning of the buffer, there's
2517 ;; no accurate way to determine this otherwise.
2518 (if (not (fboundp 'buffer-syntactic-context))
2519 ;; Emacs
2520 (save-excursion
2521 (setq pps (parse-partial-sexp (point) here))
2522 ;; make sure we don't land inside a triple-quoted string
Barry Warsaw742a5111998-03-13 17:29:15 +00002523 (setq done (or (not (nth 3 pps))
2524 (bobp))))
Barry Warsawf64b4051998-02-12 16:52:14 +00002525 ;; XEmacs
2526 (setq done (or (not (buffer-syntactic-context))
2527 (bobp)))
2528 (when done
2529 (setq pps (parse-partial-sexp (point) here)))
2530 ))
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002531 pps)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002532
2533;; if point is at a non-zero nesting level, returns the number of the
2534;; character that opens the smallest enclosing unclosed list; else
2535;; returns nil.
2536(defun py-nesting-level ()
Barry Warsawf64b4051998-02-12 16:52:14 +00002537 (let ((status (py-parse-state)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002538 (if (zerop (car status))
2539 nil ; not in a nest
2540 (car (cdr status))))) ; char# of open bracket
2541
2542;; t iff preceding line ends with backslash that's not in a comment
2543(defun py-backslash-continuation-line-p ()
2544 (save-excursion
2545 (beginning-of-line)
2546 (and
2547 ;; use a cheap test first to avoid the regexp if possible
2548 ;; use 'eq' because char-after may return nil
2549 (eq (char-after (- (point) 2)) ?\\ )
2550 ;; make sure; since eq test passed, there is a preceding line
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002551 (forward-line -1) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002552 (looking-at py-continued-re))))
2553
2554;; t iff current line is a continuation line
2555(defun py-continuation-line-p ()
2556 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002557 (beginning-of-line)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002558 (or (py-backslash-continuation-line-p)
2559 (py-nesting-level))))
2560
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002561;; go to initial line of current statement; usually this is the line
2562;; we're on, but if we're on the 2nd or following lines of a
2563;; continuation block, we need to go up to the first line of the
2564;; block.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002565;;
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002566;; Tricky: We want to avoid quadratic-time behavior for long continued
2567;; blocks, whether of the backslash or open-bracket varieties, or a
2568;; mix of the two. The following manages to do that in the usual
2569;; cases.
Barry Warsawc210e691998-01-20 22:52:56 +00002570;;
2571;; Also, if we're sitting inside a triple quoted string, this will
2572;; drop us at the line that begins the string.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002573(defun py-goto-initial-line ()
Barry Warsaw9ec9fbc1998-01-21 05:15:57 +00002574 (let (open-bracket-pos)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002575 (while (py-continuation-line-p)
2576 (beginning-of-line)
2577 (if (py-backslash-continuation-line-p)
2578 (while (py-backslash-continuation-line-p)
2579 (forward-line -1))
2580 ;; else zip out of nested brackets/braces/parens
2581 (while (setq open-bracket-pos (py-nesting-level))
2582 (goto-char open-bracket-pos)))))
2583 (beginning-of-line))
2584
2585;; go to point right beyond final line of current statement; usually
2586;; this is the start of the next line, but if this is a multi-line
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002587;; statement we need to skip over the continuation lines. Tricky:
2588;; Again we need to be clever to avoid quadratic time behavior.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002589(defun py-goto-beyond-final-line ()
2590 (forward-line 1)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002591 (let (state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002592 (while (and (py-continuation-line-p)
2593 (not (eobp)))
2594 ;; skip over the backslash flavor
2595 (while (and (py-backslash-continuation-line-p)
2596 (not (eobp)))
2597 (forward-line 1))
2598 ;; if in nest, zip to the end of the nest
2599 (setq state (py-parse-state))
2600 (if (and (not (zerop (car state)))
2601 (not (eobp)))
2602 (progn
Barry Warsawaffc0ca1997-11-03 16:59:38 +00002603 (parse-partial-sexp (point) (point-max) 0 nil state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002604 (forward-line 1))))))
2605
2606;; t iff statement opens a block == iff it ends with a colon that's
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002607;; not in a comment. point should be at the start of a statement
Barry Warsaw7ae77681994-12-12 20:38:05 +00002608(defun py-statement-opens-block-p ()
2609 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002610 (let ((start (point))
2611 (finish (progn (py-goto-beyond-final-line) (1- (point))))
2612 (searching t)
2613 (answer nil)
2614 state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002615 (goto-char start)
2616 (while searching
2617 ;; look for a colon with nothing after it except whitespace, and
2618 ;; maybe a comment
2619 (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$"
2620 finish t)
2621 (if (eq (point) finish) ; note: no `else' clause; just
2622 ; keep searching if we're not at
2623 ; the end yet
2624 ;; sure looks like it opens a block -- but it might
2625 ;; be in a comment
2626 (progn
2627 (setq searching nil) ; search is done either way
2628 (setq state (parse-partial-sexp start
2629 (match-beginning 0)))
2630 (setq answer (not (nth 4 state)))))
2631 ;; search failed: couldn't find another interesting colon
2632 (setq searching nil)))
2633 answer)))
2634
Barry Warsawf831d811996-07-31 20:42:59 +00002635(defun py-statement-closes-block-p ()
2636 ;; true iff the current statement `closes' a block == the line
Barry Warsaw7cb505c1996-10-23 20:44:59 +00002637 ;; starts with `return', `raise', `break', `continue', and `pass'.
2638 ;; doesn't catch embedded statements
Barry Warsawf831d811996-07-31 20:42:59 +00002639 (let ((here (point)))
2640 (back-to-indentation)
2641 (prog1
Barry Warsawaffc0ca1997-11-03 16:59:38 +00002642 (looking-at (concat py-block-closing-keywords-re "\\>"))
Barry Warsawf831d811996-07-31 20:42:59 +00002643 (goto-char here))))
2644
Barry Warsaw7ae77681994-12-12 20:38:05 +00002645;; go to point right beyond final line of block begun by the current
2646;; line. This is the same as where py-goto-beyond-final-line goes
2647;; unless we're on colon line, in which case we go to the end of the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002648;; block. assumes point is at bolp
Barry Warsaw7ae77681994-12-12 20:38:05 +00002649(defun py-goto-beyond-block ()
2650 (if (py-statement-opens-block-p)
2651 (py-mark-block nil 'just-move)
2652 (py-goto-beyond-final-line)))
2653
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002654;; go to start of first statement (not blank or comment or
2655;; continuation line) at or preceding point. returns t if there is
2656;; one, else nil
Barry Warsaw7ae77681994-12-12 20:38:05 +00002657(defun py-goto-statement-at-or-above ()
2658 (py-goto-initial-line)
2659 (if (looking-at py-blank-or-comment-re)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002660 ;; skip back over blank & comment lines
2661 ;; note: will skip a blank or comment line that happens to be
2662 ;; a continuation line too
2663 (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t)
2664 (progn (py-goto-initial-line) t)
2665 nil)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002666 t))
2667
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002668;; go to start of first statement (not blank or comment or
2669;; continuation line) following the statement containing point returns
2670;; t if there is one, else nil
Barry Warsaw7ae77681994-12-12 20:38:05 +00002671(defun py-goto-statement-below ()
2672 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002673 (let ((start (point)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002674 (py-goto-beyond-final-line)
2675 (while (and
2676 (looking-at py-blank-or-comment-re)
2677 (not (eobp)))
2678 (forward-line 1))
2679 (if (eobp)
2680 (progn (goto-char start) nil)
2681 t)))
2682
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002683;; go to start of statement, at or preceding point, starting with
2684;; keyword KEY. Skips blank lines and non-indenting comments upward
2685;; first. If that statement starts with KEY, done, else go back to
2686;; first enclosing block starting with KEY. If successful, leaves
2687;; point at the start of the KEY line & returns t. Else leaves point
2688;; at an undefined place & returns nil.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002689(defun py-go-up-tree-to-keyword (key)
2690 ;; skip blanks and non-indenting #
2691 (py-goto-initial-line)
2692 (while (and
2693 (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2694 (zerop (forward-line -1))) ; go back
2695 nil)
2696 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002697 (let* ((re (concat "[ \t]*" key "\\b"))
2698 (case-fold-search nil) ; let* so looking-at sees this
2699 (found (looking-at re))
2700 (dead nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002701 (while (not (or found dead))
2702 (condition-case nil ; in case no enclosing block
2703 (py-goto-block-up 'no-mark)
2704 (error (setq dead t)))
2705 (or dead (setq found (looking-at re))))
2706 (beginning-of-line)
2707 found))
2708
2709;; return string in buffer from start of indentation to end of line;
2710;; prefix "..." if leading whitespace was skipped
2711(defun py-suck-up-leading-text ()
2712 (save-excursion
2713 (back-to-indentation)
2714 (concat
2715 (if (bolp) "" "...")
2716 (buffer-substring (point) (progn (end-of-line) (point))))))
2717
2718;; assuming point at bolp, return first keyword ([a-z]+) on the line,
2719;; as a Lisp symbol; return nil if none
2720(defun py-suck-up-first-keyword ()
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002721 (let ((case-fold-search nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002722 (if (looking-at "[ \t]*\\([a-z]+\\)\\b")
2723 (intern (buffer-substring (match-beginning 1) (match-end 1)))
2724 nil)))
2725
Barry Warsawb3e81d51996-09-04 15:12:42 +00002726(defun py-current-defun ()
2727 ;; tell add-log.el how to find the current function/method/variable
2728 (save-excursion
2729 (if (re-search-backward py-defun-start-re nil t)
2730 (or (match-string 3)
2731 (let ((method (match-string 2)))
2732 (if (and (not (zerop (length (match-string 1))))
2733 (re-search-backward py-class-start-re nil t))
2734 (concat (match-string 1) "." method)
2735 method)))
2736 nil)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002737
2738
Barry Warsawfec75d61995-07-05 23:26:15 +00002739(defconst py-help-address "python-mode@python.org"
Barry Warsaw850437a1995-03-08 21:50:28 +00002740 "Address accepting submission of bug reports.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002741
Barry Warsaw850437a1995-03-08 21:50:28 +00002742(defun py-version ()
2743 "Echo the current version of `python-mode' in the minibuffer."
2744 (interactive)
2745 (message "Using `python-mode' version %s" py-version)
2746 (py-keep-region-active))
2747
2748;; only works under Emacs 19
2749;(eval-when-compile
2750; (require 'reporter))
2751
2752(defun py-submit-bug-report (enhancement-p)
2753 "Submit via mail a bug report on `python-mode'.
2754With \\[universal-argument] just submit an enhancement request."
2755 (interactive
2756 (list (not (y-or-n-p
2757 "Is this a bug report? (hit `n' to send other comments) "))))
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00002758 (let ((reporter-prompt-for-summary-p (if enhancement-p
2759 "(Very) brief summary: "
2760 t)))
Barry Warsaw850437a1995-03-08 21:50:28 +00002761 (require 'reporter)
2762 (reporter-submit-bug-report
2763 py-help-address ;address
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00002764 (concat "python-mode " py-version) ;pkgname
Barry Warsaw850437a1995-03-08 21:50:28 +00002765 ;; varlist
2766 (if enhancement-p nil
2767 '(py-python-command
2768 py-indent-offset
2769 py-block-comment-prefix
2770 py-scroll-process-buffer
2771 py-temp-directory
2772 py-beep-if-tab-change))
2773 nil ;pre-hooks
2774 nil ;post-hooks
2775 "Dear Barry,") ;salutation
2776 (if enhancement-p nil
2777 (set-mark (point))
2778 (insert
2779"Please replace this text with a sufficiently large code sample\n\
2780and an exact recipe so that I can reproduce your problem. Failure\n\
2781to do so may mean a greater delay in fixing your bug.\n\n")
2782 (exchange-point-and-mark)
2783 (py-keep-region-active))))
2784
2785
Barry Warsaw47384781997-11-26 05:27:45 +00002786(defun py-kill-emacs-hook ()
2787 (mapcar #'(lambda (filename)
2788 (py-safe (delete-file filename)))
2789 py-file-queue))
2790
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002791;; arrange to kill temp files when Emacs exists
Barry Warsawc72c11c1997-08-09 06:42:08 +00002792(add-hook 'kill-emacs-hook 'py-kill-emacs-hook)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002793
2794
2795
2796(provide 'python-mode)
2797;;; python-mode.el ends here