blob: 581e99a0ab47a7b124d84e8ab68cf9999dc98c51 [file] [log] [blame]
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001;;; python-mode.el --- Major mode for editing Python programs
2
3;; Copyright (C) 1992,1993,1994 Tim Peters
4
Guido van Rossum6ba11201996-08-20 19:57:53 +00005;; Author: 1995-1996 Barry A. Warsaw
Guido van Rossumd4901c81995-08-28 03:12:57 +00006;; 1992-1994 Tim Peters
7;; Maintainer: python-mode@python.org
Guido van Rossuma8a8d4a1995-03-10 16:19:31 +00008;; Created: Feb 1992
Guido van Rossum6ba11201996-08-20 19:57:53 +00009;; Version: 2.72
10;; Last Modified: 1996/08/12 19:52:27
11;; Keywords: python languages oop
Guido van Rossumdeaa1051995-03-10 16:17:03 +000012
Guido van Rossuma8a8d4a1995-03-10 16:19:31 +000013;; This software is provided as-is, without express or implied
14;; warranty. Permission to use, copy, modify, distribute or sell this
15;; software, without fee, for any purpose and by any individual or
16;; organization, is hereby granted, provided that the above copyright
17;; notice and this paragraph appear in all copies.
Guido van Rossumdeaa1051995-03-10 16:17:03 +000018
19;;; Commentary:
Guido van Rossum6ba11201996-08-20 19:57:53 +000020
Guido van Rossumdeaa1051995-03-10 16:17:03 +000021;; This is a major mode for editing Python programs. It was developed
Guido van Rossum6ba11201996-08-20 19:57:53 +000022;; by Tim Peters after an original idea by Michael A. Guravage. In
23;; 1995, Barry Warsaw inherited the mode after Tim left the net, and
24;; is the current maintainer.
Guido van Rossumdeaa1051995-03-10 16:17:03 +000025
26;; At some point this mode will undergo a rewrite to bring it more in
Guido van Rossum6ba11201996-08-20 19:57:53 +000027;; line with GNU Emacs Lisp coding standards, and to wax all the Emacs
28;; 18 support. But all in all, the mode works exceedingly well, and
29;; I've simply been tweaking it as I go along. Ain't it wonderful
30;; that Python has a much more sane syntax than C? (or <shudder> C++?!
31;; :-). I can say that; I maintain cc-mode!
Guido van Rossumdeaa1051995-03-10 16:17:03 +000032
33;; The following statements, placed in your .emacs file or
34;; site-init.el, will cause this file to be autoloaded, and
35;; python-mode invoked, when visiting .py files (assuming this file is
36;; in your load-path):
Guido van Rossuma7925f11994-01-26 10:20:16 +000037;;
Guido van Rossumdeaa1051995-03-10 16:17:03 +000038;; (autoload 'python-mode "python-mode" "Python editing mode." t)
Guido van Rossuma7925f11994-01-26 10:20:16 +000039;; (setq auto-mode-alist
40;; (cons '("\\.py$" . python-mode) auto-mode-alist))
Guido van Rossum1d5645d1995-03-14 21:31:47 +000041;;
Guido van Rossum6ba11201996-08-20 19:57:53 +000042;; If you want font-lock support for Python source code (a.k.a. syntax
43;; coloring, highlighting), add this to your .emacs file:
44;;
45;; (add-hook 'python-mode-hook 'turn-on-font-lock)
46;;
47;; But you better be sure you're version of Emacs supports
48;; font-lock-mode! As of this writing, the latest Emacs and XEmacs
49;; 19's do.
50
51;; Here's a brief list of recent additions/improvements/changes:
52;;
53;; - Wrapping and indentation within triple quote strings now works.
Guido van Rossum1d5645d1995-03-14 21:31:47 +000054;; - `Standard' bug reporting mechanism (use C-c C-b)
55;; - py-mark-block was moved to C-c C-m
56;; - C-c C-v shows you the python-mode version
Guido van Rossum6ba11201996-08-20 19:57:53 +000057;; - a basic python-font-lock-keywords has been added for (X)Emacs 19
Guido van Rossum1d5645d1995-03-14 21:31:47 +000058;; - proper interaction with pending-del and del-sel modes.
Guido van Rossum6ba11201996-08-20 19:57:53 +000059;; - Better support for outdenting: py-electric-colon (:) and
60;; py-indent-line (TAB) improvements; one level of outdentation
61;; added after a return, raise, break, or continue statement
62;; - New py-electric-colon (:) command for improved outdenting Also
63;; py-indent-line (TAB) should handle outdented lines better
64;; - improved (I think) C-c > and C-c <
65;; - py-(forward|backward)-into-nomenclature, not bound, but useful on
66;; M-f and M-b respectively.
67;; - integration with imenu by Perry A. Stoll <stoll@atr-sw.atr.co.jp>
68;; - py-indent-offset now defaults to 4
69;; - new variable py-honor-comment-indentation
70;; - comment-region bound to C-c #
71;; - py-delete-char obeys numeric arguments
72;; - Small modification to rule for "indenting comment lines", such
73;; lines must now also be indented less than or equal to the
74;; indentation of the previous statement.
Guido van Rossum1d5645d1995-03-14 21:31:47 +000075
Guido van Rossumdeaa1051995-03-10 16:17:03 +000076;; Here's a brief to do list:
77;;
Guido van Rossum1d5645d1995-03-14 21:31:47 +000078;; - Better integration with gud-mode for debugging.
79;; - Rewrite according to GNU Emacs Lisp standards.
Guido van Rossum6ba11201996-08-20 19:57:53 +000080;; - possibly force indent-tabs-mode == nil, and add a
81;; write-file-hooks that runs untabify on the whole buffer (to work
82;; around potential tab/space mismatch problems). In practice this
83;; hasn't been a problem... yet.
84;; - have py-execute-region on indented code act as if the region is
85;; left justified. Avoids syntax errors.
Guido van Rossuma7925f11994-01-26 10:20:16 +000086
Guido van Rossumdeaa1051995-03-10 16:17:03 +000087;; If you can think of more things you'd like to see, drop me a line.
88;; If you want to report bugs, use py-submit-bug-report (C-c C-b).
89;;
Guido van Rossum6ba11201996-08-20 19:57:53 +000090;; Note that I only test things on XEmacs 19 and to some degree on
91;; Emacs 19. If you port stuff to FSF Emacs 19, or Emacs 18, please
92;; send me your patches. Byte compiler complaints can probably be
93;; safely ignored.
Guido van Rossuma7925f11994-01-26 10:20:16 +000094
Guido van Rossumdeaa1051995-03-10 16:17:03 +000095;;; Code:
96
97
98;; user definable variables
99;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
Guido van Rossuma7925f11994-01-26 10:20:16 +0000100
101(defvar py-python-command "python"
102 "*Shell command used to start Python interpreter.")
103
Guido van Rossum6ba11201996-08-20 19:57:53 +0000104(defvar py-indent-offset 4
Guido van Rossuma7925f11994-01-26 10:20:16 +0000105 "*Indentation increment.
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000106Note that `\\[py-guess-indent-offset]' can usually guess a good value
107when you're editing someone else's Python code.")
Guido van Rossuma7925f11994-01-26 10:20:16 +0000108
Guido van Rossum503b2e81995-10-08 00:44:23 +0000109(defvar py-align-multiline-strings-p t
110 "*Flag describing how multiline triple quoted strings are aligned.
111When this flag is non-nil, continuation lines are lined up under the
112preceding line's indentation. When this flag is nil, continuation
113lines are aligned to column zero.")
114
Guido van Rossum6ba11201996-08-20 19:57:53 +0000115(defvar py-block-comment-prefix "## "
116 "*String used by \\[comment-region] to comment out a block of code.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000117This should follow the convention for non-indenting comment lines so
118that the indentation commands won't get confused (i.e., the string
119should be of the form `#x...' where `x' is not a blank or a tab, and
120`...' is arbitrary).")
121
Guido van Rossum6ba11201996-08-20 19:57:53 +0000122(defvar py-honor-comment-indentation t
123 "*Controls how comment lines influence subsequent indentation.
124
125When nil, all comment lines are skipped for indentation purposes, and
126in Emacs 19, a faster algorithm is used.
127
128When t, lines that begin with a single `#' are a hint to subsequent
129line indentation. If the previous line is such a comment line (as
130opposed to one that starts with `py-block-comment-prefix'), then it's
131indentation is used as a hint for this line's indentation. Lines that
132begin with `py-block-comment-prefix' are ignored for indentation
133purposes.
134
135When not nil or t, comment lines that begin with a `#' are used as
136indentation hints, unless the comment character is in column zero.")
137
Guido van Rossuma7925f11994-01-26 10:20:16 +0000138(defvar py-scroll-process-buffer t
139 "*Scroll Python process buffer as output arrives.
140If nil, the Python process buffer acts, with respect to scrolling, like
141Shell-mode buffers normally act. This is surprisingly complicated and
142so won't be explained here; in fact, you can't get the whole story
143without studying the Emacs C code.
144
145If non-nil, the behavior is different in two respects (which are
146slightly inaccurate in the interest of brevity):
147
148 - If the buffer is in a window, and you left point at its end, the
149 window will scroll as new output arrives, and point will move to the
150 buffer's end, even if the window is not the selected window (that
151 being the one the cursor is in). The usual behavior for shell-mode
152 windows is not to scroll, and to leave point where it was, if the
153 buffer is in a window other than the selected window.
154
155 - If the buffer is not visible in any window, and you left point at
156 its end, the buffer will be popped into a window as soon as more
157 output arrives. This is handy if you have a long-running
158 computation and don't want to tie up screen area waiting for the
159 output. The usual behavior for a shell-mode buffer is to stay
160 invisible until you explicitly visit it.
161
162Note the `and if you left point at its end' clauses in both of the
163above: you can `turn off' the special behaviors while output is in
164progress, by visiting the Python buffer and moving point to anywhere
165besides the end. Then the buffer won't scroll, point will remain where
166you leave it, and if you hide the buffer it will stay hidden until you
167visit it again. You can enable and disable the special behaviors as
168often as you like, while output is in progress, by (respectively) moving
169point to, or away from, the end of the buffer.
170
171Warning: If you expect a large amount of output, you'll probably be
172happier setting this option to nil.
173
174Obscure: `End of buffer' above should really say `at or beyond the
175process mark', but if you know what that means you didn't need to be
176told <grin>.")
177
178(defvar py-temp-directory
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000179 (let ((ok '(lambda (x)
180 (and x
181 (setq x (expand-file-name x)) ; always true
182 (file-directory-p x)
183 (file-writable-p x)
184 x))))
Guido van Rossuma7925f11994-01-26 10:20:16 +0000185 (or (funcall ok (getenv "TMPDIR"))
186 (funcall ok "/usr/tmp")
187 (funcall ok "/tmp")
188 (funcall ok ".")
189 (error
190 "Couldn't find a usable temp directory -- set py-temp-directory")))
191 "*Directory used for temp files created by a *Python* process.
192By default, the first directory from this list that exists and that you
193can write into: the value (if any) of the environment variable TMPDIR,
194/usr/tmp, /tmp, or the current directory.")
195
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000196(defvar py-beep-if-tab-change t
197 "*Ring the bell if tab-width is changed.
198If a comment of the form
199
200 \t# vi:set tabsize=<number>:
201
202is found before the first code line when the file is entered, and the
203current value of (the general Emacs variable) `tab-width' does not
204equal <number>, `tab-width' is set to <number>, a message saying so is
205displayed in the echo area, and if `py-beep-if-tab-change' is non-nil
206the Emacs bell is also rung as a warning.")
207
Guido van Rossum6ba11201996-08-20 19:57:53 +0000208(defconst python-font-lock-keywords
209 (let* ((keywords '("access" "and" "break" "class"
210 "continue" "def" "del" "elif"
211 "else:" "except" "except:" "exec"
212 "finally:" "for" "from" "global"
213 "if" "import" "in" "is"
214 "lambda" "not" "or" "pass"
215 "print" "raise" "return" "try:"
216 "while"
217 ))
218 (kwregex (mapconcat 'identity keywords "\\|")))
219 (list
220 ;; keywords not at beginning of line
221 (cons (concat "\\s-\\(" kwregex "\\)[ \n\t(]") 1)
222 ;; keywords at beginning of line. i don't think regexps are
223 ;; powerful enough to handle these two cases in one regexp.
224 ;; prove me wrong!
225 (cons (concat "^\\(" kwregex "\\)[ \n\t(]") 1)
226 ;; classes
227 '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
228 1 font-lock-type-face)
229 ;; functions
230 '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
231 1 font-lock-function-name-face)
232 ))
233 "Additional expressions to highlight in Python mode.")
Guido van Rossumd4901c81995-08-28 03:12:57 +0000234
Guido van Rossum6ba11201996-08-20 19:57:53 +0000235(defvar imenu-example--python-show-method-args-p nil
236 "*Controls echoing of arguments of functions & methods in the imenu buffer.
237When non-nil, arguments are printed.")
Guido van Rossumd4901c81995-08-28 03:12:57 +0000238
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000239
240
241;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
242;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT
243
Guido van Rossum6ba11201996-08-20 19:57:53 +0000244(make-variable-buffer-local 'py-indent-offset)
245
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000246;; Differentiate between Emacs 18, Lucid Emacs, and Emacs 19. This
247;; seems to be the standard way of checking this.
248;; BAW - This is *not* the right solution. When at all possible,
249;; instead of testing for the version of Emacs, use feature tests.
250
251(setq py-this-is-lucid-emacs-p (string-match "Lucid\\|XEmacs" emacs-version))
252(setq py-this-is-emacs-19-p
253 (and
254 (not py-this-is-lucid-emacs-p)
255 (string-match "^19\\." emacs-version)))
256
Guido van Rossuma7925f11994-01-26 10:20:16 +0000257;; have to bind py-file-queue before installing the kill-emacs hook
258(defvar py-file-queue nil
259 "Queue of Python temp files awaiting execution.
260Currently-active file is at the head of the list.")
261
262;; define a mode-specific abbrev table for those who use such things
263(defvar python-mode-abbrev-table nil
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000264 "Abbrev table in use in `python-mode' buffers.")
Guido van Rossuma7925f11994-01-26 10:20:16 +0000265(define-abbrev-table 'python-mode-abbrev-table nil)
266
Guido van Rossuma67bb7e1994-11-10 23:01:59 +0000267(defvar python-mode-hook nil
268 "*Hook called by `python-mode'.")
269
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000270;; in previous version of python-mode.el, the hook was incorrectly
271;; called py-mode-hook, and was not defvar'd. deprecate its use.
Guido van Rossuma67bb7e1994-11-10 23:01:59 +0000272(and (fboundp 'make-obsolete-variable)
273 (make-obsolete-variable 'py-mode-hook 'python-mode-hook))
274
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000275(defvar py-mode-map ()
276 "Keymap used in `python-mode' buffers.")
Guido van Rossuma7925f11994-01-26 10:20:16 +0000277
Guido van Rossuma7925f11994-01-26 10:20:16 +0000278(if py-mode-map
279 ()
280 (setq py-mode-map (make-sparse-keymap))
281
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000282 ;; shadow global bindings for newline-and-indent w/ the py- version.
283 ;; BAW - this is extremely bad form, but I'm not going to change it
284 ;; for now.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000285 (mapcar (function (lambda (key)
286 (define-key
287 py-mode-map key 'py-newline-and-indent)))
288 (where-is-internal 'newline-and-indent))
289
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000290 ;; BAW - you could do it this way, but its not considered proper
291 ;; major-mode form.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000292 (mapcar (function
293 (lambda (x)
294 (define-key py-mode-map (car x) (cdr x))))
Guido van Rossum1d5645d1995-03-14 21:31:47 +0000295 '((":" . py-electric-colon)
296 ("\C-c\C-c" . py-execute-buffer)
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000297 ("\C-c|" . py-execute-region)
298 ("\C-c!" . py-shell)
299 ("\177" . py-delete-char)
300 ("\n" . py-newline-and-indent)
301 ("\C-c:" . py-guess-indent-offset)
302 ("\C-c\t" . py-indent-region)
Guido van Rossum6ba11201996-08-20 19:57:53 +0000303 ("\C-c\C-l" . py-shift-region-left)
304 ("\C-c\C-r" . py-shift-region-right)
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000305 ("\C-c<" . py-shift-region-left)
306 ("\C-c>" . py-shift-region-right)
307 ("\C-c\C-n" . py-next-statement)
308 ("\C-c\C-p" . py-previous-statement)
309 ("\C-c\C-u" . py-goto-block-up)
310 ("\C-c\C-m" . py-mark-block)
311 ("\C-c#" . py-comment-region)
312 ("\C-c?" . py-describe-mode)
313 ("\C-c\C-hm" . py-describe-mode)
314 ("\e\C-a" . beginning-of-python-def-or-class)
315 ("\e\C-e" . end-of-python-def-or-class)
316 ( "\e\C-h" . mark-python-def-or-class)))
317 ;; should do all keybindings this way
318 (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report)
319 (define-key py-mode-map "\C-c\C-v" 'py-version)
320 )
Guido van Rossuma7925f11994-01-26 10:20:16 +0000321
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000322(defvar py-mode-syntax-table nil
323 "Syntax table used in `python-mode' buffers.")
324
Guido van Rossuma7925f11994-01-26 10:20:16 +0000325(if py-mode-syntax-table
326 ()
327 (setq py-mode-syntax-table (make-syntax-table))
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000328 ;; BAW - again, blech.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000329 (mapcar (function
330 (lambda (x) (modify-syntax-entry
331 (car x) (cdr x) py-mode-syntax-table)))
332 '(( ?\( . "()" ) ( ?\) . ")(" )
333 ( ?\[ . "(]" ) ( ?\] . ")[" )
334 ( ?\{ . "(}" ) ( ?\} . "){" )
335 ;; fix operator symbols misassigned in the std table
336 ( ?\$ . "." ) ( ?\% . "." ) ( ?\& . "." )
337 ( ?\* . "." ) ( ?\+ . "." ) ( ?\- . "." )
338 ( ?\/ . "." ) ( ?\< . "." ) ( ?\= . "." )
339 ( ?\> . "." ) ( ?\| . "." )
Guido van Rossum6ba11201996-08-20 19:57:53 +0000340 ;; for historical reasons, underscore is word class
341 ;; instead of symbol class. it should be symbol class,
342 ;; but if you're tempted to change it, try binding M-f and
343 ;; M-b to py-forward-into-nomenclature and
344 ;; py-backward-into-nomenclature instead. -baw
345 ( ?\_ . "w" ) ; underscore is legit in words
Guido van Rossuma7925f11994-01-26 10:20:16 +0000346 ( ?\' . "\"") ; single quote is string quote
347 ( ?\" . "\"" ) ; double quote is string quote too
348 ( ?\` . "$") ; backquote is open and close paren
349 ( ?\# . "<") ; hash starts comment
350 ( ?\n . ">")))) ; newline ends comment
351
Guido van Rossume531e4b1994-04-16 08:29:27 +0000352(defconst py-stringlit-re
353 (concat
354 "'\\([^'\n\\]\\|\\\\.\\)*'" ; single-quoted
355 "\\|" ; or
356 "\"\\([^\"\n\\]\\|\\\\.\\)*\"") ; double-quoted
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000357 "Regexp matching a Python string literal.")
Guido van Rossuma7925f11994-01-26 10:20:16 +0000358
359;; this is tricky because a trailing backslash does not mean
360;; continuation if it's in a comment
361(defconst py-continued-re
362 (concat
Guido van Rossume531e4b1994-04-16 08:29:27 +0000363 "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*"
Guido van Rossuma7925f11994-01-26 10:20:16 +0000364 "\\\\$")
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000365 "Regexp matching Python lines that are continued via backslash.")
Guido van Rossuma7925f11994-01-26 10:20:16 +0000366
367(defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)"
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000368 "Regexp matching blank or comment lines.")
Guido van Rossuma7925f11994-01-26 10:20:16 +0000369
Guido van Rossum1d5645d1995-03-14 21:31:47 +0000370(defconst py-outdent-re
371 (concat "\\(" (mapconcat 'identity
372 '("else:"
Guido van Rossum1c1fbf81995-03-14 21:33:10 +0000373 "except\\(\\s +.*\\)?:"
Guido van Rossum1d5645d1995-03-14 21:31:47 +0000374 "finally:"
375 "elif\\s +.*:")
376 "\\|")
377 "\\)")
378 "Regexp matching clauses to be outdented one level.")
Guido van Rossuma7925f11994-01-26 10:20:16 +0000379
Guido van Rossum1c1fbf81995-03-14 21:33:10 +0000380(defconst py-no-outdent-re
381 (concat "\\(" (mapconcat 'identity
Guido van Rossum2ed53541995-03-15 19:57:14 +0000382 '("try:"
Guido van Rossum1c1fbf81995-03-14 21:33:10 +0000383 "except\\(\\s +.*\\)?:"
384 "while\\s +.*:"
385 "for\\s +.*:"
386 "if\\s +.*:"
Guido van Rossum6ba11201996-08-20 19:57:53 +0000387 "elif\\s +.*:"
388 "\\(return\\|break\\|raise\\|continue\\)[ \t\n]"
389 )
Guido van Rossum1c1fbf81995-03-14 21:33:10 +0000390 "\\|")
391 "\\)")
392 "Regexp matching lines to not outdent after.")
393
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000394
Guido van Rossum6ba11201996-08-20 19:57:53 +0000395;; Menu definitions, only relevent if you have the easymenu.el package
396;; (standard in the latest Emacs 19 and XEmacs 19 distributions).
397(defvar py-menu nil
398 "Menu for Python Mode.
399
400This menu will get created automatically if you have the easymenu
401package. Note that the latest XEmacs 19 and Emacs 19 versions contain
402this package.")
403
404(if (condition-case nil
405 (require 'easymenu)
406 (error nil))
407 (easy-menu-define
408 py-menu py-mode-map "Python Mode menu"
409 '("Python"
410 ["Comment Out Region" comment-region (mark)]
411 ["Uncomment Region" (comment-region (point) (mark) '(4)) (mark)]
412 "-"
413 ["Mark current block" py-mark-block t]
414 ["Mark current def" mark-python-def-or-class t]
415 ["Mark current class" (mark-python-def-or-class t) t]
416 "-"
417 ["Shift region left" py-shift-region-left (mark)]
418 ["Shift region right" py-shift-region-right (mark)]
419 "-"
420 ["Execute buffer" py-execute-buffer t]
421 ["Execute region" py-execute-region (mark)]
422 ["Start interpreter..." py-shell t]
423 "-"
424 ["Go to start of block" py-goto-block-up t]
425 ["Go to start of class" (beginning-of-python-def-or-class t) t]
426 ["Move to end of class" (end-of-python-def-or-class t) t]
427 ["Move to start of def" beginning-of-python-def-or-class t]
428 ["Move to end of def" end-of-python-def-or-class t]
429 "-"
430 ["Describe mode" py-describe-mode t]
431 )))
432
433
434
435;; imenu definitions, courtesy of Perry A. Stoll <stoll@atr-sw.atr.co.jp>
436(defvar imenu-example--python-class-regexp
437 (concat ; <<classes>>
438 "\\(" ;
439 "^[ \t]*" ; newline and maybe whitespace
440 "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name
441 ; possibly multiple superclasses
442 "\\([ \t]*\\((\\([a-zA-Z0-9_, \t\n]\\)*)\\)?\\)"
443 "[ \t]*:" ; and the final :
444 "\\)" ; >>classes<<
445 )
446 "Regexp for Python classes for use with the imenu package."
447 )
448
449(defvar imenu-example--python-method-regexp
450 (concat ; <<methods and functions>>
451 "\\(" ;
452 "^[ \t]*" ; new line and maybe whitespace
453 "\\(def[ \t]+" ; function definitions start with def
454 "\\([a-zA-Z0-9_]+\\)" ; name is here
455 ; function arguments...
456 "[ \t]*(\\([a-zA-Z0-9_=,\* \t\n]*\\))"
457 "\\)" ; end of def
458 "[ \t]*:" ; and then the :
459 "\\)" ; >>methods and functions<<
460 )
461 "Regexp for Python methods/functions for use with the imenu package."
462 )
463
464(defvar imenu-example--python-method-no-arg-parens '(2 8)
465 "Indicies into groups of the Python regexp for use with imenu.
466
467Using these values will result in smaller imenu lists, as arguments to
468functions are not listed.
469
470See the variable `imenu-example--python-show-method-args-p' for more
471information.")
472
473(defvar imenu-example--python-method-arg-parens '(2 7)
474 "Indicies into groups of the Python regexp for use with imenu.
475Using these values will result in large imenu lists, as arguments to
476functions are listed.
477
478See the variable `imenu-example--python-show-method-args-p' for more
479information.")
480
481;; Note that in this format, this variable can still be used with the
482;; imenu--generic-function. Otherwise, there is no real reason to have
483;; it.
484(defvar imenu-example--generic-python-expression
485 (cons
486 (concat
487 imenu-example--python-class-regexp
488 "\\|" ; or...
489 imenu-example--python-method-regexp
490 )
491 imenu-example--python-method-no-arg-parens)
492 "Generic Python expression which may be used directly with imenu.
493Used by setting the variable `imenu-generic-expression' to this value.
494Also, see the function \\[imenu-example--create-python-index] for a
495better alternative for finding the index.")
496
497;; These next two variables are used when searching for the python
498;; class/definitions. Just saving some time in accessing the
499;; generic-python-expression, really.
500(defvar imenu-example--python-generic-regexp)
501(defvar imenu-example--python-generic-parens)
502
503
504;;;###autoload
505(eval-when-compile
506 ;; Imenu isn't used in XEmacs, so just ignore load errors
507 (condition-case ()
508 (progn
509 (require 'cl)
510 (require 'imenu))
511 (error nil)))
512
513(defun imenu-example--create-python-index ()
514 "Python interface function for imenu package.
515Finds all python classes and functions/methods. Calls function
516\\[imenu-example--create-python-index-engine]. See that function for
517the details of how this works."
518 (setq imenu-example--python-generic-regexp
519 (car imenu-example--generic-python-expression))
520 (setq imenu-example--python-generic-parens
521 (if imenu-example--python-show-method-args-p
522 imenu-example--python-method-arg-parens
523 imenu-example--python-method-no-arg-parens))
524 (goto-char (point-min))
525 (imenu-example--create-python-index-engine nil))
526
527(defun imenu-example--create-python-index-engine (&optional start-indent)
528 "Function for finding imenu definitions in Python.
529
530Finds all definitions (classes, methods, or functions) in a Python
531file for the imenu package.
532
533Returns a possibly nested alist of the form
534
535 (INDEX-NAME . INDEX-POSITION)
536
537The second element of the alist may be an alist, producing a nested
538list as in
539
540 (INDEX-NAME . INDEX-ALIST)
541
542This function should not be called directly, as it calls itself
543recursively and requires some setup. Rather this is the engine for
544the function \\[imenu-example--create-python-index].
545
546It works recursively by looking for all definitions at the current
547indention level. When it finds one, it adds it to the alist. If it
548finds a definition at a greater indentation level, it removes the
549previous definition from the alist. In it's place it adds all
550definitions found at the next indentation level. When it finds a
551definition that is less indented then the current level, it retuns the
552alist it has created thus far.
553
554The optional argument START-INDENT indicates the starting indentation
555at which to continue looking for Python classes, methods, or
556functions. If this is not supplied, the function uses the indentation
557of the first definition found."
558 (let ((index-alist '())
559 (sub-method-alist '())
560 looking-p
561 def-name prev-name
562 cur-indent def-pos
563 (class-paren (first imenu-example--python-generic-parens))
564 (def-paren (second imenu-example--python-generic-parens)))
565 (setq looking-p
566 (re-search-forward imenu-example--python-generic-regexp
567 (point-max) t))
568 (while looking-p
569 (save-excursion
570 ;; used to set def-name to this value but generic-extract-name is
571 ;; new to imenu-1.14. this way it still works with imenu-1.11
572 ;;(imenu--generic-extract-name imenu-example--python-generic-parens))
573 (let ((cur-paren (if (match-beginning class-paren)
574 class-paren def-paren)))
575 (setq def-name
576 (buffer-substring (match-beginning cur-paren)
577 (match-end cur-paren))))
578 (beginning-of-line)
579 (setq cur-indent (current-indentation)))
580
581 ;; HACK: want to go to the next correct definition location. we
582 ;; explicitly list them here. would be better to have them in a
583 ;; list.
584 (setq def-pos
585 (or (match-beginning class-paren)
586 (match-beginning def-paren)))
587
588 ;; if we don't have a starting indent level, take this one
589 (or start-indent
590 (setq start-indent cur-indent))
591
592 ;; if we don't have class name yet, take this one
593 (or prev-name
594 (setq prev-name def-name))
595
596 ;; what level is the next definition on? must be same, deeper
597 ;; or shallower indentation
598 (cond
599 ;; at the same indent level, add it to the list...
600 ((= start-indent cur-indent)
601
602 ;; if we don't have push, use the following...
603 ;;(setf index-alist (cons (cons def-name def-pos) index-alist))
604 (push (cons def-name def-pos) index-alist))
605
606 ;; deeper indented expression, recur...
607 ((< start-indent cur-indent)
608
609 ;; the point is currently on the expression we're supposed to
610 ;; start on, so go back to the last expression. The recursive
611 ;; call will find this place again and add it to the correct
612 ;; list
613 (re-search-backward imenu-example--python-generic-regexp
614 (point-min) 'move)
615 (setq sub-method-alist (imenu-example--create-python-index-engine
616 cur-indent))
617
618 (if sub-method-alist
619 ;; we put the last element on the index-alist on the start
620 ;; of the submethod alist so the user can still get to it.
621 (let ((save-elmt (pop index-alist)))
622 (push (cons (imenu-create-submenu-name prev-name)
623 (cons save-elmt sub-method-alist))
624 index-alist))))
625
626 ;; found less indented expression, we're done.
627 (t
628 (setq looking-p nil)
629 (re-search-backward imenu-example--python-generic-regexp
630 (point-min) t)))
631 (setq prev-name def-name)
632 (and looking-p
633 (setq looking-p
634 (re-search-forward imenu-example--python-generic-regexp
635 (point-max) 'move))))
636 (nreverse index-alist)))
637
638
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000639;;;###autoload
Guido van Rossuma7925f11994-01-26 10:20:16 +0000640(defun python-mode ()
641 "Major mode for editing Python files.
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000642To submit a problem report, enter `\\[py-submit-bug-report]' from a
643`python-mode' buffer. Do `\\[py-describe-mode]' for detailed
644documentation. To see what version of `python-mode' you are running,
645enter `\\[py-version]'.
646
647This mode knows about Python indentation, tokens, comments and
648continuation lines. Paragraphs are separated by blank lines only.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000649
650COMMANDS
651\\{py-mode-map}
652VARIABLES
653
Guido van Rossum6ba11201996-08-20 19:57:53 +0000654py-indent-offset\t\tindentation increment
655py-block-comment-prefix\t\tcomment string used by comment-region
656py-python-command\t\tshell command to invoke Python interpreter
657py-scroll-process-buffer\t\talways scroll Python process buffer
658py-temp-directory\t\tdirectory used for temp files (if needed)
659py-beep-if-tab-change\t\tring the bell if tab-width is changed"
Guido van Rossuma7925f11994-01-26 10:20:16 +0000660 (interactive)
661 (kill-all-local-variables)
Guido van Rossuma7925f11994-01-26 10:20:16 +0000662 (set-syntax-table py-mode-syntax-table)
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000663 (setq major-mode 'python-mode
664 mode-name "Python"
665 local-abbrev-table python-mode-abbrev-table)
666 (use-local-map py-mode-map)
Guido van Rossum6ba11201996-08-20 19:57:53 +0000667 ;; add the menu
668 (if py-menu
669 (easy-menu-add py-menu))
Guido van Rossum503b2e81995-10-08 00:44:23 +0000670 ;; Emacs 19 requires this
671 (if (or py-this-is-lucid-emacs-p py-this-is-emacs-19-p)
672 (setq comment-multi-line nil))
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000673 ;; BAW -- style...
Guido van Rossuma7925f11994-01-26 10:20:16 +0000674 (mapcar (function (lambda (x)
675 (make-local-variable (car x))
676 (set (car x) (cdr x))))
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000677 '((paragraph-separate . "^[ \t]*$")
678 (paragraph-start . "^[ \t]*$")
679 (require-final-newline . t)
680 (comment-start . "# ")
681 (comment-start-skip . "# *")
682 (comment-column . 40)
683 (indent-region-function . py-indent-region)
684 (indent-line-function . py-indent-line)))
Guido van Rossuma7925f11994-01-26 10:20:16 +0000685 ;; hack to allow overriding the tabsize in the file (see tokenizer.c)
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000686 ;;
687 ;; not sure where the magic comment has to be; to save time
688 ;; searching for a rarity, we give up if it's not found prior to the
689 ;; first executable statement.
690 ;;
691 ;; BAW - on first glance, this seems like complete hackery. Why was
692 ;; this necessary, and is it still necessary?
693 (let ((case-fold-search nil)
694 (start (point))
695 new-tab-width)
Guido van Rossuma7925f11994-01-26 10:20:16 +0000696 (if (re-search-forward
697 "^[ \t]*#[ \t]*vi:set[ \t]+tabsize=\\([0-9]+\\):"
698 (prog2 (py-next-statement 1) (point) (goto-char 1))
699 t)
700 (progn
701 (setq new-tab-width
702 (string-to-int
703 (buffer-substring (match-beginning 1) (match-end 1))))
704 (if (= tab-width new-tab-width)
705 nil
706 (setq tab-width new-tab-width)
707 (message "Caution: tab-width changed to %d" new-tab-width)
708 (if py-beep-if-tab-change (beep)))))
709 (goto-char start))
710
Guido van Rossum6ba11201996-08-20 19:57:53 +0000711 ;; install imenu
712 (setq imenu-create-index-function
713 (function imenu-example--create-python-index))
714 (if (fboundp 'imenu-add-to-menubar)
715 (imenu-add-to-menubar (format "%s-%s" "IM" mode-name)))
716
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000717 ;; run the mode hook. py-mode-hook use is deprecated
Guido van Rossuma67bb7e1994-11-10 23:01:59 +0000718 (if python-mode-hook
719 (run-hooks 'python-mode-hook)
720 (run-hooks 'py-mode-hook)))
Guido van Rossuma7925f11994-01-26 10:20:16 +0000721
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000722
Guido van Rossum6ba11201996-08-20 19:57:53 +0000723(defun py-keep-region-active ()
724 ;; do whatever is necessary to keep the region active in XEmacs.
725 ;; Ignore byte-compiler warnings you might see. Also note that
726 ;; FSF's Emacs 19 does it differently and doesn't its policy doesn't
727 ;; require us to take explicit action.
728 (and (boundp 'zmacs-region-stays)
729 (setq zmacs-region-stays t)))
730
731
Guido van Rossum1d5645d1995-03-14 21:31:47 +0000732;; electric characters
Guido van Rossumd97cc371995-03-15 19:55:55 +0000733(defun py-outdent-p ()
734 ;; returns non-nil if the current line should outdent one level
735 (save-excursion
736 (and (progn (back-to-indentation)
737 (looking-at py-outdent-re))
738 (progn (backward-to-indentation 1)
739 (while (or (looking-at py-blank-or-comment-re)
740 (bobp))
741 (backward-to-indentation 1))
742 (not (looking-at py-no-outdent-re)))
743 )))
744
745
Guido van Rossum1d5645d1995-03-14 21:31:47 +0000746(defun py-electric-colon (arg)
747 "Insert a colon.
748In certain cases the line is outdented appropriately. If a numeric
Guido van Rossum503b2e81995-10-08 00:44:23 +0000749argument is provided, that many colons are inserted non-electrically.
750Electric behavior is inhibited inside a string or comment."
Guido van Rossum1d5645d1995-03-14 21:31:47 +0000751 (interactive "P")
752 (self-insert-command (prefix-numeric-value arg))
Guido van Rossum503b2e81995-10-08 00:44:23 +0000753 ;; are we in a string or comment?
754 (if (save-excursion
755 (let ((pps (parse-partial-sexp (save-excursion
756 (beginning-of-python-def-or-class)
757 (point))
758 (point))))
759 (not (or (nth 3 pps) (nth 4 pps)))))
760 (save-excursion
761 (let ((here (point))
762 (outdent 0)
763 (indent (py-compute-indentation)))
764 (if (and (not arg)
765 (py-outdent-p)
766 (= indent (save-excursion
Guido van Rossum6ba11201996-08-20 19:57:53 +0000767 (py-next-statement -1)
Guido van Rossum503b2e81995-10-08 00:44:23 +0000768 (py-compute-indentation)))
769 )
770 (setq outdent py-indent-offset))
771 ;; Don't indent, only outdent. This assumes that any lines that
772 ;; are already outdented relative to py-compute-indentation were
773 ;; put there on purpose. Its highly annoying to have `:' indent
774 ;; for you. Use TAB, C-c C-l or C-c C-r to adjust. TBD: Is
775 ;; there a better way to determine this???
776 (if (< (current-indentation) indent) nil
777 (goto-char here)
778 (beginning-of-line)
779 (delete-horizontal-space)
780 (indent-to (- indent outdent))
781 )))))
Guido van Rossum2ed53541995-03-15 19:57:14 +0000782
Guido van Rossum1d5645d1995-03-14 21:31:47 +0000783
Guido van Rossuma7925f11994-01-26 10:20:16 +0000784;;; Functions that execute Python commands in a subprocess
Guido van Rossuma7925f11994-01-26 10:20:16 +0000785(defun py-shell ()
786 "Start an interactive Python interpreter in another window.
787This is like Shell mode, except that Python is running in the window
788instead of a shell. See the `Interactive Shell' and `Shell Mode'
789sections of the Emacs manual for details, especially for the key
790bindings active in the `*Python*' buffer.
791
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000792See the docs for variable `py-scroll-buffer' for info on scrolling
Guido van Rossuma7925f11994-01-26 10:20:16 +0000793behavior in the process window.
794
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000795Warning: Don't use an interactive Python if you change sys.ps1 or
796sys.ps2 from their default values, or if you're running code that
797prints `>>> ' or `... ' at the start of a line. `python-mode' can't
798distinguish your output from Python's output, and assumes that `>>> '
799at the start of a line is a prompt from Python. Similarly, the Emacs
800Shell mode code assumes that both `>>> ' and `... ' at the start of a
801line are Python prompts. Bad things can happen if you fool either
802mode.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000803
804Warning: If you do any editing *in* the process buffer *while* the
805buffer is accepting output from Python, do NOT attempt to `undo' the
806changes. Some of the output (nowhere near the parts you changed!) may
807be lost if you do. This appears to be an Emacs bug, an unfortunate
808interaction between undo and process filters; the same problem exists in
809non-Python process buffers using the default (Emacs-supplied) process
810filter."
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000811 ;; BAW - should undo be disabled in the python process buffer, if
812 ;; this bug still exists?
Guido van Rossuma7925f11994-01-26 10:20:16 +0000813 (interactive)
814 (if py-this-is-emacs-19-p
815 (progn
816 (require 'comint)
817 (switch-to-buffer-other-window
818 (make-comint "Python" py-python-command)))
819 (progn
820 (require 'shell)
821 (switch-to-buffer-other-window
Guido van Rossum6ba11201996-08-20 19:57:53 +0000822 (apply (if (fboundp 'make-shell) 'make-shell 'make-comint)
Guido van Rossumd4901c81995-08-28 03:12:57 +0000823 "Python" py-python-command nil))))
Guido van Rossuma7925f11994-01-26 10:20:16 +0000824 (make-local-variable 'shell-prompt-pattern)
825 (setq shell-prompt-pattern "^>>> \\|^\\.\\.\\. ")
826 (set-process-filter (get-buffer-process (current-buffer))
827 'py-process-filter)
828 (set-syntax-table py-mode-syntax-table))
829
830(defun py-execute-region (start end)
831 "Send the region between START and END to a Python interpreter.
832If there is a *Python* process it is used.
833
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000834Hint: If you want to execute part of a Python file several times
835\(e.g., perhaps you're developing a function and want to flesh it out
836a bit at a time), use `\\[narrow-to-region]' to restrict the buffer to
837the region of interest, and send the code to a *Python* process via
838`\\[py-execute-buffer]' instead.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000839
840Following are subtleties to note when using a *Python* process:
841
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000842If a *Python* process is used, the region is copied into a temporary
843file (in directory `py-temp-directory'), and an `execfile' command is
844sent to Python naming that file. If you send regions faster than
845Python can execute them, `python-mode' will save them into distinct
846temp files, and execute the next one in the queue the next time it
847sees a `>>> ' prompt from Python. Each time this happens, the process
848buffer is popped into a window (if it's not already in some window) so
849you can see it, and a comment of the form
Guido van Rossuma7925f11994-01-26 10:20:16 +0000850
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000851 \t## working on region in file <name> ...
Guido van Rossuma7925f11994-01-26 10:20:16 +0000852
853is inserted at the end.
854
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000855Caution: No more than 26 regions can be pending at any given time.
856This limit is (indirectly) inherited from libc's mktemp(3).
857`python-mode' does not try to protect you from exceeding the limit.
858It's extremely unlikely that you'll get anywhere close to the limit in
859practice, unless you're trying to be a jerk <grin>.
Guido van Rossuma7925f11994-01-26 10:20:16 +0000860
861See the `\\[py-shell]' docs for additional warnings."
862 (interactive "r")
863 (or (< start end) (error "Region is empty"))
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000864 (let ((pyproc (get-process "Python"))
865 fname)
Guido van Rossuma7925f11994-01-26 10:20:16 +0000866 (if (null pyproc)
867 (shell-command-on-region start end py-python-command)
868 ;; else feed it thru a temp file
869 (setq fname (py-make-temp-name))
870 (write-region start end fname nil 'no-msg)
871 (setq py-file-queue (append py-file-queue (list fname)))
872 (if (cdr py-file-queue)
873 (message "File %s queued for execution" fname)
874 ;; else
875 (py-execute-file pyproc fname)))))
876
877(defun py-execute-file (pyproc fname)
878 (py-append-to-process-buffer
879 pyproc
880 (format "## working on region in file %s ...\n" fname))
881 (process-send-string pyproc (format "execfile('%s')\n" fname)))
882
883(defun py-process-filter (pyproc string)
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000884 (let ((curbuf (current-buffer))
885 (pbuf (process-buffer pyproc))
886 (pmark (process-mark pyproc))
887 file-finished)
Guido van Rossuma7925f11994-01-26 10:20:16 +0000888
889 ;; make sure we switch to a different buffer at least once. if we
890 ;; *don't* do this, then if the process buffer is in the selected
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000891 ;; window, and point is before the end, and lots of output is
892 ;; coming at a fast pace, then (a) simple cursor-movement commands
893 ;; like C-p, C-n, C-f, C-b, C-a, C-e take an incredibly long time
894 ;; to have a visible effect (the window just doesn't get updated,
895 ;; sometimes for minutes(!)), and (b) it takes about 5x longer to
896 ;; get all the process output (until the next python prompt).
Guido van Rossuma7925f11994-01-26 10:20:16 +0000897 ;;
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000898 ;; #b makes no sense to me at all. #a almost makes sense: unless
899 ;; we actually change buffers, set_buffer_internal in buffer.c
900 ;; doesn't set windows_or_buffers_changed to 1, & that in turn
901 ;; seems to make the Emacs command loop reluctant to update the
902 ;; display. Perhaps the default process filter in process.c's
903 ;; read_process_output has update_mode_lines++ for a similar
904 ;; reason? beats me ...
905
906 ;; BAW - we want to check to see if this still applies
Guido van Rossuma7925f11994-01-26 10:20:16 +0000907 (if (eq curbuf pbuf) ; mysterious ugly hack
908 (set-buffer (get-buffer-create "*scratch*")))
909
910 (set-buffer pbuf)
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000911 (let* ((start (point))
912 (goback (< start pmark))
Guido van Rossumd4901c81995-08-28 03:12:57 +0000913 (goend (and (not goback) (= start (point-max))))
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000914 (buffer-read-only nil))
Guido van Rossuma7925f11994-01-26 10:20:16 +0000915 (goto-char pmark)
916 (insert string)
917 (move-marker pmark (point))
918 (setq file-finished
919 (and py-file-queue
920 (equal ">>> "
921 (buffer-substring
922 (prog2 (beginning-of-line) (point)
923 (goto-char pmark))
924 (point)))))
925 (if goback (goto-char start)
926 ;; else
927 (if py-scroll-process-buffer
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000928 (let* ((pop-up-windows t)
929 (pwin (display-buffer pbuf)))
Guido van Rossumd4901c81995-08-28 03:12:57 +0000930 (set-window-point pwin (point)))))
931 (set-buffer curbuf)
932 (if file-finished
933 (progn
934 (py-delete-file-silently (car py-file-queue))
935 (setq py-file-queue (cdr py-file-queue))
936 (if py-file-queue
937 (py-execute-file pyproc (car py-file-queue)))))
938 (and goend
939 (progn (set-buffer pbuf)
940 (goto-char (point-max))))
941 )))
Guido van Rossuma7925f11994-01-26 10:20:16 +0000942
943(defun py-execute-buffer ()
944 "Send the contents of the buffer to a Python interpreter.
945If there is a *Python* process buffer it is used. If a clipping
946restriction is in effect, only the accessible portion of the buffer is
947sent. A trailing newline will be supplied if needed.
948
949See the `\\[py-execute-region]' docs for an account of some subtleties."
950 (interactive)
951 (py-execute-region (point-min) (point-max)))
952
953
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000954
955;; Functions for Python style indentation
Guido van Rossum6ba11201996-08-20 19:57:53 +0000956(defun py-delete-char (count)
Guido van Rossuma7925f11994-01-26 10:20:16 +0000957 "Reduce indentation or delete character.
958If point is at the leftmost column, deletes the preceding newline.
959
960Else if point is at the leftmost non-blank character of a line that is
961neither a continuation line nor a non-indenting comment line, or if
962point is at the end of a blank line, reduces the indentation to match
963that of the line that opened the current block of code. The line that
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000964opened the block is displayed in the echo area to help you keep track
Guido van Rossum6ba11201996-08-20 19:57:53 +0000965of where you are. With numeric count, outdents that many blocks (but
966not past column zero).
Guido van Rossuma7925f11994-01-26 10:20:16 +0000967
968Else the preceding character is deleted, converting a tab to spaces if
Guido van Rossum6ba11201996-08-20 19:57:53 +0000969needed so that only a single column position is deleted. Numeric
970argument delets that many characters."
971 (interactive "*p")
Guido van Rossuma7925f11994-01-26 10:20:16 +0000972 (if (or (/= (current-indentation) (current-column))
973 (bolp)
974 (py-continuation-line-p)
Guido van Rossum6ba11201996-08-20 19:57:53 +0000975 (not py-honor-comment-indentation)
Guido van Rossuma7925f11994-01-26 10:20:16 +0000976 (looking-at "#[^ \t\n]")) ; non-indenting #
Guido van Rossum6ba11201996-08-20 19:57:53 +0000977 (backward-delete-char-untabify count)
Guido van Rossuma7925f11994-01-26 10:20:16 +0000978 ;; else indent the same as the colon line that opened the block
979
980 ;; force non-blank so py-goto-block-up doesn't ignore it
981 (insert-char ?* 1)
982 (backward-char)
Guido van Rossumdeaa1051995-03-10 16:17:03 +0000983 (let ((base-indent 0) ; indentation of base line
984 (base-text "") ; and text of base line
985 (base-found-p nil))
Guido van Rossum6ba11201996-08-20 19:57:53 +0000986 (save-excursion
987 (while (< 0 count)
988 (condition-case nil ; in case no enclosing block
989 (progn
990 (py-goto-block-up 'no-mark)
991 (setq base-indent (current-indentation)
992 base-text (py-suck-up-leading-text)
993 base-found-p t))
994 (error nil))
995 (setq count (1- count))))
Guido van Rossuma7925f11994-01-26 10:20:16 +0000996 (delete-char 1) ; toss the dummy character
997 (delete-horizontal-space)
998 (indent-to base-indent)
999 (if base-found-p
1000 (message "Closes block: %s" base-text)))))
1001
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001002;; required for pending-del and delsel modes
1003(put 'py-delete-char 'delete-selection 'supersede)
1004(put 'py-delete-char 'pending-delete 'supersede)
1005
Guido van Rossuma7925f11994-01-26 10:20:16 +00001006(defun py-indent-line ()
1007 "Fix the indentation of the current line according to Python rules."
1008 (interactive)
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001009 (let* ((ci (current-indentation))
1010 (move-to-indentation-p (<= (current-column) ci))
Guido van Rossum1d5645d1995-03-14 21:31:47 +00001011 (need (py-compute-indentation)))
Guido van Rossum1c1fbf81995-03-14 21:33:10 +00001012 ;; see if we need to outdent
Guido van Rossumd97cc371995-03-15 19:55:55 +00001013 (if (py-outdent-p)
Guido van Rossum1d5645d1995-03-14 21:31:47 +00001014 (setq need (- need py-indent-offset)))
Guido van Rossuma7925f11994-01-26 10:20:16 +00001015 (if (/= ci need)
1016 (save-excursion
1017 (beginning-of-line)
1018 (delete-horizontal-space)
1019 (indent-to need)))
1020 (if move-to-indentation-p (back-to-indentation))))
1021
1022(defun py-newline-and-indent ()
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001023 "Strives to act like the Emacs `newline-and-indent'.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001024This is just `strives to' because correct indentation can't be computed
1025from scratch for Python code. In general, deletes the whitespace before
1026point, inserts a newline, and takes an educated guess as to how you want
1027the new line indented."
1028 (interactive)
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001029 (let ((ci (current-indentation)))
Guido van Rossuma7925f11994-01-26 10:20:16 +00001030 (if (< ci (current-column)) ; if point beyond indentation
1031 (newline-and-indent)
1032 ;; else try to act like newline-and-indent "normally" acts
1033 (beginning-of-line)
1034 (insert-char ?\n 1)
1035 (move-to-column ci))))
1036
1037(defun py-compute-indentation ()
1038 (save-excursion
Guido van Rossum503b2e81995-10-08 00:44:23 +00001039 (let ((pps (parse-partial-sexp (save-excursion
1040 (beginning-of-python-def-or-class)
1041 (point))
1042 (point))))
1043 (beginning-of-line)
1044 (cond
1045 ;; are we inside a string or comment?
1046 ((or (nth 3 pps) (nth 4 pps))
1047 (save-excursion
1048 (if (not py-align-multiline-strings-p) 0
1049 ;; skip back over blank & non-indenting comment lines
1050 ;; note: will skip a blank or non-indenting comment line
1051 ;; that happens to be a continuation line too
1052 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move)
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001053 (back-to-indentation)
Guido van Rossum503b2e81995-10-08 00:44:23 +00001054 (current-column))))
1055 ;; are we on a continuation line?
1056 ((py-continuation-line-p)
1057 (let ((startpos (point))
1058 (open-bracket-pos (py-nesting-level))
Guido van Rossum6ba11201996-08-20 19:57:53 +00001059 endpos searching found state)
Guido van Rossum503b2e81995-10-08 00:44:23 +00001060 (if open-bracket-pos
1061 (progn
1062 ;; align with first item in list; else a normal
1063 ;; indent beyond the line with the open bracket
1064 (goto-char (1+ open-bracket-pos)) ; just beyond bracket
1065 ;; is the first list item on the same line?
1066 (skip-chars-forward " \t")
1067 (if (null (memq (following-char) '(?\n ?# ?\\)))
1068 ; yes, so line up with it
1069 (current-column)
1070 ;; first list item on another line, or doesn't exist yet
1071 (forward-line 1)
1072 (while (and (< (point) startpos)
1073 (looking-at "[ \t]*[#\n\\\\]")) ; skip noise
1074 (forward-line 1))
1075 (if (< (point) startpos)
1076 ;; again mimic the first list item
1077 (current-indentation)
1078 ;; else they're about to enter the first item
1079 (goto-char open-bracket-pos)
1080 (+ (current-indentation) py-indent-offset))))
Guido van Rossume531e4b1994-04-16 08:29:27 +00001081
Guido van Rossum503b2e81995-10-08 00:44:23 +00001082 ;; else on backslash continuation line
1083 (forward-line -1)
1084 (if (py-continuation-line-p) ; on at least 3rd line in block
1085 (current-indentation) ; so just continue the pattern
1086 ;; else started on 2nd line in block, so indent more.
1087 ;; if base line is an assignment with a start on a RHS,
1088 ;; indent to 2 beyond the leftmost "="; else skip first
1089 ;; chunk of non-whitespace characters on base line, + 1 more
1090 ;; column
1091 (end-of-line)
1092 (setq endpos (point) searching t)
1093 (back-to-indentation)
1094 (setq startpos (point))
1095 ;; look at all "=" from left to right, stopping at first
1096 ;; one not nested in a list or string
1097 (while searching
1098 (skip-chars-forward "^=" endpos)
1099 (if (= (point) endpos)
1100 (setq searching nil)
1101 (forward-char 1)
1102 (setq state (parse-partial-sexp startpos (point)))
1103 (if (and (zerop (car state)) ; not in a bracket
1104 (null (nth 3 state))) ; & not in a string
1105 (progn
1106 (setq searching nil) ; done searching in any case
1107 (setq found
1108 (not (or
1109 (eq (following-char) ?=)
1110 (memq (char-after (- (point) 2))
1111 '(?< ?> ?!)))))))))
1112 (if (or (not found) ; not an assignment
1113 (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash>
1114 (progn
1115 (goto-char startpos)
1116 (skip-chars-forward "^ \t\n")))
1117 (1+ (current-column))))))
Guido van Rossuma7925f11994-01-26 10:20:16 +00001118
Guido van Rossum503b2e81995-10-08 00:44:23 +00001119 ;; not on a continuation line
Guido van Rossum6ba11201996-08-20 19:57:53 +00001120 ((bobp) (current-indentation))
Guido van Rossuma7925f11994-01-26 10:20:16 +00001121
Guido van Rossum6ba11201996-08-20 19:57:53 +00001122 ;; Dfn: "Indenting comment line". A line containing only a
1123 ;; comment, but which is treated like a statement for
1124 ;; indentation calculation purposes. Such lines are only
1125 ;; treated specially by the mode; they are not treated
1126 ;; specially by the Python interpreter.
1127
1128 ;; The rules for indenting comment lines are a line where:
1129 ;; - the first non-whitespace character is `#', and
1130 ;; - the character following the `#' is whitespace, and
1131 ;; - the line is outdented with respect to (i.e. to the left
1132 ;; of) the indentation of the preceding non-blank line.
1133
1134 ;; The first non-blank line following an indenting comment
1135 ;; line is given the same amount of indentation as the
1136 ;; indenting comment line.
1137
1138 ;; All other comment-only lines are ignored for indentation
1139 ;; purposes.
1140
1141 ;; Are we looking at a comment-only line which is *not* an
1142 ;; indenting comment line? If so, we assume that its been
1143 ;; placed at the desired indentation, so leave it alone.
1144 ;; Indenting comment lines are aligned as statements down
1145 ;; below.
1146 ((and (looking-at "[ \t]*#[^ \t\n]")
1147 ;; NOTE: this test will not be performed in older Emacsen
1148 (fboundp 'forward-comment)
1149 (<= (current-indentation)
1150 (save-excursion
1151 (forward-comment (- (point-max)))
1152 (current-indentation))))
Guido van Rossum503b2e81995-10-08 00:44:23 +00001153 (current-indentation))
1154
1155 ;; else indentation based on that of the statement that
1156 ;; precedes us; use the first line of that statement to
1157 ;; establish the base, in case the user forced a non-std
1158 ;; indentation for the continuation lines (if any)
1159 (t
1160 ;; skip back over blank & non-indenting comment lines note:
1161 ;; will skip a blank or non-indenting comment line that
Guido van Rossum6ba11201996-08-20 19:57:53 +00001162 ;; happens to be a continuation line too. use fast Emacs 19
1163 ;; function if it's there.
1164 (if (and (eq py-honor-comment-indentation nil)
1165 (fboundp 'forward-comment))
1166 (forward-comment (- (point-max)))
1167 (let (done)
1168 (while (not done)
1169 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)"
1170 nil 'move)
1171 (setq done (or (eq py-honor-comment-indentation t)
1172 (bobp)
1173 (/= (following-char) ?#)
1174 (not (zerop (current-column)))))
1175 )))
Guido van Rossum503b2e81995-10-08 00:44:23 +00001176 ;; if we landed inside a string, go to the beginning of that
1177 ;; string. this handles triple quoted, multi-line spanning
1178 ;; strings.
1179 (py-goto-initial-line)
Guido van Rossum6ba11201996-08-20 19:57:53 +00001180 (+ (current-indentation)
1181 (if (py-statement-opens-block-p)
1182 py-indent-offset
1183 (if (py-statement-closes-block-p)
1184 (- py-indent-offset)
1185 0)))
1186 )))))
Guido van Rossuma7925f11994-01-26 10:20:16 +00001187
1188(defun py-guess-indent-offset (&optional global)
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001189 "Guess a good value for, and change, `py-indent-offset'.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001190By default (without a prefix arg), makes a buffer-local copy of
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001191`py-indent-offset' with the new value. This will not affect any other
Guido van Rossuma7925f11994-01-26 10:20:16 +00001192Python buffers. With a prefix arg, changes the global value of
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001193`py-indent-offset'. This affects all Python buffers (that don't have
Guido van Rossuma7925f11994-01-26 10:20:16 +00001194their own buffer-local copy), both those currently existing and those
1195created later in the Emacs session.
1196
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001197Some people use a different value for `py-indent-offset' than you use.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001198There's no excuse for such foolishness, but sometimes you have to deal
1199with their ugly code anyway. This function examines the file and sets
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001200`py-indent-offset' to what it thinks it was when they created the
1201mess.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001202
1203Specifically, it searches forward from the statement containing point,
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001204looking for a line that opens a block of code. `py-indent-offset' is
1205set to the difference in indentation between that line and the Python
Guido van Rossuma7925f11994-01-26 10:20:16 +00001206statement following it. If the search doesn't succeed going forward,
1207it's tried again going backward."
1208 (interactive "P") ; raw prefix arg
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001209 (let (new-value
1210 (start (point))
1211 restart
1212 (found nil)
1213 colon-indent)
Guido van Rossuma7925f11994-01-26 10:20:16 +00001214 (py-goto-initial-line)
1215 (while (not (or found (eobp)))
1216 (if (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1217 (progn
1218 (setq restart (point))
1219 (py-goto-initial-line)
1220 (if (py-statement-opens-block-p)
1221 (setq found t)
1222 (goto-char restart)))))
1223 (if found
1224 ()
1225 (goto-char start)
1226 (py-goto-initial-line)
1227 (while (not (or found (bobp)))
1228 (setq found
1229 (and
1230 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1231 (or (py-goto-initial-line) t) ; always true -- side effect
1232 (py-statement-opens-block-p)))))
1233 (setq colon-indent (current-indentation)
1234 found (and found (zerop (py-next-statement 1)))
1235 new-value (- (current-indentation) colon-indent))
1236 (goto-char start)
1237 (if found
1238 (progn
1239 (funcall (if global 'kill-local-variable 'make-local-variable)
1240 'py-indent-offset)
1241 (setq py-indent-offset new-value)
1242 (message "%s value of py-indent-offset set to %d"
1243 (if global "Global" "Local")
1244 py-indent-offset))
1245 (error "Sorry, couldn't guess a value for py-indent-offset"))))
1246
1247(defun py-shift-region (start end count)
1248 (save-excursion
1249 (goto-char end) (beginning-of-line) (setq end (point))
1250 (goto-char start) (beginning-of-line) (setq start (point))
1251 (indent-rigidly start end count)))
1252
1253(defun py-shift-region-left (start end &optional count)
1254 "Shift region of Python code to the left.
1255The lines from the line containing the start of the current region up
1256to (but not including) the line containing the end of the region are
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001257shifted to the left, by `py-indent-offset' columns.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001258
1259If a prefix argument is given, the region is instead shifted by that
Guido van Rossum6ba11201996-08-20 19:57:53 +00001260many columns. With no active region, outdent only the current line.
1261You cannot outdent the region if any line is already at column zero."
1262 (interactive
1263 (let ((p (point))
1264 (m (mark))
1265 (arg current-prefix-arg))
1266 (if m
1267 (list (min p m) (max p m) arg)
1268 (list p (save-excursion (forward-line 1) (point)) arg))))
1269 ;; if any line is at column zero, don't shift the region
1270 (save-excursion
1271 (goto-char start)
1272 (while (< (point) end)
1273 (back-to-indentation)
1274 (if (and (zerop (current-column))
1275 (not (looking-at "\\s *$")))
1276 (error "Region is at left edge."))
1277 (forward-line 1)))
1278 (py-shift-region start end (- (prefix-numeric-value
1279 (or count py-indent-offset))))
1280 (py-keep-region-active))
Guido van Rossuma7925f11994-01-26 10:20:16 +00001281
1282(defun py-shift-region-right (start end &optional count)
1283 "Shift region of Python code to the right.
1284The lines from the line containing the start of the current region up
1285to (but not including) the line containing the end of the region are
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001286shifted to the right, by `py-indent-offset' columns.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001287
1288If a prefix argument is given, the region is instead shifted by that
Guido van Rossum6ba11201996-08-20 19:57:53 +00001289many columns. With no active region, indent only the current line."
1290 (interactive
1291 (let ((p (point))
1292 (m (mark))
1293 (arg current-prefix-arg))
1294 (if m
1295 (list (min p m) (max p m) arg)
1296 (list p (save-excursion (forward-line 1) (point)) arg))))
Guido van Rossuma7925f11994-01-26 10:20:16 +00001297 (py-shift-region start end (prefix-numeric-value
Guido van Rossum6ba11201996-08-20 19:57:53 +00001298 (or count py-indent-offset)))
1299 (py-keep-region-active))
Guido van Rossuma7925f11994-01-26 10:20:16 +00001300
1301(defun py-indent-region (start end &optional indent-offset)
1302 "Reindent a region of Python code.
Guido van Rossum6ba11201996-08-20 19:57:53 +00001303
Guido van Rossuma7925f11994-01-26 10:20:16 +00001304The lines from the line containing the start of the current region up
1305to (but not including) the line containing the end of the region are
1306reindented. If the first line of the region has a non-whitespace
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001307character in the first column, the first line is left alone and the
1308rest of the region is reindented with respect to it. Else the entire
Guido van Rossum6ba11201996-08-20 19:57:53 +00001309region is reindented with respect to the (closest code or indenting
1310comment) statement immediately preceding the region.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001311
1312This is useful when code blocks are moved or yanked, when enclosing
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001313control structures are introduced or removed, or to reformat code
1314using a new value for the indentation offset.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001315
1316If a numeric prefix argument is given, it will be used as the value of
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001317the indentation offset. Else the value of `py-indent-offset' will be
Guido van Rossuma7925f11994-01-26 10:20:16 +00001318used.
1319
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001320Warning: The region must be consistently indented before this function
Guido van Rossuma7925f11994-01-26 10:20:16 +00001321is called! This function does not compute proper indentation from
1322scratch (that's impossible in Python), it merely adjusts the existing
1323indentation to be correct in context.
1324
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001325Warning: This function really has no idea what to do with
1326non-indenting comment lines, and shifts them as if they were indenting
1327comment lines. Fixing this appears to require telepathy.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001328
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001329Special cases: whitespace is deleted from blank lines; continuation
1330lines are shifted by the same amount their initial line was shifted,
1331in order to preserve their relative indentation with respect to their
Guido van Rossuma7925f11994-01-26 10:20:16 +00001332initial line; and comment lines beginning in column 1 are ignored."
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001333 (interactive "*r\nP") ; region; raw prefix arg
Guido van Rossuma7925f11994-01-26 10:20:16 +00001334 (save-excursion
1335 (goto-char end) (beginning-of-line) (setq end (point-marker))
1336 (goto-char start) (beginning-of-line)
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001337 (let ((py-indent-offset (prefix-numeric-value
1338 (or indent-offset py-indent-offset)))
1339 (indents '(-1)) ; stack of active indent levels
1340 (target-column 0) ; column to which to indent
1341 (base-shifted-by 0) ; amount last base line was shifted
1342 (indent-base (if (looking-at "[ \t\n]")
1343 (py-compute-indentation)
1344 0))
1345 ci)
Guido van Rossuma7925f11994-01-26 10:20:16 +00001346 (while (< (point) end)
1347 (setq ci (current-indentation))
1348 ;; figure out appropriate target column
1349 (cond
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001350 ((or (eq (following-char) ?#) ; comment in column 1
1351 (looking-at "[ \t]*$")) ; entirely blank
1352 (setq target-column 0))
1353 ((py-continuation-line-p) ; shift relative to base line
1354 (setq target-column (+ ci base-shifted-by)))
Guido van Rossuma7925f11994-01-26 10:20:16 +00001355 (t ; new base line
1356 (if (> ci (car indents)) ; going deeper; push it
1357 (setq indents (cons ci indents))
1358 ;; else we should have seen this indent before
1359 (setq indents (memq ci indents)) ; pop deeper indents
1360 (if (null indents)
1361 (error "Bad indentation in region, at line %d"
1362 (save-restriction
1363 (widen)
1364 (1+ (count-lines 1 (point)))))))
1365 (setq target-column (+ indent-base
1366 (* py-indent-offset
1367 (- (length indents) 2))))
1368 (setq base-shifted-by (- target-column ci))))
1369 ;; shift as needed
1370 (if (/= ci target-column)
1371 (progn
1372 (delete-horizontal-space)
1373 (indent-to target-column)))
1374 (forward-line 1))))
1375 (set-marker end nil))
1376
Guido van Rossum6ba11201996-08-20 19:57:53 +00001377(defun py-comment-region (beg end &optional arg)
1378 "Like `comment-region' but uses double hash (`#') comment starter."
1379 (interactive "r\nP")
1380 (let ((comment-start py-block-comment-prefix))
1381 (comment-region beg end arg)))
1382
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001383
1384;; Functions for moving point
Guido van Rossuma7925f11994-01-26 10:20:16 +00001385(defun py-previous-statement (count)
1386 "Go to the start of previous Python statement.
1387If the statement at point is the i'th Python statement, goes to the
1388start of statement i-COUNT. If there is no such statement, goes to the
1389first statement. Returns count of statements left to move.
1390`Statements' do not include blank, comment, or continuation lines."
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001391 (interactive "p") ; numeric prefix arg
Guido van Rossuma7925f11994-01-26 10:20:16 +00001392 (if (< count 0) (py-next-statement (- count))
1393 (py-goto-initial-line)
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001394 (let (start)
Guido van Rossuma7925f11994-01-26 10:20:16 +00001395 (while (and
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001396 (setq start (point)) ; always true -- side effect
Guido van Rossuma7925f11994-01-26 10:20:16 +00001397 (> count 0)
1398 (zerop (forward-line -1))
1399 (py-goto-statement-at-or-above))
1400 (setq count (1- count)))
1401 (if (> count 0) (goto-char start)))
1402 count))
1403
1404(defun py-next-statement (count)
1405 "Go to the start of next Python statement.
1406If the statement at point is the i'th Python statement, goes to the
1407start of statement i+COUNT. If there is no such statement, goes to the
1408last statement. Returns count of statements left to move. `Statements'
1409do not include blank, comment, or continuation lines."
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001410 (interactive "p") ; numeric prefix arg
Guido van Rossuma7925f11994-01-26 10:20:16 +00001411 (if (< count 0) (py-previous-statement (- count))
1412 (beginning-of-line)
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001413 (let (start)
Guido van Rossuma7925f11994-01-26 10:20:16 +00001414 (while (and
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001415 (setq start (point)) ; always true -- side effect
Guido van Rossuma7925f11994-01-26 10:20:16 +00001416 (> count 0)
1417 (py-goto-statement-below))
1418 (setq count (1- count)))
1419 (if (> count 0) (goto-char start)))
1420 count))
1421
1422(defun py-goto-block-up (&optional nomark)
1423 "Move up to start of current block.
1424Go to the statement that starts the smallest enclosing block; roughly
1425speaking, this will be the closest preceding statement that ends with a
1426colon and is indented less than the statement you started on. If
1427successful, also sets the mark to the starting point.
1428
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001429`\\[py-mark-block]' can be used afterward to mark the whole code
1430block, if desired.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001431
1432If called from a program, the mark will not be set if optional argument
1433NOMARK is not nil."
1434 (interactive)
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001435 (let ((start (point))
1436 (found nil)
1437 initial-indent)
Guido van Rossuma7925f11994-01-26 10:20:16 +00001438 (py-goto-initial-line)
1439 ;; if on blank or non-indenting comment line, use the preceding stmt
1440 (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
1441 (progn
1442 (py-goto-statement-at-or-above)
1443 (setq found (py-statement-opens-block-p))))
1444 ;; search back for colon line indented less
1445 (setq initial-indent (current-indentation))
1446 (if (zerop initial-indent)
1447 ;; force fast exit
1448 (goto-char (point-min)))
1449 (while (not (or found (bobp)))
1450 (setq found
1451 (and
1452 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1453 (or (py-goto-initial-line) t) ; always true -- side effect
1454 (< (current-indentation) initial-indent)
1455 (py-statement-opens-block-p))))
1456 (if found
1457 (progn
1458 (or nomark (push-mark start))
1459 (back-to-indentation))
1460 (goto-char start)
1461 (error "Enclosing block not found"))))
1462
1463(defun beginning-of-python-def-or-class (&optional class)
1464 "Move point to start of def (or class, with prefix arg).
1465
1466Searches back for the closest preceding `def'. If you supply a prefix
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001467arg, looks for a `class' instead. The docs assume the `def' case;
1468just substitute `class' for `def' for the other case.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001469
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001470If point is in a def statement already, and after the `d', simply
1471moves point to the start of the statement.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001472
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001473Else (point is not in a def statement, or at or before the `d' of a
1474def statement), searches for the closest preceding def statement, and
1475leaves point at its start. If no such statement can be found, leaves
1476point at the start of the buffer.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001477
1478Returns t iff a def statement is found by these rules.
1479
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001480Note that doing this command repeatedly will take you closer to the
1481start of the buffer each time.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001482
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001483If you want to mark the current def/class, see
1484`\\[mark-python-def-or-class]'."
Guido van Rossuma7925f11994-01-26 10:20:16 +00001485 (interactive "P") ; raw prefix arg
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001486 (let ((at-or-before-p (<= (current-column) (current-indentation)))
1487 (start-of-line (progn (beginning-of-line) (point)))
1488 (start-of-stmt (progn (py-goto-initial-line) (point))))
Guido van Rossuma7925f11994-01-26 10:20:16 +00001489 (if (or (/= start-of-stmt start-of-line)
1490 (not at-or-before-p))
1491 (end-of-line)) ; OK to match on this line
1492 (re-search-backward (if class "^[ \t]*class\\>" "^[ \t]*def\\>")
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001493 nil 'move)))
Guido van Rossuma7925f11994-01-26 10:20:16 +00001494
1495(defun end-of-python-def-or-class (&optional class)
1496 "Move point beyond end of def (or class, with prefix arg) body.
1497
1498By default, looks for an appropriate `def'. If you supply a prefix arg,
1499looks for a `class' instead. The docs assume the `def' case; just
1500substitute `class' for `def' for the other case.
1501
1502If point is in a def statement already, this is the def we use.
1503
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001504Else if the def found by `\\[beginning-of-python-def-or-class]'
1505contains the statement you started on, that's the def we use.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001506
1507Else we search forward for the closest following def, and use that.
1508
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001509If a def can be found by these rules, point is moved to the start of
1510the line immediately following the def block, and the position of the
1511start of the def is returned.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001512
1513Else point is moved to the end of the buffer, and nil is returned.
1514
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001515Note that doing this command repeatedly will take you closer to the
1516end of the buffer each time.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001517
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001518If you want to mark the current def/class, see
1519`\\[mark-python-def-or-class]'."
Guido van Rossuma7925f11994-01-26 10:20:16 +00001520 (interactive "P") ; raw prefix arg
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001521 (let ((start (progn (py-goto-initial-line) (point)))
1522 (which (if class "class" "def"))
1523 (state 'not-found))
Guido van Rossuma7925f11994-01-26 10:20:16 +00001524 ;; move point to start of appropriate def/class
1525 (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one
1526 (setq state 'at-beginning)
1527 ;; else see if beginning-of-python-def-or-class hits container
1528 (if (and (beginning-of-python-def-or-class class)
1529 (progn (py-goto-beyond-block)
1530 (> (point) start)))
1531 (setq state 'at-end)
1532 ;; else search forward
1533 (goto-char start)
1534 (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move)
1535 (progn (setq state 'at-beginning)
1536 (beginning-of-line)))))
1537 (cond
1538 ((eq state 'at-beginning) (py-goto-beyond-block) t)
1539 ((eq state 'at-end) t)
1540 ((eq state 'not-found) nil)
1541 (t (error "internal error in end-of-python-def-or-class")))))
1542
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001543
1544;; Functions for marking regions
Guido van Rossuma7925f11994-01-26 10:20:16 +00001545(defun py-mark-block (&optional extend just-move)
1546 "Mark following block of lines. With prefix arg, mark structure.
1547Easier to use than explain. It sets the region to an `interesting'
1548block of succeeding lines. If point is on a blank line, it goes down to
1549the next non-blank line. That will be the start of the region. The end
1550of the region depends on the kind of line at the start:
1551
1552 - If a comment, the region will include all succeeding comment lines up
1553 to (but not including) the next non-comment line (if any).
1554
1555 - Else if a prefix arg is given, and the line begins one of these
1556 structures:
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001557
1558 if elif else try except finally for while def class
1559
Guido van Rossuma7925f11994-01-26 10:20:16 +00001560 the region will be set to the body of the structure, including
1561 following blocks that `belong' to it, but excluding trailing blank
1562 and comment lines. E.g., if on a `try' statement, the `try' block
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001563 and all (if any) of the following `except' and `finally' blocks
1564 that belong to the `try' structure will be in the region. Ditto
1565 for if/elif/else, for/else and while/else structures, and (a bit
1566 degenerate, since they're always one-block structures) def and
1567 class blocks.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001568
1569 - Else if no prefix argument is given, and the line begins a Python
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001570 block (see list above), and the block is not a `one-liner' (i.e.,
1571 the statement ends with a colon, not with code), the region will
1572 include all succeeding lines up to (but not including) the next
1573 code statement (if any) that's indented no more than the starting
1574 line, except that trailing blank and comment lines are excluded.
1575 E.g., if the starting line begins a multi-statement `def'
1576 structure, the region will be set to the full function definition,
1577 but without any trailing `noise' lines.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001578
1579 - Else the region will include all succeeding lines up to (but not
1580 including) the next blank line, or code or indenting-comment line
1581 indented strictly less than the starting line. Trailing indenting
1582 comment lines are included in this case, but not trailing blank
1583 lines.
1584
1585A msg identifying the location of the mark is displayed in the echo
1586area; or do `\\[exchange-point-and-mark]' to flip down to the end.
1587
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001588If called from a program, optional argument EXTEND plays the role of
1589the prefix arg, and if optional argument JUST-MOVE is not nil, just
1590moves to the end of the block (& does not set mark or display a msg)."
Guido van Rossuma7925f11994-01-26 10:20:16 +00001591 (interactive "P") ; raw prefix arg
1592 (py-goto-initial-line)
1593 ;; skip over blank lines
1594 (while (and
1595 (looking-at "[ \t]*$") ; while blank line
1596 (not (eobp))) ; & somewhere to go
1597 (forward-line 1))
1598 (if (eobp)
1599 (error "Hit end of buffer without finding a non-blank stmt"))
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001600 (let ((initial-pos (point))
1601 (initial-indent (current-indentation))
1602 last-pos ; position of last stmt in region
1603 (followers
1604 '((if elif else) (elif elif else) (else)
1605 (try except finally) (except except) (finally)
1606 (for else) (while else)
1607 (def) (class) ) )
1608 first-symbol next-symbol)
Guido van Rossuma7925f11994-01-26 10:20:16 +00001609
1610 (cond
1611 ;; if comment line, suck up the following comment lines
1612 ((looking-at "[ \t]*#")
1613 (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment
1614 (re-search-backward "^[ \t]*#") ; and back to last comment in block
1615 (setq last-pos (point)))
1616
1617 ;; else if line is a block line and EXTEND given, suck up
1618 ;; the whole structure
1619 ((and extend
1620 (setq first-symbol (py-suck-up-first-keyword) )
1621 (assq first-symbol followers))
1622 (while (and
1623 (or (py-goto-beyond-block) t) ; side effect
1624 (forward-line -1) ; side effect
1625 (setq last-pos (point)) ; side effect
1626 (py-goto-statement-below)
1627 (= (current-indentation) initial-indent)
1628 (setq next-symbol (py-suck-up-first-keyword))
1629 (memq next-symbol (cdr (assq first-symbol followers))))
1630 (setq first-symbol next-symbol)))
1631
1632 ;; else if line *opens* a block, search for next stmt indented <=
1633 ((py-statement-opens-block-p)
1634 (while (and
1635 (setq last-pos (point)) ; always true -- side effect
1636 (py-goto-statement-below)
1637 (> (current-indentation) initial-indent))
1638 nil))
1639
1640 ;; else plain code line; stop at next blank line, or stmt or
1641 ;; indenting comment line indented <
1642 (t
1643 (while (and
1644 (setq last-pos (point)) ; always true -- side effect
1645 (or (py-goto-beyond-final-line) t)
1646 (not (looking-at "[ \t]*$")) ; stop at blank line
1647 (or
1648 (>= (current-indentation) initial-indent)
1649 (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting #
1650 nil)))
1651
1652 ;; skip to end of last stmt
1653 (goto-char last-pos)
1654 (py-goto-beyond-final-line)
1655
1656 ;; set mark & display
1657 (if just-move
1658 () ; just return
1659 (push-mark (point) 'no-msg)
1660 (forward-line -1)
1661 (message "Mark set after: %s" (py-suck-up-leading-text))
1662 (goto-char initial-pos))))
1663
1664(defun mark-python-def-or-class (&optional class)
1665 "Set region to body of def (or class, with prefix arg) enclosing point.
1666Pushes the current mark, then point, on the mark ring (all language
1667modes do this, but although it's handy it's never documented ...).
1668
1669In most Emacs language modes, this function bears at least a
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001670hallucinogenic resemblance to `\\[end-of-python-def-or-class]' and
1671`\\[beginning-of-python-def-or-class]'.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001672
1673And in earlier versions of Python mode, all 3 were tightly connected.
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001674Turned out that was more confusing than useful: the `goto start' and
1675`goto end' commands are usually used to search through a file, and
1676people expect them to act a lot like `search backward' and `search
1677forward' string-search commands. But because Python `def' and `class'
1678can nest to arbitrary levels, finding the smallest def containing
1679point cannot be done via a simple backward search: the def containing
1680point may not be the closest preceding def, or even the closest
1681preceding def that's indented less. The fancy algorithm required is
1682appropriate for the usual uses of this `mark' command, but not for the
1683`goto' variations.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001684
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001685So the def marked by this command may not be the one either of the
1686`goto' commands find: If point is on a blank or non-indenting comment
1687line, moves back to start of the closest preceding code statement or
1688indenting comment line. If this is a `def' statement, that's the def
1689we use. Else searches for the smallest enclosing `def' block and uses
1690that. Else signals an error.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001691
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001692When an enclosing def is found: The mark is left immediately beyond
1693the last line of the def block. Point is left at the start of the
1694def, except that: if the def is preceded by a number of comment lines
1695followed by (at most) one optional blank line, point is left at the
1696start of the comments; else if the def is preceded by a blank line,
1697point is left at its start.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001698
1699The intent is to mark the containing def/class and its associated
1700documentation, to make moving and duplicating functions and classes
1701pleasant."
1702 (interactive "P") ; raw prefix arg
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001703 (let ((start (point))
1704 (which (if class "class" "def")))
Guido van Rossuma7925f11994-01-26 10:20:16 +00001705 (push-mark start)
1706 (if (not (py-go-up-tree-to-keyword which))
1707 (progn (goto-char start)
1708 (error "Enclosing %s not found" which))
1709 ;; else enclosing def/class found
1710 (setq start (point))
1711 (py-goto-beyond-block)
1712 (push-mark (point))
1713 (goto-char start)
1714 (if (zerop (forward-line -1)) ; if there is a preceding line
1715 (progn
1716 (if (looking-at "[ \t]*$") ; it's blank
1717 (setq start (point)) ; so reset start point
1718 (goto-char start)) ; else try again
1719 (if (zerop (forward-line -1))
1720 (if (looking-at "[ \t]*#") ; a comment
1721 ;; look back for non-comment line
1722 ;; tricky: note that the regexp matches a blank
1723 ;; line, cuz \n is in the 2nd character class
1724 (and
1725 (re-search-backward "^[ \t]*[^ \t#]" nil 'move)
1726 (forward-line 1))
1727 ;; no comment, so go back
1728 (goto-char start))))))))
1729
Guido van Rossum6ba11201996-08-20 19:57:53 +00001730;; ripped from cc-mode
1731(defun py-forward-into-nomenclature (&optional arg)
1732 "Move forward to end of a nomenclature section or word.
1733With arg, to it arg times.
1734
1735A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
1736 (interactive "p")
1737 (let ((case-fold-search nil))
1738 (if (> arg 0)
1739 (re-search-forward
1740 "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)"
1741 (point-max) t arg)
1742 (while (and (< arg 0)
1743 (re-search-backward
1744 "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+"
1745 (point-min) 0))
1746 (forward-char 1)
1747 (setq arg (1+ arg)))))
1748 (py-keep-region-active))
1749
1750(defun py-backward-into-nomenclature (&optional arg)
1751 "Move backward to beginning of a nomenclature section or word.
1752With optional ARG, move that many times. If ARG is negative, move
1753forward.
1754
1755A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
1756 (interactive "p")
1757 (py-forward-into-nomenclature (- arg))
1758 (py-keep-region-active))
1759
Guido van Rossuma7925f11994-01-26 10:20:16 +00001760
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001761
1762;; Documentation functions
Guido van Rossuma7925f11994-01-26 10:20:16 +00001763
1764;; dump the long form of the mode blurb; does the usual doc escapes,
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001765;; plus lines of the form ^[vc]:name$ to suck variable & command docs
1766;; out of the right places, along with the keys they're on & current
1767;; values
Guido van Rossuma7925f11994-01-26 10:20:16 +00001768(defun py-dump-help-string (str)
1769 (with-output-to-temp-buffer "*Help*"
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001770 (let ((locals (buffer-local-variables))
1771 funckind funcname func funcdoc
1772 (start 0) mstart end
1773 keys )
Guido van Rossuma7925f11994-01-26 10:20:16 +00001774 (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start)
1775 (setq mstart (match-beginning 0) end (match-end 0)
1776 funckind (substring str (match-beginning 1) (match-end 1))
1777 funcname (substring str (match-beginning 2) (match-end 2))
1778 func (intern funcname))
1779 (princ (substitute-command-keys (substring str start mstart)))
1780 (cond
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001781 ((equal funckind "c") ; command
1782 (setq funcdoc (documentation func)
1783 keys (concat
1784 "Key(s): "
1785 (mapconcat 'key-description
1786 (where-is-internal func py-mode-map)
1787 ", "))))
1788 ((equal funckind "v") ; variable
1789 (setq funcdoc (substitute-command-keys
1790 (get func 'variable-documentation))
1791 keys (if (assq func locals)
1792 (concat
1793 "Local/Global values: "
1794 (prin1-to-string (symbol-value func))
1795 " / "
1796 (prin1-to-string (default-value func)))
1797 (concat
1798 "Value: "
1799 (prin1-to-string (symbol-value func))))))
1800 (t ; unexpected
1801 (error "Error in py-dump-help-string, tag `%s'" funckind)))
Guido van Rossuma7925f11994-01-26 10:20:16 +00001802 (princ (format "\n-> %s:\t%s\t%s\n\n"
1803 (if (equal funckind "c") "Command" "Variable")
1804 funcname keys))
1805 (princ funcdoc)
1806 (terpri)
1807 (setq start end))
1808 (princ (substitute-command-keys (substring str start))))
1809 (print-help-return-message)))
1810
1811(defun py-describe-mode ()
1812 "Dump long form of Python-mode docs."
1813 (interactive)
1814 (py-dump-help-string "Major mode for editing Python files.
1815Knows about Python indentation, tokens, comments and continuation lines.
1816Paragraphs are separated by blank lines only.
1817
1818Major sections below begin with the string `@'; specific function and
1819variable docs begin with `->'.
1820
1821@EXECUTING PYTHON CODE
1822
1823\\[py-execute-buffer]\tsends the entire buffer to the Python interpreter
1824\\[py-execute-region]\tsends the current region
1825\\[py-shell]\tstarts a Python interpreter window; this will be used by
1826\tsubsequent \\[py-execute-buffer] or \\[py-execute-region] commands
1827%c:py-execute-buffer
1828%c:py-execute-region
1829%c:py-shell
1830
1831@VARIABLES
1832
1833py-indent-offset\tindentation increment
Guido van Rossum6ba11201996-08-20 19:57:53 +00001834py-block-comment-prefix\tcomment string used by comment-region
Guido van Rossuma7925f11994-01-26 10:20:16 +00001835
1836py-python-command\tshell command to invoke Python interpreter
1837py-scroll-process-buffer\talways scroll Python process buffer
1838py-temp-directory\tdirectory used for temp files (if needed)
1839
1840py-beep-if-tab-change\tring the bell if tab-width is changed
1841%v:py-indent-offset
Guido van Rossuma7925f11994-01-26 10:20:16 +00001842%v:py-block-comment-prefix
1843%v:py-python-command
1844%v:py-scroll-process-buffer
1845%v:py-temp-directory
1846%v:py-beep-if-tab-change
1847
1848@KINDS OF LINES
1849
1850Each physical line in the file is either a `continuation line' (the
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001851preceding line ends with a backslash that's not part of a comment, or
1852the paren/bracket/brace nesting level at the start of the line is
1853non-zero, or both) or an `initial line' (everything else).
Guido van Rossuma7925f11994-01-26 10:20:16 +00001854
1855An initial line is in turn a `blank line' (contains nothing except
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001856possibly blanks or tabs), a `comment line' (leftmost non-blank
1857character is `#'), or a `code line' (everything else).
Guido van Rossuma7925f11994-01-26 10:20:16 +00001858
1859Comment Lines
1860
1861Although all comment lines are treated alike by Python, Python mode
1862recognizes two kinds that act differently with respect to indentation.
1863
1864An `indenting comment line' is a comment line with a blank, tab or
1865nothing after the initial `#'. The indentation commands (see below)
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001866treat these exactly as if they were code lines: a line following an
Guido van Rossuma7925f11994-01-26 10:20:16 +00001867indenting comment line will be indented like the comment line. All
1868other comment lines (those with a non-whitespace character immediately
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001869following the initial `#') are `non-indenting comment lines', and
1870their indentation is ignored by the indentation commands.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001871
1872Indenting comment lines are by far the usual case, and should be used
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001873whenever possible. Non-indenting comment lines are useful in cases
1874like these:
Guido van Rossuma7925f11994-01-26 10:20:16 +00001875
1876\ta = b # a very wordy single-line comment that ends up being
1877\t #... continued onto another line
1878
1879\tif a == b:
1880##\t\tprint 'panic!' # old code we've `commented out'
1881\t\treturn a
1882
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001883Since the `#...' and `##' comment lines have a non-whitespace
1884character following the initial `#', Python mode ignores them when
1885computing the proper indentation for the next line.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001886
1887Continuation Lines and Statements
1888
1889The Python-mode commands generally work on statements instead of on
1890individual lines, where a `statement' is a comment or blank line, or a
1891code line and all of its following continuation lines (if any)
1892considered as a single logical unit. The commands in this mode
1893generally (when it makes sense) automatically move to the start of the
Guido van Rossumdeaa1051995-03-10 16:17:03 +00001894statement containing point, even if point happens to be in the middle
1895of some continuation line.
Guido van Rossuma7925f11994-01-26 10:20:16 +00001896
Guido van Rossuma7925f11994-01-26 10:20:16 +00001897
1898@INDENTATION
1899
1900Primarily for entering new code:
1901\t\\[indent-for-tab-command]\t indent line appropriately
1902\t\\[py-newline-and-indent]\t insert newline, then indent
1903\t\\[py-delete-char]\t reduce indentation, or delete single character
1904
1905Primarily for reindenting existing code:
1906\t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally
1907\t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally
1908
1909\t\\[py-indent-region]\t reindent region to match its context
1910\t\\[py-shift-region-left]\t shift region left by py-indent-offset
1911\t\\[py-shift-region-right]\t shift region right by py-indent-offset
1912
1913Unlike most programming languages, Python uses indentation, and only
1914indentation, to specify block structure. Hence the indentation supplied
1915automatically by Python-mode is just an educated guess: only you know
1916the block structure you intend, so only you can supply correct
1917indentation.
1918
1919The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on
1920the indentation of preceding statements. E.g., assuming
1921py-indent-offset is 4, after you enter
1922\tif a > 0: \\[py-newline-and-indent]
1923the cursor will be moved to the position of the `_' (_ is not a
1924character in the file, it's just used here to indicate the location of
1925the cursor):
1926\tif a > 0:
1927\t _
1928If you then enter `c = d' \\[py-newline-and-indent], the cursor will move
1929to
1930\tif a > 0:
1931\t c = d
1932\t _
1933Python-mode cannot know whether that's what you intended, or whether
1934\tif a > 0:
1935\t c = d
1936\t_
1937was your intent. In general, Python-mode either reproduces the
1938indentation of the (closest code or indenting-comment) preceding
1939statement, or adds an extra py-indent-offset blanks if the preceding
1940statement has `:' as its last significant (non-whitespace and non-
1941comment) character. If the suggested indentation is too much, use
1942\\[py-delete-char] to reduce it.
1943
Guido van Rossum0ec5c5d1994-04-25 08:12:43 +00001944Continuation lines are given extra indentation. If you don't like the
1945suggested indentation, change it to something you do like, and Python-
1946mode will strive to indent later lines of the statement in the same way.
1947
1948If a line is a continuation line by virtue of being in an unclosed
1949paren/bracket/brace structure (`list', for short), the suggested
Guido van Rossum9274e2d1994-04-26 07:35:17 +00001950indentation depends on whether the current line contains the first item
1951in the list. If it does, it's indented py-indent-offset columns beyond
1952the indentation of the line containing the open bracket. If you don't
1953like that, change it by hand. The remaining items in the list will mimic
1954whatever indentation you give to the first item.
Guido van Rossume531e4b1994-04-16 08:29:27 +00001955
1956If a line is a continuation line because the line preceding it ends with
Guido van Rossum0ec5c5d1994-04-25 08:12:43 +00001957a backslash, the third and following lines of the statement inherit their
1958indentation from the line preceding them. The indentation of the second
1959line in the statement depends on the form of the first (base) line: if
1960the base line is an assignment statement with anything more interesting
1961than the backslash following the leftmost assigning `=', the second line
1962is indented two columns beyond that `='. Else it's indented to two
1963columns beyond the leftmost solid chunk of non-whitespace characters on
1964the base line.
Guido van Rossume531e4b1994-04-16 08:29:27 +00001965
Guido van Rossuma7925f11994-01-26 10:20:16 +00001966Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command]
1967repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block
1968structure you intend.
1969%c:indent-for-tab-command
1970%c:py-newline-and-indent
1971%c:py-delete-char
1972
1973
1974The next function may be handy when editing code you didn't write:
1975%c:py-guess-indent-offset
1976
1977
1978The remaining `indent' functions apply to a region of Python code. They
1979assume the block structure (equals indentation, in Python) of the region
1980is correct, and alter the indentation in various ways while preserving
1981the block structure:
1982%c:py-indent-region
1983%c:py-shift-region-left
1984%c:py-shift-region-right
1985
1986@MARKING & MANIPULATING REGIONS OF CODE
1987
1988\\[py-mark-block]\t mark block of lines
1989\\[mark-python-def-or-class]\t mark smallest enclosing def
1990\\[universal-argument] \\[mark-python-def-or-class]\t mark smallest enclosing class
Guido van Rossum6ba11201996-08-20 19:57:53 +00001991\\[comment-region]\t comment out region of code
1992\\[universal-argument] \\[comment-region]\t uncomment region of code
Guido van Rossuma7925f11994-01-26 10:20:16 +00001993%c:py-mark-block
1994%c:mark-python-def-or-class
Guido van Rossum6ba11201996-08-20 19:57:53 +00001995%c:comment-region
Guido van Rossuma7925f11994-01-26 10:20:16 +00001996
1997@MOVING POINT
1998
1999\\[py-previous-statement]\t move to statement preceding point
2000\\[py-next-statement]\t move to statement following point
2001\\[py-goto-block-up]\t move up to start of current block
2002\\[beginning-of-python-def-or-class]\t move to start of def
2003\\[universal-argument] \\[beginning-of-python-def-or-class]\t move to start of class
2004\\[end-of-python-def-or-class]\t move to end of def
2005\\[universal-argument] \\[end-of-python-def-or-class]\t move to end of class
2006
2007The first two move to one statement beyond the statement that contains
2008point. A numeric prefix argument tells them to move that many
2009statements instead. Blank lines, comment lines, and continuation lines
2010do not count as `statements' for these commands. So, e.g., you can go
2011to the first code statement in a file by entering
2012\t\\[beginning-of-buffer]\t to move to the top of the file
2013\t\\[py-next-statement]\t to skip over initial comments and blank lines
2014Or do `\\[py-previous-statement]' with a huge prefix argument.
2015%c:py-previous-statement
2016%c:py-next-statement
2017%c:py-goto-block-up
2018%c:beginning-of-python-def-or-class
2019%c:end-of-python-def-or-class
2020
2021@LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE
2022
2023`\\[indent-new-comment-line]' is handy for entering a multi-line comment.
2024
2025`\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the
2026overall class and def structure of a module.
2027
2028`\\[back-to-indentation]' moves point to a line's first non-blank character.
2029
2030`\\[indent-relative]' is handy for creating odd indentation.
2031
2032@OTHER EMACS HINTS
2033
2034If you don't like the default value of a variable, change its value to
2035whatever you do like by putting a `setq' line in your .emacs file.
2036E.g., to set the indentation increment to 4, put this line in your
2037.emacs:
2038\t(setq py-indent-offset 4)
2039To see the value of a variable, do `\\[describe-variable]' and enter the variable
2040name at the prompt.
2041
2042When entering a key sequence like `C-c C-n', it is not necessary to
2043release the CONTROL key after doing the `C-c' part -- it suffices to
2044press the CONTROL key, press and release `c' (while still holding down
2045CONTROL), press and release `n' (while still holding down CONTROL), &
2046then release CONTROL.
2047
2048Entering Python mode calls with no arguments the value of the variable
Guido van Rossuma67bb7e1994-11-10 23:01:59 +00002049`python-mode-hook', if that value exists and is not nil; for backward
2050compatibility it also tries `py-mode-hook'; see the `Hooks' section of
2051the Elisp manual for details.
Guido van Rossuma7925f11994-01-26 10:20:16 +00002052
2053Obscure: When python-mode is first loaded, it looks for all bindings
2054to newline-and-indent in the global keymap, and shadows them with
2055local bindings to py-newline-and-indent."))
2056
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002057
2058;; Helper functions
Guido van Rossuma7925f11994-01-26 10:20:16 +00002059(defvar py-parse-state-re
2060 (concat
2061 "^[ \t]*\\(if\\|elif\\|else\\|while\\|def\\|class\\)\\>"
2062 "\\|"
2063 "^[^ #\t\n]"))
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002064
Guido van Rossuma7925f11994-01-26 10:20:16 +00002065;; returns the parse state at point (see parse-partial-sexp docs)
2066(defun py-parse-state ()
2067 (save-excursion
Guido van Rossum6ba11201996-08-20 19:57:53 +00002068 (let ((here (point))
2069 pps done ci)
2070 (while (not done)
2071 ;; back up to the first preceding line (if any; else start of
2072 ;; buffer) that begins with a popular Python keyword, or a
2073 ;; non- whitespace and non-comment character. These are good
2074 ;; places to start parsing to see whether where we started is
2075 ;; at a non-zero nesting level. It may be slow for people who
2076 ;; write huge code blocks or huge lists ... tough beans.
2077 (re-search-backward py-parse-state-re nil 'move)
2078 (setq ci (current-indentation))
2079 (beginning-of-line)
2080 (save-excursion
2081 (setq pps (parse-partial-sexp (point) here)))
2082 ;; make sure we don't land inside a triple-quoted string
2083 (setq done (or (zerop ci)
2084 (not (nth 3 pps))
2085 (bobp)))
2086 )
2087 pps)))
Guido van Rossuma7925f11994-01-26 10:20:16 +00002088
2089;; if point is at a non-zero nesting level, returns the number of the
2090;; character that opens the smallest enclosing unclosed list; else
2091;; returns nil.
2092(defun py-nesting-level ()
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002093 (let ((status (py-parse-state)) )
Guido van Rossuma7925f11994-01-26 10:20:16 +00002094 (if (zerop (car status))
2095 nil ; not in a nest
2096 (car (cdr status))))) ; char# of open bracket
2097
2098;; t iff preceding line ends with backslash that's not in a comment
2099(defun py-backslash-continuation-line-p ()
2100 (save-excursion
2101 (beginning-of-line)
2102 (and
2103 ;; use a cheap test first to avoid the regexp if possible
2104 ;; use 'eq' because char-after may return nil
2105 (eq (char-after (- (point) 2)) ?\\ )
2106 ;; make sure; since eq test passed, there is a preceding line
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002107 (forward-line -1) ; always true -- side effect
Guido van Rossuma7925f11994-01-26 10:20:16 +00002108 (looking-at py-continued-re))))
2109
2110;; t iff current line is a continuation line
2111(defun py-continuation-line-p ()
2112 (save-excursion
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002113 (beginning-of-line)
Guido van Rossuma7925f11994-01-26 10:20:16 +00002114 (or (py-backslash-continuation-line-p)
2115 (py-nesting-level))))
2116
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002117;; go to initial line of current statement; usually this is the line
2118;; we're on, but if we're on the 2nd or following lines of a
2119;; continuation block, we need to go up to the first line of the
2120;; block.
Guido van Rossuma7925f11994-01-26 10:20:16 +00002121;;
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002122;; Tricky: We want to avoid quadratic-time behavior for long continued
2123;; blocks, whether of the backslash or open-bracket varieties, or a
2124;; mix of the two. The following manages to do that in the usual
2125;; cases.
Guido van Rossuma7925f11994-01-26 10:20:16 +00002126(defun py-goto-initial-line ()
2127 (let ( open-bracket-pos )
2128 (while (py-continuation-line-p)
2129 (beginning-of-line)
2130 (if (py-backslash-continuation-line-p)
2131 (while (py-backslash-continuation-line-p)
2132 (forward-line -1))
2133 ;; else zip out of nested brackets/braces/parens
2134 (while (setq open-bracket-pos (py-nesting-level))
2135 (goto-char open-bracket-pos)))))
2136 (beginning-of-line))
2137
2138;; go to point right beyond final line of current statement; usually
2139;; this is the start of the next line, but if this is a multi-line
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002140;; statement we need to skip over the continuation lines. Tricky:
2141;; Again we need to be clever to avoid quadratic time behavior.
Guido van Rossuma7925f11994-01-26 10:20:16 +00002142(defun py-goto-beyond-final-line ()
2143 (forward-line 1)
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002144 (let (state)
Guido van Rossuma7925f11994-01-26 10:20:16 +00002145 (while (and (py-continuation-line-p)
2146 (not (eobp)))
2147 ;; skip over the backslash flavor
2148 (while (and (py-backslash-continuation-line-p)
2149 (not (eobp)))
2150 (forward-line 1))
2151 ;; if in nest, zip to the end of the nest
2152 (setq state (py-parse-state))
2153 (if (and (not (zerop (car state)))
2154 (not (eobp)))
2155 (progn
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002156 ;; BUG ALERT: I could swear, from reading the docs, that
Guido van Rossuma7925f11994-01-26 10:20:16 +00002157 ;; the 3rd argument should be plain 0
2158 (parse-partial-sexp (point) (point-max) (- 0 (car state))
2159 nil state)
2160 (forward-line 1))))))
2161
2162;; t iff statement opens a block == iff it ends with a colon that's
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002163;; not in a comment. point should be at the start of a statement
Guido van Rossuma7925f11994-01-26 10:20:16 +00002164(defun py-statement-opens-block-p ()
2165 (save-excursion
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002166 (let ((start (point))
2167 (finish (progn (py-goto-beyond-final-line) (1- (point))))
2168 (searching t)
2169 (answer nil)
2170 state)
Guido van Rossuma7925f11994-01-26 10:20:16 +00002171 (goto-char start)
2172 (while searching
2173 ;; look for a colon with nothing after it except whitespace, and
2174 ;; maybe a comment
2175 (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$"
2176 finish t)
2177 (if (eq (point) finish) ; note: no `else' clause; just
2178 ; keep searching if we're not at
2179 ; the end yet
2180 ;; sure looks like it opens a block -- but it might
2181 ;; be in a comment
2182 (progn
2183 (setq searching nil) ; search is done either way
2184 (setq state (parse-partial-sexp start
2185 (match-beginning 0)))
2186 (setq answer (not (nth 4 state)))))
2187 ;; search failed: couldn't find another interesting colon
2188 (setq searching nil)))
2189 answer)))
2190
Guido van Rossum6ba11201996-08-20 19:57:53 +00002191(defun py-statement-closes-block-p ()
2192 ;; true iff the current statement `closes' a block == the line
2193 ;; starts with `return', `raise', `break' or `continue'. doesn't
2194 ;; catch embedded statements
2195 (let ((here (point)))
2196 (back-to-indentation)
2197 (prog1
2198 (looking-at "\\(return\\|raise\\|break\\|continue\\)\\>")
2199 (goto-char here))))
2200
Guido van Rossuma7925f11994-01-26 10:20:16 +00002201;; go to point right beyond final line of block begun by the current
2202;; line. This is the same as where py-goto-beyond-final-line goes
2203;; unless we're on colon line, in which case we go to the end of the
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002204;; block. assumes point is at bolp
Guido van Rossuma7925f11994-01-26 10:20:16 +00002205(defun py-goto-beyond-block ()
2206 (if (py-statement-opens-block-p)
2207 (py-mark-block nil 'just-move)
2208 (py-goto-beyond-final-line)))
2209
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002210;; go to start of first statement (not blank or comment or
2211;; continuation line) at or preceding point. returns t if there is
2212;; one, else nil
Guido van Rossuma7925f11994-01-26 10:20:16 +00002213(defun py-goto-statement-at-or-above ()
2214 (py-goto-initial-line)
2215 (if (looking-at py-blank-or-comment-re)
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002216 ;; skip back over blank & comment lines
2217 ;; note: will skip a blank or comment line that happens to be
2218 ;; a continuation line too
2219 (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t)
2220 (progn (py-goto-initial-line) t)
2221 nil)
Guido van Rossuma7925f11994-01-26 10:20:16 +00002222 t))
2223
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002224;; go to start of first statement (not blank or comment or
2225;; continuation line) following the statement containing point returns
2226;; t if there is one, else nil
Guido van Rossuma7925f11994-01-26 10:20:16 +00002227(defun py-goto-statement-below ()
2228 (beginning-of-line)
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002229 (let ((start (point)))
Guido van Rossuma7925f11994-01-26 10:20:16 +00002230 (py-goto-beyond-final-line)
2231 (while (and
2232 (looking-at py-blank-or-comment-re)
2233 (not (eobp)))
2234 (forward-line 1))
2235 (if (eobp)
2236 (progn (goto-char start) nil)
2237 t)))
2238
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002239;; go to start of statement, at or preceding point, starting with
2240;; keyword KEY. Skips blank lines and non-indenting comments upward
2241;; first. If that statement starts with KEY, done, else go back to
2242;; first enclosing block starting with KEY. If successful, leaves
2243;; point at the start of the KEY line & returns t. Else leaves point
2244;; at an undefined place & returns nil.
Guido van Rossuma7925f11994-01-26 10:20:16 +00002245(defun py-go-up-tree-to-keyword (key)
2246 ;; skip blanks and non-indenting #
2247 (py-goto-initial-line)
2248 (while (and
2249 (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2250 (zerop (forward-line -1))) ; go back
2251 nil)
2252 (py-goto-initial-line)
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002253 (let* ((re (concat "[ \t]*" key "\\b"))
2254 (case-fold-search nil) ; let* so looking-at sees this
2255 (found (looking-at re))
2256 (dead nil))
Guido van Rossuma7925f11994-01-26 10:20:16 +00002257 (while (not (or found dead))
2258 (condition-case nil ; in case no enclosing block
2259 (py-goto-block-up 'no-mark)
2260 (error (setq dead t)))
2261 (or dead (setq found (looking-at re))))
2262 (beginning-of-line)
2263 found))
2264
2265;; return string in buffer from start of indentation to end of line;
2266;; prefix "..." if leading whitespace was skipped
2267(defun py-suck-up-leading-text ()
2268 (save-excursion
2269 (back-to-indentation)
2270 (concat
2271 (if (bolp) "" "...")
2272 (buffer-substring (point) (progn (end-of-line) (point))))))
2273
2274;; assuming point at bolp, return first keyword ([a-z]+) on the line,
2275;; as a Lisp symbol; return nil if none
2276(defun py-suck-up-first-keyword ()
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002277 (let ((case-fold-search nil))
Guido van Rossuma7925f11994-01-26 10:20:16 +00002278 (if (looking-at "[ \t]*\\([a-z]+\\)\\b")
2279 (intern (buffer-substring (match-beginning 1) (match-end 1)))
2280 nil)))
2281
2282(defun py-make-temp-name ()
2283 (make-temp-name
2284 (concat (file-name-as-directory py-temp-directory) "python")))
2285
2286(defun py-delete-file-silently (fname)
2287 (condition-case nil
2288 (delete-file fname)
2289 (error nil)))
2290
2291(defun py-kill-emacs-hook ()
2292 ;; delete our temp files
2293 (while py-file-queue
2294 (py-delete-file-silently (car py-file-queue))
2295 (setq py-file-queue (cdr py-file-queue)))
Guido van Rossum581d1721994-04-28 08:31:52 +00002296 (if (not (or py-this-is-lucid-emacs-p py-this-is-emacs-19-p))
Guido van Rossuma7925f11994-01-26 10:20:16 +00002297 ;; run the hook we inherited, if any
2298 (and py-inherited-kill-emacs-hook
2299 (funcall py-inherited-kill-emacs-hook))))
2300
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002301;; make PROCESS's buffer visible, append STRING to it, and force
2302;; display; also make shell-mode believe the user typed this string,
2303;; so that kill-output-from-shell and show-output-from-shell work
2304;; "right"
Guido van Rossuma7925f11994-01-26 10:20:16 +00002305(defun py-append-to-process-buffer (process string)
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002306 (let ((cbuf (current-buffer))
2307 (pbuf (process-buffer process))
2308 (py-scroll-process-buffer t))
Guido van Rossuma7925f11994-01-26 10:20:16 +00002309 (set-buffer pbuf)
2310 (goto-char (point-max))
2311 (move-marker (process-mark process) (point))
Guido van Rossumd4901c81995-08-28 03:12:57 +00002312 (if (not (or py-this-is-emacs-19-p
2313 py-this-is-lucid-emacs-p))
Guido van Rossuma7925f11994-01-26 10:20:16 +00002314 (move-marker last-input-start (point))) ; muck w/ shell-mode
2315 (funcall (process-filter process) process string)
Guido van Rossumd4901c81995-08-28 03:12:57 +00002316 (if (not (or py-this-is-emacs-19-p
2317 py-this-is-lucid-emacs-p))
Guido van Rossuma7925f11994-01-26 10:20:16 +00002318 (move-marker last-input-end (point))) ; muck w/ shell-mode
2319 (set-buffer cbuf))
2320 (sit-for 0))
2321
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002322
2323
Guido van Rossum6ba11201996-08-20 19:57:53 +00002324(defconst py-version "2.72"
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002325 "`python-mode' version number.")
Guido van Rossumd4901c81995-08-28 03:12:57 +00002326(defconst py-help-address "python-mode@python.org"
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002327 "Address accepting submission of bug reports.")
2328
2329(defun py-version ()
2330 "Echo the current version of `python-mode' in the minibuffer."
2331 (interactive)
2332 (message "Using `python-mode' version %s" py-version)
2333 (py-keep-region-active))
2334
2335;; only works under Emacs 19
2336;(eval-when-compile
2337; (require 'reporter))
2338
2339(defun py-submit-bug-report (enhancement-p)
2340 "Submit via mail a bug report on `python-mode'.
2341With \\[universal-argument] just submit an enhancement request."
2342 (interactive
2343 (list (not (y-or-n-p
2344 "Is this a bug report? (hit `n' to send other comments) "))))
Guido van Rossum1d5645d1995-03-14 21:31:47 +00002345 (let ((reporter-prompt-for-summary-p (if enhancement-p
2346 "(Very) brief summary: "
2347 t)))
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002348 (require 'reporter)
2349 (reporter-submit-bug-report
2350 py-help-address ;address
Guido van Rossum1d5645d1995-03-14 21:31:47 +00002351 (concat "python-mode " py-version) ;pkgname
Guido van Rossumdeaa1051995-03-10 16:17:03 +00002352 ;; varlist
2353 (if enhancement-p nil
2354 '(py-python-command
2355 py-indent-offset
2356 py-block-comment-prefix
2357 py-scroll-process-buffer
2358 py-temp-directory
2359 py-beep-if-tab-change))
2360 nil ;pre-hooks
2361 nil ;post-hooks
2362 "Dear Barry,") ;salutation
2363 (if enhancement-p nil
2364 (set-mark (point))
2365 (insert
2366"Please replace this text with a sufficiently large code sample\n\
2367and an exact recipe so that I can reproduce your problem. Failure\n\
2368to do so may mean a greater delay in fixing your bug.\n\n")
2369 (exchange-point-and-mark)
2370 (py-keep-region-active))))
2371
2372
2373;; arrange to kill temp files when Emacs exists
2374(if (or py-this-is-emacs-19-p py-this-is-lucid-emacs-p)
2375 (add-hook 'kill-emacs-hook 'py-kill-emacs-hook)
2376 ;; have to trust that other people are as respectful of our hook
2377 ;; fiddling as we are of theirs
2378 (if (boundp 'py-inherited-kill-emacs-hook)
2379 ;; we were loaded before -- trust others not to have screwed us
2380 ;; in the meantime (no choice, really)
2381 nil
2382 ;; else arrange for our hook to run theirs
2383 (setq py-inherited-kill-emacs-hook kill-emacs-hook)
2384 (setq kill-emacs-hook 'py-kill-emacs-hook)))
2385
2386
2387
2388(provide 'python-mode)
2389;;; python-mode.el ends here