blob: ebecc3cd7a097a3830e67d9f666b7c505dcf8c08 [file] [log] [blame]
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001;;; python-mode.el --- Major mode for editing Python programs
2
3;; Copyright (C) 1992,1993,1994 Tim Peters
4
Barry Warsaw2ccda501997-01-30 19:50:39 +00005;; Author: 1995-1997 Barry A. Warsaw
Barry Warsawfec75d61995-07-05 23:26:15 +00006;; 1992-1994 Tim Peters
Barry Warsawa97a3f31997-11-04 18:47:06 +00007;; Maintainer: python-mode@python.org
8;; Created: Feb 1992
9;; Keywords: python languages oop
Barry Warsaw7b0f5681995-03-08 21:33:04 +000010
Barry Warsaw5e21cb01997-11-05 18:41:11 +000011(defconst py-version "$Revision$"
Barry Warsawc72c11c1997-08-09 06:42:08 +000012 "`python-mode' version number.")
13
Barry Warsawcfec3591995-03-10 15:58:16 +000014;; This software is provided as-is, without express or implied
15;; warranty. Permission to use, copy, modify, distribute or sell this
16;; software, without fee, for any purpose and by any individual or
17;; organization, is hereby granted, provided that the above copyright
18;; notice and this paragraph appear in all copies.
Barry Warsaw7b0f5681995-03-08 21:33:04 +000019
20;;; Commentary:
Barry Warsaw755c6711996-08-01 20:02:55 +000021
Barry Warsaw7b0f5681995-03-08 21:33:04 +000022;; This is a major mode for editing Python programs. It was developed
Barry Warsaw261f87d1996-08-20 19:57:34 +000023;; by Tim Peters after an original idea by Michael A. Guravage. Tim
24;; subsequently left the net; in 1995, Barry Warsaw inherited the
25;; mode and is the current maintainer.
Barry Warsaw7b0f5681995-03-08 21:33:04 +000026
Barry Warsawaffc0ca1997-11-03 16:59:38 +000027;; Note: this version of python-mode.el is no longer compatible with
28;; Emacs 18. For a gabazillion reasons, I highly recommend upgrading
29;; to X/Emacs 19 or X/Emacs 20. For older versions of the 19 series,
Barry Warsawa0ee8cd1997-11-26 01:04:44 +000030;; you may need to acquire the Custom library. Please see
31;; <http://www.python.org/ftp/emacs/> for details.
Barry Warsaw7b0f5681995-03-08 21:33:04 +000032
Barry Warsawaffc0ca1997-11-03 16:59:38 +000033;; python-mode.el is currently distributed with XEmacs 19 and XEmacs
34;; 20. Since this file is not GPL'd it is not distributed with Emacs,
Barry Warsawa97a3f31997-11-04 18:47:06 +000035;; but it is compatible with 19.34 and the current 20 series Emacsen.
36;; By default, in XEmacs when you visit a .py file, it is put in
37;; Python mode. In Emacs, you need to add the following to your
38;; .emacs file (you don't need this for XEmacs):
Barry Warsaw7ae77681994-12-12 20:38:05 +000039;;
Barry Warsawaffc0ca1997-11-03 16:59:38 +000040;; (autoload 'python-mode "python-mode" "Python editing mode." t)
41;; (setq auto-mode-alist
42;; (cons '("\\.py$" . python-mode) auto-mode-alist))
43;; (setq interpreter-mode-alist
44;; (cons '("python" . python-mode) interpreter-mode-alist))
Barry Warsaw44b72201996-07-05 20:11:35 +000045;;
Barry Warsawaffc0ca1997-11-03 16:59:38 +000046;; Assuming python-mode.el is on your load-path, it will be invoked
47;; when you visit a .py file, or a file with a first line that looks
48;; like:
49;;
50;; #! /usr/bin/env python
51
Barry Warsaw44b72201996-07-05 20:11:35 +000052;; If you want font-lock support for Python source code (a.k.a. syntax
53;; coloring, highlighting), add this to your .emacs file:
54;;
55;; (add-hook 'python-mode-hook 'turn-on-font-lock)
Barry Warsawc08a9491996-07-31 22:27:58 +000056;;
Barry Warsawaffc0ca1997-11-03 16:59:38 +000057;; Again, this should not be necessary for XEmacs, since it Just Works.
Barry Warsaw7ae77681994-12-12 20:38:05 +000058
Barry Warsawaffc0ca1997-11-03 16:59:38 +000059;; To submit bug reports, use C-c C-b. Please include a complete, but
60;; concise code sample and a recipe for reproducing the bug. Send
61;; suggestions and other comments to python-mode@python.org.
62
63;; When in a Python mode buffer, do a C-h m for more help. It's
64;; doubtful that a texinfo manual would be very useful.
Barry Warsawb5e0ecb1995-03-14 18:32:54 +000065
Barry Warsaw7b0f5681995-03-08 21:33:04 +000066;; Here's a brief to do list:
67;;
Barry Warsawb5e0ecb1995-03-14 18:32:54 +000068;; - Better integration with gud-mode for debugging.
69;; - Rewrite according to GNU Emacs Lisp standards.
Barry Warsaw5c0d00f1996-07-31 21:30:21 +000070;; - possibly force indent-tabs-mode == nil, and add a
71;; write-file-hooks that runs untabify on the whole buffer (to work
72;; around potential tab/space mismatch problems). In practice this
73;; hasn't been a problem... yet.
Barry Warsaw9e277db1996-07-31 22:33:40 +000074;; - have py-execute-region on indented code act as if the region is
75;; left justified. Avoids syntax errors.
Barry Warsaw01af4011996-09-04 14:57:22 +000076;; - Add a py-goto-error or some such that would scan an exception in
77;; the py-shell buffer, and pop you to that line in the file.
Barry Warsaw7ae77681994-12-12 20:38:05 +000078
Barry Warsaw7b0f5681995-03-08 21:33:04 +000079;;; Code:
80
Barry Warsawc72c11c1997-08-09 06:42:08 +000081(require 'custom)
82
Barry Warsaw7b0f5681995-03-08 21:33:04 +000083
84;; user definable variables
85;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
Barry Warsaw7ae77681994-12-12 20:38:05 +000086
Barry Warsawc72c11c1997-08-09 06:42:08 +000087(defgroup python nil
88 "Support for the Python programming language, <http://www.python.org/>"
89 :group 'languages)
Barry Warsaw7ae77681994-12-12 20:38:05 +000090
Barry Warsawc72c11c1997-08-09 06:42:08 +000091(defcustom py-python-command "python"
92 "*Shell command used to start Python interpreter."
93 :type 'string
94 :group 'python)
95
96(defcustom py-indent-offset 4
97 "*Amount of offset per level of indentation
Barry Warsaw7b0f5681995-03-08 21:33:04 +000098Note that `\\[py-guess-indent-offset]' can usually guess a good value
Barry Warsawc72c11c1997-08-09 06:42:08 +000099when you're editing someone else's Python code."
100 :type 'integer
101 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000102
Barry Warsawc72c11c1997-08-09 06:42:08 +0000103(defcustom py-align-multiline-strings-p t
104 "*Flag describing how multi-line triple quoted strings are aligned.
Barry Warsaw095e9c61995-09-19 20:01:42 +0000105When this flag is non-nil, continuation lines are lined up under the
106preceding line's indentation. When this flag is nil, continuation
Barry Warsawc72c11c1997-08-09 06:42:08 +0000107lines are aligned to column zero."
108 :type '(choice (const :tag "Align under preceding line" t)
109 (const :tag "Align to column zero" nil))
110 :group 'python)
Barry Warsaw095e9c61995-09-19 20:01:42 +0000111
Barry Warsawc72c11c1997-08-09 06:42:08 +0000112(defcustom py-block-comment-prefix "## "
Barry Warsaw867a32a1996-03-07 18:30:26 +0000113 "*String used by \\[comment-region] to comment out a block of code.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000114This should follow the convention for non-indenting comment lines so
115that the indentation commands won't get confused (i.e., the string
116should be of the form `#x...' where `x' is not a blank or a tab, and
Barry Warsawc72c11c1997-08-09 06:42:08 +0000117`...' is arbitrary)."
118 :type 'string
119 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000120
Barry Warsawc72c11c1997-08-09 06:42:08 +0000121(defcustom py-honor-comment-indentation t
Barry Warsaw6d627751996-03-06 18:41:38 +0000122 "*Controls how comment lines influence subsequent indentation.
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000123
Barry Warsaw6d627751996-03-06 18:41:38 +0000124When nil, all comment lines are skipped for indentation purposes, and
Barry Warsawc72c11c1997-08-09 06:42:08 +0000125if possible, a faster algorithm is used (i.e. X/Emacs 19 and beyond).
Barry Warsaw6d627751996-03-06 18:41:38 +0000126
127When t, lines that begin with a single `#' are a hint to subsequent
128line indentation. If the previous line is such a comment line (as
129opposed to one that starts with `py-block-comment-prefix'), then it's
130indentation is used as a hint for this line's indentation. Lines that
131begin with `py-block-comment-prefix' are ignored for indentation
132purposes.
133
134When not nil or t, comment lines that begin with a `#' are used as
Barry Warsawc72c11c1997-08-09 06:42:08 +0000135indentation hints, unless the comment character is in column zero."
136 :type '(choice
137 (const :tag "Skip all comment lines (fast)" nil)
138 (const :tag "Single # `sets' indentation for next line" t)
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000139 (const :tag "Single # `sets' indentation except at column zero"
140 other)
Barry Warsawc72c11c1997-08-09 06:42:08 +0000141 )
142 :group 'python)
Barry Warsaw33d6ec01996-03-05 16:28:07 +0000143
Barry Warsawc72c11c1997-08-09 06:42:08 +0000144(defcustom py-scroll-process-buffer t
Barry Warsaw7ae77681994-12-12 20:38:05 +0000145 "*Scroll Python process buffer as output arrives.
146If nil, the Python process buffer acts, with respect to scrolling, like
147Shell-mode buffers normally act. This is surprisingly complicated and
148so won't be explained here; in fact, you can't get the whole story
149without studying the Emacs C code.
150
151If non-nil, the behavior is different in two respects (which are
152slightly inaccurate in the interest of brevity):
153
154 - If the buffer is in a window, and you left point at its end, the
155 window will scroll as new output arrives, and point will move to the
156 buffer's end, even if the window is not the selected window (that
157 being the one the cursor is in). The usual behavior for shell-mode
158 windows is not to scroll, and to leave point where it was, if the
159 buffer is in a window other than the selected window.
160
161 - If the buffer is not visible in any window, and you left point at
162 its end, the buffer will be popped into a window as soon as more
163 output arrives. This is handy if you have a long-running
164 computation and don't want to tie up screen area waiting for the
165 output. The usual behavior for a shell-mode buffer is to stay
166 invisible until you explicitly visit it.
167
168Note the `and if you left point at its end' clauses in both of the
169above: you can `turn off' the special behaviors while output is in
170progress, by visiting the Python buffer and moving point to anywhere
171besides the end. Then the buffer won't scroll, point will remain where
172you leave it, and if you hide the buffer it will stay hidden until you
173visit it again. You can enable and disable the special behaviors as
174often as you like, while output is in progress, by (respectively) moving
175point to, or away from, the end of the buffer.
176
177Warning: If you expect a large amount of output, you'll probably be
178happier setting this option to nil.
179
180Obscure: `End of buffer' above should really say `at or beyond the
181process mark', but if you know what that means you didn't need to be
Barry Warsawc72c11c1997-08-09 06:42:08 +0000182told <grin>."
183 :type 'boolean
184 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000185
Barry Warsaw516b6201997-08-09 06:43:20 +0000186(defcustom py-temp-directory
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000187 (let ((ok '(lambda (x)
188 (and x
189 (setq x (expand-file-name x)) ; always true
190 (file-directory-p x)
191 (file-writable-p x)
192 x))))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000193 (or (funcall ok (getenv "TMPDIR"))
194 (funcall ok "/usr/tmp")
195 (funcall ok "/tmp")
196 (funcall ok ".")
197 (error
198 "Couldn't find a usable temp directory -- set py-temp-directory")))
199 "*Directory used for temp files created by a *Python* process.
200By default, the first directory from this list that exists and that you
201can write into: the value (if any) of the environment variable TMPDIR,
Barry Warsawc72c11c1997-08-09 06:42:08 +0000202/usr/tmp, /tmp, or the current directory."
203 :type 'string
204 :group 'python)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000205
Barry Warsaw516b6201997-08-09 06:43:20 +0000206(defcustom py-beep-if-tab-change t
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000207 "*Ring the bell if tab-width is changed.
208If a comment of the form
209
210 \t# vi:set tabsize=<number>:
211
212is found before the first code line when the file is entered, and the
213current value of (the general Emacs variable) `tab-width' does not
214equal <number>, `tab-width' is set to <number>, a message saying so is
215displayed in the echo area, and if `py-beep-if-tab-change' is non-nil
Barry Warsawc72c11c1997-08-09 06:42:08 +0000216the Emacs bell is also rung as a warning."
217 :type 'boolean
218 :group 'python)
219
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000220(defcustom py-backspace-function 'backward-delete-char-untabify
221 "*Function called by `py-electric-backspace' when deleting backwards."
222 :type 'function
223 :group 'python)
224
225(defcustom py-delete-function 'delete-char
226 "*Function called by `py-electric-delete' when deleting forwards."
227 :type 'function
228 :group 'python)
229
230
Barry Warsawc72c11c1997-08-09 06:42:08 +0000231
232;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
233;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT
234
Barry Warsaw5e21cb01997-11-05 18:41:11 +0000235(defconst py-emacs-features
236 (let (features)
237 ;; NTEmacs 19.34.6 has a broken make-temp-name; it always returns
238 ;; the same string.
239 (let ((tmp1 (make-temp-name ""))
240 (tmp2 (make-temp-name "")))
241 (if (string-equal tmp1 tmp2)
242 (push 'broken-temp-names features)))
243 ;; return the features
244 features)
Barry Warsawc12c62e1997-09-04 04:18:07 +0000245 "A list of features extant in the Emacs you are using.
Barry Warsaw6ae21ad1997-11-06 14:36:49 +0000246There are many flavors of Emacs out there, with different levels of
247support for features needed by `python-mode'.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000248
Barry Warsawfb07f401997-02-24 03:37:22 +0000249(defvar python-font-lock-keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000250 (let ((kw1 (mapconcat 'identity
251 '("and" "assert" "break" "class"
252 "continue" "def" "del" "elif"
253 "else" "except" "exec" "for"
254 "from" "global" "if" "import"
255 "in" "is" "lambda" "not"
256 "or" "pass" "print" "raise"
257 "return" "while"
258 )
259 "\\|"))
260 (kw2 (mapconcat 'identity
261 '("else:" "except:" "finally:" "try:")
262 "\\|"))
263 )
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000264 (list
Barry Warsawef3c8911997-11-05 18:55:50 +0000265 ;; keywords
Barry Warsawb8f11661997-11-06 14:35:15 +0000266 (cons (concat "\\b\\(" kw1 "\\)\\b[ \n\t(]") 1)
267 ;; block introducing keywords with immediately following colons.
268 ;; Yes "except" is in both lists.
269 (cons (concat "\\b\\(" kw2 "\\)[ \n\t(]") 1)
Barry Warsaw33ab6e41996-03-05 00:44:31 +0000270 ;; classes
271 '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
272 1 font-lock-type-face)
273 ;; functions
274 '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
275 1 font-lock-function-name-face)
276 ))
Barry Warsaw62d9d6e1996-03-06 20:32:27 +0000277 "Additional expressions to highlight in Python mode.")
Barry Warsawfb07f401997-02-24 03:37:22 +0000278(put 'python-mode 'font-lock-defaults '(python-font-lock-keywords))
279
Barry Warsawb01b4fa1995-06-20 18:55:34 +0000280
Barry Warsaw81437461996-08-01 19:48:02 +0000281(defvar imenu-example--python-show-method-args-p nil
282 "*Controls echoing of arguments of functions & methods in the imenu buffer.
283When non-nil, arguments are printed.")
284
Barry Warsaw52bc17c1995-10-12 21:15:49 +0000285(make-variable-buffer-local 'py-indent-offset)
286
Barry Warsawe467bfb1997-11-26 05:40:58 +0000287;; have to bind py-file-queue before installing the kill-emacs-hook
Barry Warsaw7ae77681994-12-12 20:38:05 +0000288(defvar py-file-queue nil
289 "Queue of Python temp files awaiting execution.
290Currently-active file is at the head of the list.")
291
Barry Warsawc72c11c1997-08-09 06:42:08 +0000292
293;; Constants
294
295;; Regexp matching a Python string literal
296(defconst py-stringlit-re
297 (concat
298 "'\\([^'\n\\]\\|\\\\.\\)*'" ; single-quoted
299 "\\|" ; or
300 "\"\\([^\"\n\\]\\|\\\\.\\)*\"")) ; double-quoted
301
302;; Regexp matching Python lines that are continued via backslash.
303;; This is tricky because a trailing backslash does not mean
304;; continuation if it's in a comment
305(defconst py-continued-re
306 (concat
307 "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*"
308 "\\\\$"))
309
310;; Regexp matching blank or comment lines.
311(defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)")
312
313;; Regexp matching clauses to be outdented one level.
314(defconst py-outdent-re
315 (concat "\\(" (mapconcat 'identity
316 '("else:"
317 "except\\(\\s +.*\\)?:"
318 "finally:"
319 "elif\\s +.*:")
320 "\\|")
321 "\\)"))
322
323
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000324;; Regexp matching keywords which typically close a block
325(defconst py-block-closing-keywords-re
326 "\\(return\\|raise\\|break\\|continue\\|pass\\)")
327
Barry Warsawc72c11c1997-08-09 06:42:08 +0000328;; Regexp matching lines to not outdent after.
329(defconst py-no-outdent-re
Barry Warsawaffc0ca1997-11-03 16:59:38 +0000330 (concat
331 "\\("
332 (mapconcat 'identity
333 (list "try:"
334 "except\\(\\s +.*\\)?:"
335 "while\\s +.*:"
336 "for\\s +.*:"
337 "if\\s +.*:"
338 "elif\\s +.*:"
339 (concat py-block-closing-keywords-re "[ \t\n]")
340 )
341 "\\|")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000342 "\\)"))
343
344;; Regexp matching a function, method or variable assignment. If you
345;; change this, you probably have to change `py-current-defun' as
346;; well. This is only used by `py-current-defun' to find the name for
347;; add-log.el.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000348(defconst py-defun-start-re
Barry Warsawc72c11c1997-08-09 06:42:08 +0000349 "^\\([ \t]*\\)def[ \t]+\\([a-zA-Z_0-9]+\\)\\|\\(^[a-zA-Z_0-9]+\\)[ \t]*=")
350
351;; Regexp for finding a class name. If you change this, you probably
352;; have to change `py-current-defun' as well. This is only used by
353;; `py-current-defun' to find the name for add-log.el.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000354(defconst py-class-start-re "^class[ \t]*\\([a-zA-Z_0-9]+\\)")
355
356;; Regexp that describes tracebacks
357(defconst py-traceback-line-re
358 "[ \t]+File \"\\([^\"]+\\)\", line \\([0-9]+\\), in ")
Barry Warsawc72c11c1997-08-09 06:42:08 +0000359
360
361
362;; Utilities
363
364(defmacro py-safe (&rest body)
365 ;; safely execute BODY, return nil if an error occurred
366 (` (condition-case nil
367 (progn (,@ body))
368 (error nil))))
369
370(defsubst py-keep-region-active ()
371 ;; Do whatever is necessary to keep the region active in XEmacs.
372 ;; Ignore byte-compiler warnings you might see. Also note that
373 ;; FSF's Emacs 19 does it differently; its policy doesn't require us
374 ;; to take explicit action.
375 (and (boundp 'zmacs-region-stays)
376 (setq zmacs-region-stays t)))
377
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000378(defsubst py-point (position)
379 ;; Returns the value of point at certain commonly referenced POSITIONs.
380 ;; POSITION can be one of the following symbols:
381 ;;
382 ;; bol -- beginning of line
383 ;; eol -- end of line
384 ;; bod -- beginning of defun
385 ;; boi -- back to indentation
386 ;;
387 ;; This function does not modify point or mark.
388 (let ((here (point)))
389 (cond
390 ((eq position 'bol) (beginning-of-line))
391 ((eq position 'eol) (end-of-line))
392 ((eq position 'bod) (beginning-of-python-def-or-class))
393 ((eq position 'bob) (beginning-of-buffer))
394 ((eq position 'eob) (end-of-buffer))
395 ((eq position 'boi) (back-to-indentation))
396 (t (error "unknown buffer position requested: %s" position))
397 )
398 (prog1
399 (point)
400 (goto-char here))))
401
402(defsubst py-highlight-line (from to file line)
403 (cond
404 ((fboundp 'make-extent)
405 ;; XEmacs
406 (let ((e (make-extent from to)))
407 (set-extent-property e 'mouse-face 'highlight)
408 (set-extent-property e 'py-exc-info (cons file line))
409 (set-extent-property e 'keymap py-mode-output-map)))
410 (t
411 ;; Emacs -- Please port this!
412 )
413 ))
414
Barry Warsawc72c11c1997-08-09 06:42:08 +0000415
416;; Major mode boilerplate
417
Barry Warsaw7ae77681994-12-12 20:38:05 +0000418;; define a mode-specific abbrev table for those who use such things
419(defvar python-mode-abbrev-table nil
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000420 "Abbrev table in use in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000421(define-abbrev-table 'python-mode-abbrev-table nil)
422
Barry Warsaw7ae77681994-12-12 20:38:05 +0000423(defvar python-mode-hook nil
424 "*Hook called by `python-mode'.")
425
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000426;; in previous version of python-mode.el, the hook was incorrectly
427;; called py-mode-hook, and was not defvar'd. deprecate its use.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000428(and (fboundp 'make-obsolete-variable)
429 (make-obsolete-variable 'py-mode-hook 'python-mode-hook))
430
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000431(defvar py-mode-map ()
432 "Keymap used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000433(if py-mode-map
Barry Warsawc72c11c1997-08-09 06:42:08 +0000434 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000435 (setq py-mode-map (make-sparse-keymap))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000436 ;; electric keys
437 (define-key py-mode-map ":" 'py-electric-colon)
438 ;; indentation level modifiers
439 (define-key py-mode-map "\C-c\C-l" 'py-shift-region-left)
440 (define-key py-mode-map "\C-c\C-r" 'py-shift-region-right)
441 (define-key py-mode-map "\C-c<" 'py-shift-region-left)
442 (define-key py-mode-map "\C-c>" 'py-shift-region-right)
443 ;; subprocess commands
444 (define-key py-mode-map "\C-c\C-c" 'py-execute-buffer)
445 (define-key py-mode-map "\C-c|" 'py-execute-region)
446 (define-key py-mode-map "\C-c!" 'py-shell)
447 ;; Caution! Enter here at your own risk. We are trying to support
448 ;; several behaviors and it gets disgusting. :-( This logic ripped
449 ;; largely from CC Mode.
450 ;;
451 ;; In XEmacs 19, Emacs 19, and Emacs 20, we use this to bind
452 ;; backwards deletion behavior to DEL, which both Delete and
453 ;; Backspace get translated to. There's no way to separate this
454 ;; behavior in a clean way, so deal with it! Besides, it's been
455 ;; this way since the dawn of time.
456 (if (not (boundp 'delete-key-deletes-forward))
457 (define-key py-mode-map "\177" 'py-electric-backspace)
458 ;; However, XEmacs 20 actually achieved enlightenment. It is
459 ;; possible to sanely define both backward and forward deletion
460 ;; behavior under X separately (TTYs are forever beyond hope, but
461 ;; who cares? XEmacs 20 does the right thing with these too).
462 (define-key py-mode-map [delete] 'py-electric-delete)
463 (define-key py-mode-map [backspace] 'py-electric-backspace))
Barry Warsaw2518c671997-11-05 00:51:08 +0000464 ;; marking interesting locations
Barry Warsaw4da6bd51997-11-26 06:00:26 +0000465 (define-key py-mode-map "\e\C-h" 'py-mark-def-or-class)
Barry Warsaw2518c671997-11-05 00:51:08 +0000466 (define-key py-mode-map "\C-c\C-k" 'py-mark-block)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000467 ;; Miscellaneous
468 (define-key py-mode-map "\C-c:" 'py-guess-indent-offset)
469 (define-key py-mode-map "\C-c\t" 'py-indent-region)
470 (define-key py-mode-map "\C-c\C-n" 'py-next-statement)
471 (define-key py-mode-map "\C-c\C-p" 'py-previous-statement)
472 (define-key py-mode-map "\C-c\C-u" 'py-goto-block-up)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000473 (define-key py-mode-map "\C-c#" 'py-comment-region)
474 (define-key py-mode-map "\C-c?" 'py-describe-mode)
475 (define-key py-mode-map "\C-c\C-hm" 'py-describe-mode)
476 (define-key py-mode-map "\e\C-a" 'beginning-of-python-def-or-class)
477 (define-key py-mode-map "\e\C-e" 'end-of-python-def-or-class)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000478 (define-key py-mode-map "\C-c-" 'py-up-exception)
479 (define-key py-mode-map "\C-c=" 'py-down-exception)
Barry Warsaw6d48c4a1997-11-04 19:21:50 +0000480 ;; information
481 (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report)
482 (define-key py-mode-map "\C-c\C-v" 'py-version)
483 ;; py-newline-and-indent mappings
484 (define-key py-mode-map "\n" 'py-newline-and-indent)
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000485 ;; shadow global bindings for newline-and-indent w/ the py- version.
486 ;; BAW - this is extremely bad form, but I'm not going to change it
487 ;; for now.
Barry Warsawa0ee8cd1997-11-26 01:04:44 +0000488 (mapcar #'(lambda (key)
489 (define-key py-mode-map key 'py-newline-and-indent))
490 (where-is-internal 'newline-and-indent))
491 )
492
493(defvar py-mode-output-map nil
494 "Keymap used in *Python Output* buffers*")
495(if py-mode-output-map
496 nil
497 (setq py-mode-output-map (make-sparse-keymap))
498 (define-key py-mode-output-map [button2] 'py-mouseto-exception)
499 (define-key py-mode-output-map "\C-c\C-c" 'py-goto-exception)
500 ;; TBD: Disable all self-inserting keys. This is bogus, we should
501 ;; really implement this as *Python Output* buffer being read-only
502 (mapcar #' (lambda (key)
503 (define-key py-mode-output-map key
504 #'(lambda () (interactive) (beep))))
505 (where-is-internal 'self-insert-command))
Barry Warsaw850437a1995-03-08 21:50:28 +0000506 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000507
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000508(defvar py-mode-syntax-table nil
509 "Syntax table used in `python-mode' buffers.")
Barry Warsaw7ae77681994-12-12 20:38:05 +0000510(if py-mode-syntax-table
Barry Warsawc72c11c1997-08-09 06:42:08 +0000511 nil
Barry Warsaw7ae77681994-12-12 20:38:05 +0000512 (setq py-mode-syntax-table (make-syntax-table))
Barry Warsawc72c11c1997-08-09 06:42:08 +0000513 (modify-syntax-entry ?\( "()" py-mode-syntax-table)
514 (modify-syntax-entry ?\) ")(" py-mode-syntax-table)
515 (modify-syntax-entry ?\[ "(]" py-mode-syntax-table)
516 (modify-syntax-entry ?\] ")[" py-mode-syntax-table)
517 (modify-syntax-entry ?\{ "(}" py-mode-syntax-table)
518 (modify-syntax-entry ?\} "){" py-mode-syntax-table)
519 ;; Add operator symbols misassigned in the std table
520 (modify-syntax-entry ?\$ "." py-mode-syntax-table)
521 (modify-syntax-entry ?\% "." py-mode-syntax-table)
522 (modify-syntax-entry ?\& "." py-mode-syntax-table)
523 (modify-syntax-entry ?\* "." py-mode-syntax-table)
524 (modify-syntax-entry ?\+ "." py-mode-syntax-table)
525 (modify-syntax-entry ?\- "." py-mode-syntax-table)
526 (modify-syntax-entry ?\/ "." py-mode-syntax-table)
527 (modify-syntax-entry ?\< "." py-mode-syntax-table)
528 (modify-syntax-entry ?\= "." py-mode-syntax-table)
529 (modify-syntax-entry ?\> "." py-mode-syntax-table)
530 (modify-syntax-entry ?\| "." py-mode-syntax-table)
531 ;; For historical reasons, underscore is word class instead of
532 ;; symbol class. GNU conventions say it should be symbol class, but
533 ;; there's a natural conflict between what major mode authors want
534 ;; and what users expect from `forward-word' and `backward-word'.
535 ;; Guido and I have hashed this out and have decided to keep
536 ;; underscore in word class. If you're tempted to change it, try
537 ;; binding M-f and M-b to py-forward-into-nomenclature and
538 ;; py-backward-into-nomenclature instead.
539 (modify-syntax-entry ?\_ "w" py-mode-syntax-table)
540 ;; Both single quote and double quote are string delimiters
541 (modify-syntax-entry ?\' "\"" py-mode-syntax-table)
542 (modify-syntax-entry ?\" "\"" py-mode-syntax-table)
543 ;; backquote is open and close paren
544 (modify-syntax-entry ?\` "$" py-mode-syntax-table)
545 ;; comment delimiters
546 (modify-syntax-entry ?\# "<" py-mode-syntax-table)
547 (modify-syntax-entry ?\n ">" py-mode-syntax-table)
548 )
Barry Warsaw7ae77681994-12-12 20:38:05 +0000549
Barry Warsawb3e81d51996-09-04 15:12:42 +0000550
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000551
Barry Warsaw42f707f1996-07-29 21:05:05 +0000552;; Menu definitions, only relevent if you have the easymenu.el package
553;; (standard in the latest Emacs 19 and XEmacs 19 distributions).
Barry Warsaw5490a061996-08-06 15:43:33 +0000554(defvar py-menu nil
555 "Menu for Python Mode.
Barry Warsawc72c11c1997-08-09 06:42:08 +0000556This menu will get created automatically if you have the `easymenu'
557package. Note that the latest X/Emacs releases contain this package.")
Barry Warsaw5490a061996-08-06 15:43:33 +0000558
Barry Warsawc72c11c1997-08-09 06:42:08 +0000559(and (py-safe (require 'easymenu) t)
560 (easy-menu-define
561 py-menu py-mode-map "Python Mode menu"
562 '("Python"
563 ["Comment Out Region" py-comment-region (mark)]
564 ["Uncomment Region" (py-comment-region (point) (mark) '(4)) (mark)]
565 "-"
566 ["Mark current block" py-mark-block t]
Barry Warsaw2518c671997-11-05 00:51:08 +0000567 ["Mark current def" py-mark-def-or-class t]
568 ["Mark current class" (py-mark-def-or-class t) t]
Barry Warsawc72c11c1997-08-09 06:42:08 +0000569 "-"
570 ["Shift region left" py-shift-region-left (mark)]
571 ["Shift region right" py-shift-region-right (mark)]
572 "-"
573 ["Execute buffer" py-execute-buffer t]
574 ["Execute region" py-execute-region (mark)]
575 ["Start interpreter..." py-shell t]
576 "-"
577 ["Go to start of block" py-goto-block-up t]
578 ["Go to start of class" (beginning-of-python-def-or-class t) t]
579 ["Move to end of class" (end-of-python-def-or-class t) t]
580 ["Move to start of def" beginning-of-python-def-or-class t]
581 ["Move to end of def" end-of-python-def-or-class t]
582 "-"
583 ["Describe mode" py-describe-mode t]
584 )))
Barry Warsaw42f707f1996-07-29 21:05:05 +0000585
Barry Warsaw81437461996-08-01 19:48:02 +0000586
587
588;; imenu definitions, courtesy of Perry A. Stoll <stoll@atr-sw.atr.co.jp>
589(defvar imenu-example--python-class-regexp
590 (concat ; <<classes>>
591 "\\(" ;
592 "^[ \t]*" ; newline and maybe whitespace
593 "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name
594 ; possibly multiple superclasses
595 "\\([ \t]*\\((\\([a-zA-Z0-9_, \t\n]\\)*)\\)?\\)"
596 "[ \t]*:" ; and the final :
597 "\\)" ; >>classes<<
598 )
599 "Regexp for Python classes for use with the imenu package."
600 )
601
602(defvar imenu-example--python-method-regexp
603 (concat ; <<methods and functions>>
604 "\\(" ;
605 "^[ \t]*" ; new line and maybe whitespace
606 "\\(def[ \t]+" ; function definitions start with def
607 "\\([a-zA-Z0-9_]+\\)" ; name is here
608 ; function arguments...
609 "[ \t]*(\\([a-zA-Z0-9_=,\* \t\n]*\\))"
610 "\\)" ; end of def
611 "[ \t]*:" ; and then the :
612 "\\)" ; >>methods and functions<<
613 )
614 "Regexp for Python methods/functions for use with the imenu package."
615 )
616
617(defvar imenu-example--python-method-no-arg-parens '(2 8)
618 "Indicies into groups of the Python regexp for use with imenu.
619
620Using these values will result in smaller imenu lists, as arguments to
621functions are not listed.
622
623See the variable `imenu-example--python-show-method-args-p' for more
624information.")
625
626(defvar imenu-example--python-method-arg-parens '(2 7)
627 "Indicies into groups of the Python regexp for use with imenu.
628Using these values will result in large imenu lists, as arguments to
629functions are listed.
630
631See the variable `imenu-example--python-show-method-args-p' for more
632information.")
633
634;; Note that in this format, this variable can still be used with the
635;; imenu--generic-function. Otherwise, there is no real reason to have
636;; it.
637(defvar imenu-example--generic-python-expression
638 (cons
639 (concat
640 imenu-example--python-class-regexp
641 "\\|" ; or...
642 imenu-example--python-method-regexp
643 )
644 imenu-example--python-method-no-arg-parens)
645 "Generic Python expression which may be used directly with imenu.
646Used by setting the variable `imenu-generic-expression' to this value.
647Also, see the function \\[imenu-example--create-python-index] for a
648better alternative for finding the index.")
649
650;; These next two variables are used when searching for the python
651;; class/definitions. Just saving some time in accessing the
652;; generic-python-expression, really.
Barry Warsaw01af4011996-09-04 14:57:22 +0000653(defvar imenu-example--python-generic-regexp nil)
654(defvar imenu-example--python-generic-parens nil)
Barry Warsaw81437461996-08-01 19:48:02 +0000655
656
657;;;###autoload
658(eval-when-compile
659 ;; Imenu isn't used in XEmacs, so just ignore load errors
660 (condition-case ()
661 (progn
662 (require 'cl)
663 (require 'imenu))
664 (error nil)))
665
666(defun imenu-example--create-python-index ()
667 "Python interface function for imenu package.
668Finds all python classes and functions/methods. Calls function
669\\[imenu-example--create-python-index-engine]. See that function for
670the details of how this works."
671 (setq imenu-example--python-generic-regexp
672 (car imenu-example--generic-python-expression))
673 (setq imenu-example--python-generic-parens
674 (if imenu-example--python-show-method-args-p
675 imenu-example--python-method-arg-parens
676 imenu-example--python-method-no-arg-parens))
677 (goto-char (point-min))
678 (imenu-example--create-python-index-engine nil))
679
680(defun imenu-example--create-python-index-engine (&optional start-indent)
681 "Function for finding imenu definitions in Python.
682
683Finds all definitions (classes, methods, or functions) in a Python
684file for the imenu package.
685
686Returns a possibly nested alist of the form
687
688 (INDEX-NAME . INDEX-POSITION)
689
690The second element of the alist may be an alist, producing a nested
691list as in
692
693 (INDEX-NAME . INDEX-ALIST)
694
695This function should not be called directly, as it calls itself
696recursively and requires some setup. Rather this is the engine for
697the function \\[imenu-example--create-python-index].
698
699It works recursively by looking for all definitions at the current
700indention level. When it finds one, it adds it to the alist. If it
701finds a definition at a greater indentation level, it removes the
702previous definition from the alist. In it's place it adds all
703definitions found at the next indentation level. When it finds a
704definition that is less indented then the current level, it retuns the
705alist it has created thus far.
706
707The optional argument START-INDENT indicates the starting indentation
708at which to continue looking for Python classes, methods, or
709functions. If this is not supplied, the function uses the indentation
710of the first definition found."
711 (let ((index-alist '())
712 (sub-method-alist '())
713 looking-p
714 def-name prev-name
715 cur-indent def-pos
716 (class-paren (first imenu-example--python-generic-parens))
717 (def-paren (second imenu-example--python-generic-parens)))
718 (setq looking-p
719 (re-search-forward imenu-example--python-generic-regexp
720 (point-max) t))
721 (while looking-p
722 (save-excursion
723 ;; used to set def-name to this value but generic-extract-name is
724 ;; new to imenu-1.14. this way it still works with imenu-1.11
725 ;;(imenu--generic-extract-name imenu-example--python-generic-parens))
726 (let ((cur-paren (if (match-beginning class-paren)
727 class-paren def-paren)))
728 (setq def-name
Barry Warsawc8520351997-11-26 06:14:40 +0000729 (buffer-substring-no-properties (match-beginning cur-paren)
730 (match-end cur-paren))))
Barry Warsaw81437461996-08-01 19:48:02 +0000731 (beginning-of-line)
732 (setq cur-indent (current-indentation)))
733
734 ;; HACK: want to go to the next correct definition location. we
735 ;; explicitly list them here. would be better to have them in a
736 ;; list.
737 (setq def-pos
738 (or (match-beginning class-paren)
739 (match-beginning def-paren)))
740
741 ;; if we don't have a starting indent level, take this one
742 (or start-indent
743 (setq start-indent cur-indent))
744
745 ;; if we don't have class name yet, take this one
746 (or prev-name
747 (setq prev-name def-name))
748
749 ;; what level is the next definition on? must be same, deeper
750 ;; or shallower indentation
751 (cond
752 ;; at the same indent level, add it to the list...
753 ((= start-indent cur-indent)
754
755 ;; if we don't have push, use the following...
756 ;;(setf index-alist (cons (cons def-name def-pos) index-alist))
757 (push (cons def-name def-pos) index-alist))
758
759 ;; deeper indented expression, recur...
760 ((< start-indent cur-indent)
761
762 ;; the point is currently on the expression we're supposed to
763 ;; start on, so go back to the last expression. The recursive
764 ;; call will find this place again and add it to the correct
765 ;; list
766 (re-search-backward imenu-example--python-generic-regexp
767 (point-min) 'move)
768 (setq sub-method-alist (imenu-example--create-python-index-engine
769 cur-indent))
770
771 (if sub-method-alist
772 ;; we put the last element on the index-alist on the start
773 ;; of the submethod alist so the user can still get to it.
774 (let ((save-elmt (pop index-alist)))
Barry Warsawc8520351997-11-26 06:14:40 +0000775 (push (cons prev-name
Barry Warsaw81437461996-08-01 19:48:02 +0000776 (cons save-elmt sub-method-alist))
777 index-alist))))
778
779 ;; found less indented expression, we're done.
780 (t
781 (setq looking-p nil)
782 (re-search-backward imenu-example--python-generic-regexp
783 (point-min) t)))
784 (setq prev-name def-name)
785 (and looking-p
786 (setq looking-p
787 (re-search-forward imenu-example--python-generic-regexp
788 (point-max) 'move))))
789 (nreverse index-alist)))
790
Barry Warsaw42f707f1996-07-29 21:05:05 +0000791
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000792;;;###autoload
Barry Warsaw7ae77681994-12-12 20:38:05 +0000793(defun python-mode ()
794 "Major mode for editing Python files.
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000795To submit a problem report, enter `\\[py-submit-bug-report]' from a
796`python-mode' buffer. Do `\\[py-describe-mode]' for detailed
797documentation. To see what version of `python-mode' you are running,
798enter `\\[py-version]'.
799
800This mode knows about Python indentation, tokens, comments and
801continuation lines. Paragraphs are separated by blank lines only.
Barry Warsaw7ae77681994-12-12 20:38:05 +0000802
803COMMANDS
804\\{py-mode-map}
805VARIABLES
806
Barry Warsaw42f707f1996-07-29 21:05:05 +0000807py-indent-offset\t\tindentation increment
808py-block-comment-prefix\t\tcomment string used by comment-region
809py-python-command\t\tshell command to invoke Python interpreter
810py-scroll-process-buffer\t\talways scroll Python process buffer
811py-temp-directory\t\tdirectory used for temp files (if needed)
812py-beep-if-tab-change\t\tring the bell if tab-width is changed"
Barry Warsaw7ae77681994-12-12 20:38:05 +0000813 (interactive)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000814 ;; set up local variables
Barry Warsaw7ae77681994-12-12 20:38:05 +0000815 (kill-all-local-variables)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000816 (make-local-variable 'font-lock-defaults)
817 (make-local-variable 'paragraph-separate)
818 (make-local-variable 'paragraph-start)
819 (make-local-variable 'require-final-newline)
820 (make-local-variable 'comment-start)
Barry Warsaw5c8bef11996-12-17 21:56:10 +0000821 (make-local-variable 'comment-end)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000822 (make-local-variable 'comment-start-skip)
823 (make-local-variable 'comment-column)
824 (make-local-variable 'indent-region-function)
825 (make-local-variable 'indent-line-function)
Barry Warsawb3e81d51996-09-04 15:12:42 +0000826 (make-local-variable 'add-log-current-defun-function)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000827 ;;
Barry Warsaw7ae77681994-12-12 20:38:05 +0000828 (set-syntax-table py-mode-syntax-table)
Barry Warsaw615d4a41996-09-04 14:14:10 +0000829 (setq major-mode 'python-mode
830 mode-name "Python"
831 local-abbrev-table python-mode-abbrev-table
Barry Warsaw615d4a41996-09-04 14:14:10 +0000832 paragraph-separate "^[ \t]*$"
833 paragraph-start "^[ \t]*$"
834 require-final-newline t
835 comment-start "# "
Barry Warsaw5c8bef11996-12-17 21:56:10 +0000836 comment-end ""
Barry Warsaw615d4a41996-09-04 14:14:10 +0000837 comment-start-skip "# *"
838 comment-column 40
Barry Warsaw550a02e1996-09-04 14:23:00 +0000839 indent-region-function 'py-indent-region
840 indent-line-function 'py-indent-line
Barry Warsawb3e81d51996-09-04 15:12:42 +0000841 ;; tell add-log.el how to find the current function/method/variable
842 add-log-current-defun-function 'py-current-defun
Barry Warsawb1f89511996-09-03 16:38:30 +0000843 )
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000844 (use-local-map py-mode-map)
Barry Warsaw42f707f1996-07-29 21:05:05 +0000845 ;; add the menu
846 (if py-menu
847 (easy-menu-add py-menu))
Barry Warsaw57697af1995-09-14 20:01:14 +0000848 ;; Emacs 19 requires this
Barry Warsawc72c11c1997-08-09 06:42:08 +0000849 (if (boundp 'comment-multi-line)
Barry Warsaw57697af1995-09-14 20:01:14 +0000850 (setq comment-multi-line nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000851 ;; hack to allow overriding the tabsize in the file (see tokenizer.c)
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000852 ;;
853 ;; not sure where the magic comment has to be; to save time
854 ;; searching for a rarity, we give up if it's not found prior to the
855 ;; first executable statement.
856 ;;
857 ;; BAW - on first glance, this seems like complete hackery. Why was
858 ;; this necessary, and is it still necessary?
859 (let ((case-fold-search nil)
860 (start (point))
861 new-tab-width)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000862 (if (re-search-forward
863 "^[ \t]*#[ \t]*vi:set[ \t]+tabsize=\\([0-9]+\\):"
864 (prog2 (py-next-statement 1) (point) (goto-char 1))
865 t)
866 (progn
867 (setq new-tab-width
868 (string-to-int
869 (buffer-substring (match-beginning 1) (match-end 1))))
870 (if (= tab-width new-tab-width)
871 nil
872 (setq tab-width new-tab-width)
873 (message "Caution: tab-width changed to %d" new-tab-width)
874 (if py-beep-if-tab-change (beep)))))
875 (goto-char start))
876
Barry Warsaw755c6711996-08-01 20:02:55 +0000877 ;; install imenu
Barry Warsawc8520351997-11-26 06:14:40 +0000878 (make-variable-buffer-local 'imenu-create-index-function)
Barry Warsaw755c6711996-08-01 20:02:55 +0000879 (setq imenu-create-index-function
880 (function imenu-example--create-python-index))
Barry Warsawe467bfb1997-11-26 05:40:58 +0000881 (setq imenu-generic-expression
882 imenu-example--generic-python-expression)
Barry Warsaw755c6711996-08-01 20:02:55 +0000883 (if (fboundp 'imenu-add-to-menubar)
884 (imenu-add-to-menubar (format "%s-%s" "IM" mode-name)))
885
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000886 ;; run the mode hook. py-mode-hook use is deprecated
Barry Warsaw7ae77681994-12-12 20:38:05 +0000887 (if python-mode-hook
888 (run-hooks 'python-mode-hook)
889 (run-hooks 'py-mode-hook)))
890
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000891
Barry Warsawb91b7431995-03-14 15:55:20 +0000892;; electric characters
Barry Warsaw3874a3d1995-03-14 22:05:53 +0000893(defun py-outdent-p ()
894 ;; returns non-nil if the current line should outdent one level
895 (save-excursion
896 (and (progn (back-to-indentation)
897 (looking-at py-outdent-re))
898 (progn (backward-to-indentation 1)
899 (while (or (looking-at py-blank-or-comment-re)
900 (bobp))
901 (backward-to-indentation 1))
902 (not (looking-at py-no-outdent-re)))
903 )))
904
Barry Warsawb91b7431995-03-14 15:55:20 +0000905(defun py-electric-colon (arg)
906 "Insert a colon.
907In certain cases the line is outdented appropriately. If a numeric
Barry Warsaw0c6563f1995-09-14 20:57:02 +0000908argument is provided, that many colons are inserted non-electrically.
909Electric behavior is inhibited inside a string or comment."
Barry Warsawb91b7431995-03-14 15:55:20 +0000910 (interactive "P")
911 (self-insert-command (prefix-numeric-value arg))
Barry Warsaw0c6563f1995-09-14 20:57:02 +0000912 ;; are we in a string or comment?
913 (if (save-excursion
914 (let ((pps (parse-partial-sexp (save-excursion
915 (beginning-of-python-def-or-class)
916 (point))
917 (point))))
918 (not (or (nth 3 pps) (nth 4 pps)))))
919 (save-excursion
920 (let ((here (point))
921 (outdent 0)
Barry Warsaw7cb505c1996-10-23 20:44:59 +0000922 (indent (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +0000923 (if (and (not arg)
924 (py-outdent-p)
925 (= indent (save-excursion
Barry Warsawa7661821996-08-02 16:22:43 +0000926 (py-next-statement -1)
Barry Warsaw7cb505c1996-10-23 20:44:59 +0000927 (py-compute-indentation t)))
Barry Warsaw0c6563f1995-09-14 20:57:02 +0000928 )
929 (setq outdent py-indent-offset))
930 ;; Don't indent, only outdent. This assumes that any lines that
931 ;; are already outdented relative to py-compute-indentation were
932 ;; put there on purpose. Its highly annoying to have `:' indent
933 ;; for you. Use TAB, C-c C-l or C-c C-r to adjust. TBD: Is
934 ;; there a better way to determine this???
935 (if (< (current-indentation) indent) nil
936 (goto-char here)
937 (beginning-of-line)
938 (delete-horizontal-space)
939 (indent-to (- indent outdent))
940 )))))
Barry Warsawb91b7431995-03-14 15:55:20 +0000941
942
Barry Warsawa97a3f31997-11-04 18:47:06 +0000943;; Python subprocess utilities and filters
944(defun py-execute-file (proc filename)
945 ;; Send a properly formatted execfile('FILENAME') to the underlying
946 ;; Python interpreter process FILENAME. Make that process's buffer
947 ;; visible and force display. Also make comint believe the user
948 ;; typed this string so that kill-output-from-shell does The Right
949 ;; Thing.
950 (let ((curbuf (current-buffer))
951 (procbuf (process-buffer proc))
952 (comint-scroll-to-bottom-on-output t)
953 (msg (format "## working on region in file %s...\n" filename))
954 (cmd (format "execfile('%s')\n" filename)))
955 (unwind-protect
956 (progn
957 (set-buffer procbuf)
958 (goto-char (point-max))
959 (move-marker (process-mark proc) (point))
960 (funcall (process-filter proc) proc msg))
961 (set-buffer curbuf))
962 (process-send-string proc cmd)))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000963
964(defun py-process-filter (pyproc string)
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000965 (let ((curbuf (current-buffer))
966 (pbuf (process-buffer pyproc))
967 (pmark (process-mark pyproc))
968 file-finished)
Barry Warsaw7ae77681994-12-12 20:38:05 +0000969 ;; make sure we switch to a different buffer at least once. if we
970 ;; *don't* do this, then if the process buffer is in the selected
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000971 ;; window, and point is before the end, and lots of output is
972 ;; coming at a fast pace, then (a) simple cursor-movement commands
973 ;; like C-p, C-n, C-f, C-b, C-a, C-e take an incredibly long time
974 ;; to have a visible effect (the window just doesn't get updated,
975 ;; sometimes for minutes(!)), and (b) it takes about 5x longer to
976 ;; get all the process output (until the next python prompt).
Barry Warsaw7ae77681994-12-12 20:38:05 +0000977 ;;
Barry Warsaw7b0f5681995-03-08 21:33:04 +0000978 ;; #b makes no sense to me at all. #a almost makes sense: unless
979 ;; we actually change buffers, set_buffer_internal in buffer.c
980 ;; doesn't set windows_or_buffers_changed to 1, & that in turn
981 ;; seems to make the Emacs command loop reluctant to update the
982 ;; display. Perhaps the default process filter in process.c's
983 ;; read_process_output has update_mode_lines++ for a similar
984 ;; reason? beats me ...
985
Barry Warsaw7a73ef81996-09-30 23:00:40 +0000986 (unwind-protect
987 ;; make sure current buffer is restored
988 ;; BAW - we want to check to see if this still applies
989 (progn
990 ;; mysterious ugly hack
991 (if (eq curbuf pbuf)
992 (set-buffer (get-buffer-create "*scratch*")))
Barry Warsaw7ae77681994-12-12 20:38:05 +0000993
Barry Warsaw7a73ef81996-09-30 23:00:40 +0000994 (set-buffer pbuf)
995 (let* ((start (point))
996 (goback (< start pmark))
997 (goend (and (not goback) (= start (point-max))))
998 (buffer-read-only nil))
999 (goto-char pmark)
1000 (insert string)
1001 (move-marker pmark (point))
1002 (setq file-finished
1003 (and py-file-queue
1004 (equal ">>> "
1005 (buffer-substring
1006 (prog2 (beginning-of-line) (point)
1007 (goto-char pmark))
1008 (point)))))
1009 (if goback (goto-char start)
1010 ;; else
1011 (if py-scroll-process-buffer
1012 (let* ((pop-up-windows t)
1013 (pwin (display-buffer pbuf)))
1014 (set-window-point pwin (point)))))
1015 (set-buffer curbuf)
1016 (if file-finished
1017 (progn
1018 (py-delete-file-silently (car py-file-queue))
1019 (setq py-file-queue (cdr py-file-queue))
1020 (if py-file-queue
1021 (py-execute-file pyproc (car py-file-queue)))))
1022 (and goend
1023 (progn (set-buffer pbuf)
1024 (goto-char (point-max))))
1025 ))
1026 (set-buffer curbuf))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001027
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001028(defun py-postprocess-output-buffer (buf)
1029 (save-excursion
1030 (set-buffer buf)
1031 (beginning-of-buffer)
1032 (while (re-search-forward py-traceback-line-re nil t)
1033 (let ((file (match-string 1))
1034 (line (string-to-int (match-string 2))))
1035 (py-highlight-line (py-point 'bol) (py-point 'eol) file line))
1036 )))
1037
Barry Warsawa97a3f31997-11-04 18:47:06 +00001038
1039;;; Subprocess commands
1040
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001041;; only used when (memq 'broken-temp-names py-emacs-features)
1042(defvar py-serial-number 0)
1043(defvar py-exception-buffer nil)
1044(defconst py-output-buffer "*Python Output*")
1045
Barry Warsawa97a3f31997-11-04 18:47:06 +00001046;;;###autoload
1047(defun py-shell ()
1048 "Start an interactive Python interpreter in another window.
1049This is like Shell mode, except that Python is running in the window
1050instead of a shell. See the `Interactive Shell' and `Shell Mode'
1051sections of the Emacs manual for details, especially for the key
1052bindings active in the `*Python*' buffer.
1053
1054See the docs for variable `py-scroll-buffer' for info on scrolling
1055behavior in the process window.
1056
1057Warning: Don't use an interactive Python if you change sys.ps1 or
1058sys.ps2 from their default values, or if you're running code that
1059prints `>>> ' or `... ' at the start of a line. `python-mode' can't
1060distinguish your output from Python's output, and assumes that `>>> '
1061at the start of a line is a prompt from Python. Similarly, the Emacs
1062Shell mode code assumes that both `>>> ' and `... ' at the start of a
1063line are Python prompts. Bad things can happen if you fool either
1064mode.
1065
1066Warning: If you do any editing *in* the process buffer *while* the
1067buffer is accepting output from Python, do NOT attempt to `undo' the
1068changes. Some of the output (nowhere near the parts you changed!) may
1069be lost if you do. This appears to be an Emacs bug, an unfortunate
1070interaction between undo and process filters; the same problem exists in
1071non-Python process buffers using the default (Emacs-supplied) process
1072filter."
1073 ;; BAW - should undo be disabled in the python process buffer, if
1074 ;; this bug still exists?
1075 (interactive)
1076 (require 'comint)
Barry Warsaw2518c671997-11-05 00:51:08 +00001077 (switch-to-buffer-other-window
1078 (make-comint "Python" py-python-command nil "-i"))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001079 (make-local-variable 'comint-prompt-regexp)
1080 (setq comint-prompt-regexp "^>>> \\|^[.][.][.] ")
1081 (set-process-filter (get-buffer-process (current-buffer)) 'py-process-filter)
1082 (set-syntax-table py-mode-syntax-table)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001083 ;; set up keybindings for this subshell
1084 (local-set-key [tab] 'self-insert-command)
1085 (local-set-key "\C-c-" 'py-up-exception)
1086 (local-set-key "\C-c=" 'py-down-exception)
1087 )
Barry Warsawa97a3f31997-11-04 18:47:06 +00001088
Barry Warsawa97a3f31997-11-04 18:47:06 +00001089(defun py-clear-queue ()
1090 "Clear the queue of temporary files waiting to execute."
1091 (interactive)
1092 (let ((n (length py-file-queue)))
1093 (mapcar 'delete-file py-file-queue)
1094 (setq py-file-queue nil)
1095 (message "%d pending files de-queued." n)))
1096
1097(defun py-execute-region (start end &optional async)
1098 "Execute the the region in a Python interpreter.
1099The region is first copied into a temporary file (in the directory
1100`py-temp-directory'). If there is no Python interpreter shell
1101running, this file is executed synchronously using
1102`shell-command-on-region'. If the program is long running, use an
1103optional \\[universal-argument] to run the command asynchronously in
1104its own buffer.
1105
1106If the Python interpreter shell is running, the region is execfile()'d
1107in that shell. If you try to execute regions too quickly,
1108`python-mode' will queue them up and execute them one at a time when
1109it sees a `>>> ' prompt from Python. Each time this happens, the
1110process buffer is popped into a window (if it's not already in some
1111window) so you can see it, and a comment of the form
1112
1113 \t## working on region in file <name>...
1114
1115is inserted at the end. See also the command `py-clear-queue'."
1116 (interactive "r\nP")
1117 (or (< start end)
1118 (error "Region is empty"))
1119 (let* ((proc (get-process "Python"))
Barry Warsaw5e21cb01997-11-05 18:41:11 +00001120 (temp (if (memq 'broken-temp-names py-emacs-features)
1121 (prog1
1122 (format "python-%d" py-serial-number)
1123 (setq py-serial-number (1+ py-serial-number)))
1124 (make-temp-name "python")))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001125 (file (concat (file-name-as-directory py-temp-directory) temp)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001126 (write-region start end file nil 'nomsg)
1127 (cond
1128 ;; always run the code in it's own asynchronous subprocess
1129 (async
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001130 (let* ((buf (generate-new-buffer-name py-output-buffer)))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001131 (start-process "Python" buf py-python-command "-u" file)
1132 (pop-to-buffer buf)
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001133 (py-postprocess-output-buffer buf)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001134 ))
1135 ;; if the Python interpreter shell is running, queue it up for
1136 ;; execution there.
1137 (proc
1138 ;; use the existing python shell
1139 (if (not py-file-queue)
1140 (py-execute-file proc file)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001141 (message "File %s queued for execution" file))
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001142 (push file py-file-queue)
1143 (setq py-exception-buffer (cons file (current-buffer))))
Barry Warsawa97a3f31997-11-04 18:47:06 +00001144 (t
1145 ;; otherwise either run it synchronously in a subprocess
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001146 (shell-command-on-region start end py-python-command py-output-buffer)
1147 (setq py-exception-buffer (current-buffer))
1148 (py-postprocess-output-buffer py-output-buffer)
Barry Warsawa97a3f31997-11-04 18:47:06 +00001149 ))))
1150
1151;; Code execution command
1152(defun py-execute-buffer (&optional async)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001153 "Send the contents of the buffer to a Python interpreter.
1154If there is a *Python* process buffer it is used. If a clipping
1155restriction is in effect, only the accessible portion of the buffer is
1156sent. A trailing newline will be supplied if needed.
1157
1158See the `\\[py-execute-region]' docs for an account of some subtleties."
Barry Warsawa97a3f31997-11-04 18:47:06 +00001159 (interactive "P")
1160 (py-execute-region (point-min) (point-max) async))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001161
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001162
1163
1164(defun py-jump-to-exception (file line)
1165 (let ((buffer (cond ((string-equal file "<stdin>")
1166 py-exception-buffer)
1167 ((and (consp py-exception-buffer)
1168 (string-equal file (car py-exception-buffer)))
1169 (cdr py-exception-buffer))
1170 ((py-safe (find-file-noselect file)))
1171 ;; could not figure out what file the exception
1172 ;; is pointing to, so prompt for it
1173 (t (find-file (read-file-name "Exception file: "
1174 nil
1175 file t))))))
1176 (pop-to-buffer buffer)
1177 (goto-line line)
1178 (message "Jumping to exception in file %s on line %d" file line)))
1179
1180(defun py-mouseto-exception (event)
1181 (interactive "e")
1182 (cond
1183 ((fboundp 'event-point)
1184 ;; XEmacs
1185 (let* ((point (event-point event))
1186 (buffer (event-buffer event))
1187 (e (and point buffer (extent-at point buffer 'py-exc-info)))
1188 (info (and e (extent-property e 'py-exc-info))))
1189 (message "Event point: %d, info: %s" point info)
1190 (and info
1191 (py-jump-to-exception (car info) (cdr info)))
1192 ))
1193 ;; Emacs -- Please port this!
1194 ))
1195
1196(defun py-goto-exception ()
1197 "Go to the line indicated by the traceback."
1198 (interactive)
1199 (let (file line)
1200 (save-excursion
1201 (beginning-of-line)
1202 (if (looking-at py-traceback-line-re)
1203 (setq file (match-string 1)
1204 line (string-to-int (match-string 2)))))
1205 (if (not file)
1206 (error "Not on a traceback line."))
1207 (py-jump-to-exception file line)))
1208
1209(defun py-find-next-exception (start buffer searchdir errwhere)
1210 ;; Go to start position in buffer, search in the specified
1211 ;; direction, and jump to the exception found. If at the end of the
1212 ;; exception, print error message
1213 (let (file line)
1214 (save-excursion
1215 (set-buffer buffer)
1216 (goto-char (py-point start))
1217 (if (funcall searchdir py-traceback-line-re nil t)
1218 (setq file (match-string 1)
1219 line (string-to-int (match-string 2)))))
1220 (if (and file line)
1221 (py-jump-to-exception file line)
1222 (error "%s of traceback" errwhere))))
1223
1224(defun py-down-exception (&optional bottom)
1225 "Go to the next line down in the traceback.
1226With optional \\[universal-argument], jump to the bottom (innermost)
1227exception in the exception stack."
1228 (interactive "P")
1229 (let* ((proc (get-process "Python"))
1230 (buffer (if proc "*Python*" py-output-buffer)))
1231 (if bottom
1232 (py-find-next-exception 'eob buffer 're-search-backward "Bottom")
1233 (py-find-next-exception 'eol buffer 're-search-forward "Bottom"))))
1234
1235(defun py-up-exception (&optional top)
1236 "Go to the previous line up in the traceback.
1237With optional \\[universal-argument], jump to the top (outermost)
1238exception in the exception stack."
1239 (interactive "P")
1240 (let* ((proc (get-process "Python"))
1241 (buffer (if proc "*Python*" py-output-buffer)))
1242 (if top
1243 (py-find-next-exception 'bob buffer 're-search-forward "Top")
1244 (py-find-next-exception 'boi buffer 're-search-backward "Top"))))
1245
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001246
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001247;; Electric deletion
1248(defun py-electric-backspace (arg)
1249 "Deletes preceding character or levels of indentation.
1250Deletion is performed by calling the function in `py-backspace-function'
Barry Warsawb0539931996-12-17 22:05:07 +00001251with a single argument (the number of characters to delete).
Barry Warsaw7ae77681994-12-12 20:38:05 +00001252
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001253If point is at the leftmost column, deletes the preceding newline.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001254
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001255Otherwise, if point is at the leftmost non-whitespace character of a
1256line that is neither a continuation line nor a non-indenting comment
1257line, or if point is at the end of a blank line, this command reduces
1258the indentation to match that of the line that opened the current
1259block of code. The line that opened the block is displayed in the
1260echo area to help you keep track of where you are. With numeric arg,
1261outdents that many blocks (but not past column zero).
1262
1263Otherwise the preceding character is deleted, converting a tab to
1264spaces if needed so that only a single column position is deleted.
1265Numeric argument deletes that many preceding characters."
Barry Warsaw03970731996-07-03 23:12:52 +00001266 (interactive "*p")
Barry Warsaw7ae77681994-12-12 20:38:05 +00001267 (if (or (/= (current-indentation) (current-column))
1268 (bolp)
1269 (py-continuation-line-p)
Barry Warsaw6e527d21996-08-01 15:57:48 +00001270 (not py-honor-comment-indentation)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001271 (looking-at "#[^ \t\n]")) ; non-indenting #
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001272 (funcall py-backspace-function arg)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001273 ;; else indent the same as the colon line that opened the block
Barry Warsaw7ae77681994-12-12 20:38:05 +00001274 ;; force non-blank so py-goto-block-up doesn't ignore it
1275 (insert-char ?* 1)
1276 (backward-char)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001277 (let ((base-indent 0) ; indentation of base line
1278 (base-text "") ; and text of base line
1279 (base-found-p nil))
Barry Warsaw03970731996-07-03 23:12:52 +00001280 (save-excursion
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001281 (while (< 0 arg)
Barry Warsaw03970731996-07-03 23:12:52 +00001282 (condition-case nil ; in case no enclosing block
1283 (progn
1284 (py-goto-block-up 'no-mark)
1285 (setq base-indent (current-indentation)
1286 base-text (py-suck-up-leading-text)
1287 base-found-p t))
1288 (error nil))
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001289 (setq arg (1- arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001290 (delete-char 1) ; toss the dummy character
1291 (delete-horizontal-space)
1292 (indent-to base-indent)
1293 (if base-found-p
1294 (message "Closes block: %s" base-text)))))
1295
Barry Warsawfc8a01f1995-03-09 16:07:29 +00001296
Barry Warsaw6d48c4a1997-11-04 19:21:50 +00001297(defun py-electric-delete (arg)
1298 "Deletes preceding or following character or levels of whitespace.
1299
1300The behavior of this function depends on the variable
1301`delete-key-deletes-forward'. If this variable is nil (or does not
1302exist, as in older Emacsen), then this function behaves identical to
1303\\[c-electric-backspace].
1304
1305If `delete-key-deletes-forward' is non-nil and is supported in your
1306Emacs, then deletion occurs in the forward direction, by calling the
1307function in `py-delete-function'."
1308 (interactive "*p")
1309 (if (and (boundp 'delete-key-deletes-forward)
1310 delete-key-deletes-forward)
1311 (funcall py-delete-function arg)
1312 ;; else
1313 (py-electric-backspace arg)))
1314
1315;; required for pending-del and delsel modes
1316(put 'py-electric-backspace 'delete-selection 'supersede) ;delsel
1317(put 'py-electric-backspace 'pending-delete 'supersede) ;pending-del
1318(put 'py-electric-delete 'delete-selection 'supersede) ;delsel
1319(put 'py-electric-delete 'pending-delete 'supersede) ;pending-del
1320
1321
1322
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001323(defun py-indent-line (&optional arg)
1324 "Fix the indentation of the current line according to Python rules.
1325With \\[universal-argument], ignore outdenting rules for block
1326closing statements (e.g. return, raise, break, continue, pass)
1327
1328This function is normally bound to `indent-line-function' so
1329\\[indent-for-tab-command] will call it."
1330 (interactive "P")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001331 (let* ((ci (current-indentation))
1332 (move-to-indentation-p (<= (current-column) ci))
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001333 (need (py-compute-indentation (not arg))))
Barry Warsaw4f009fb1995-03-14 20:53:08 +00001334 ;; see if we need to outdent
Barry Warsaw3874a3d1995-03-14 22:05:53 +00001335 (if (py-outdent-p)
Barry Warsaw0012c1e1995-03-14 16:32:55 +00001336 (setq need (- need py-indent-offset)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001337 (if (/= ci need)
1338 (save-excursion
1339 (beginning-of-line)
1340 (delete-horizontal-space)
1341 (indent-to need)))
1342 (if move-to-indentation-p (back-to-indentation))))
1343
1344(defun py-newline-and-indent ()
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001345 "Strives to act like the Emacs `newline-and-indent'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001346This is just `strives to' because correct indentation can't be computed
1347from scratch for Python code. In general, deletes the whitespace before
1348point, inserts a newline, and takes an educated guess as to how you want
1349the new line indented."
1350 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001351 (let ((ci (current-indentation)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001352 (if (< ci (current-column)) ; if point beyond indentation
1353 (newline-and-indent)
1354 ;; else try to act like newline-and-indent "normally" acts
1355 (beginning-of-line)
1356 (insert-char ?\n 1)
1357 (move-to-column ci))))
1358
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001359(defun py-compute-indentation (honor-block-close-p)
1360 ;; implements all the rules for indentation computation. when
1361 ;; honor-block-close-p is non-nil, statements such as return, raise,
1362 ;; break, continue, and pass force one level of outdenting.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001363 (save-excursion
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001364 (let* ((bod (py-point 'bod))
1365 (pps (parse-partial-sexp bod (point))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001366 (beginning-of-line)
1367 (cond
Barry Warsawa0ee8cd1997-11-26 01:04:44 +00001368 ;; are we inside a multi-line string or comment?
1369 ((or (and (nth 3 pps)
1370 (nth 3 (parse-partial-sexp bod (py-point 'boi))))
1371 (nth 4 pps))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001372 (save-excursion
1373 (if (not py-align-multiline-strings-p) 0
1374 ;; skip back over blank & non-indenting comment lines
1375 ;; note: will skip a blank or non-indenting comment line
1376 ;; that happens to be a continuation line too
1377 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move)
1378 (back-to-indentation)
1379 (current-column))))
1380 ;; are we on a continuation line?
1381 ((py-continuation-line-p)
1382 (let ((startpos (point))
1383 (open-bracket-pos (py-nesting-level))
Barry Warsawce60bc71996-08-01 18:17:14 +00001384 endpos searching found state)
Barry Warsaw095e9c61995-09-19 20:01:42 +00001385 (if open-bracket-pos
1386 (progn
1387 ;; align with first item in list; else a normal
1388 ;; indent beyond the line with the open bracket
1389 (goto-char (1+ open-bracket-pos)) ; just beyond bracket
1390 ;; is the first list item on the same line?
1391 (skip-chars-forward " \t")
1392 (if (null (memq (following-char) '(?\n ?# ?\\)))
1393 ; yes, so line up with it
1394 (current-column)
1395 ;; first list item on another line, or doesn't exist yet
1396 (forward-line 1)
1397 (while (and (< (point) startpos)
1398 (looking-at "[ \t]*[#\n\\\\]")) ; skip noise
1399 (forward-line 1))
1400 (if (< (point) startpos)
1401 ;; again mimic the first list item
1402 (current-indentation)
1403 ;; else they're about to enter the first item
1404 (goto-char open-bracket-pos)
1405 (+ (current-indentation) py-indent-offset))))
1406
1407 ;; else on backslash continuation line
1408 (forward-line -1)
1409 (if (py-continuation-line-p) ; on at least 3rd line in block
1410 (current-indentation) ; so just continue the pattern
1411 ;; else started on 2nd line in block, so indent more.
1412 ;; if base line is an assignment with a start on a RHS,
1413 ;; indent to 2 beyond the leftmost "="; else skip first
1414 ;; chunk of non-whitespace characters on base line, + 1 more
1415 ;; column
1416 (end-of-line)
1417 (setq endpos (point) searching t)
1418 (back-to-indentation)
1419 (setq startpos (point))
1420 ;; look at all "=" from left to right, stopping at first
1421 ;; one not nested in a list or string
1422 (while searching
1423 (skip-chars-forward "^=" endpos)
1424 (if (= (point) endpos)
1425 (setq searching nil)
1426 (forward-char 1)
1427 (setq state (parse-partial-sexp startpos (point)))
1428 (if (and (zerop (car state)) ; not in a bracket
1429 (null (nth 3 state))) ; & not in a string
1430 (progn
1431 (setq searching nil) ; done searching in any case
1432 (setq found
1433 (not (or
1434 (eq (following-char) ?=)
1435 (memq (char-after (- (point) 2))
1436 '(?< ?> ?!)))))))))
1437 (if (or (not found) ; not an assignment
1438 (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash>
1439 (progn
1440 (goto-char startpos)
1441 (skip-chars-forward "^ \t\n")))
1442 (1+ (current-column))))))
1443
1444 ;; not on a continuation line
Barry Warsawa7891711996-08-01 15:53:09 +00001445 ((bobp) (current-indentation))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001446
Barry Warsawa7891711996-08-01 15:53:09 +00001447 ;; Dfn: "Indenting comment line". A line containing only a
1448 ;; comment, but which is treated like a statement for
1449 ;; indentation calculation purposes. Such lines are only
1450 ;; treated specially by the mode; they are not treated
1451 ;; specially by the Python interpreter.
1452
1453 ;; The rules for indenting comment lines are a line where:
1454 ;; - the first non-whitespace character is `#', and
1455 ;; - the character following the `#' is whitespace, and
1456 ;; - the line is outdented with respect to (i.e. to the left
1457 ;; of) the indentation of the preceding non-blank line.
1458
1459 ;; The first non-blank line following an indenting comment
1460 ;; line is given the same amount of indentation as the
1461 ;; indenting comment line.
1462
1463 ;; All other comment-only lines are ignored for indentation
1464 ;; purposes.
1465
1466 ;; Are we looking at a comment-only line which is *not* an
1467 ;; indenting comment line? If so, we assume that its been
1468 ;; placed at the desired indentation, so leave it alone.
1469 ;; Indenting comment lines are aligned as statements down
1470 ;; below.
1471 ((and (looking-at "[ \t]*#[^ \t\n]")
1472 ;; NOTE: this test will not be performed in older Emacsen
1473 (fboundp 'forward-comment)
1474 (<= (current-indentation)
1475 (save-excursion
1476 (forward-comment (- (point-max)))
1477 (current-indentation))))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001478 (current-indentation))
1479
1480 ;; else indentation based on that of the statement that
1481 ;; precedes us; use the first line of that statement to
1482 ;; establish the base, in case the user forced a non-std
1483 ;; indentation for the continuation lines (if any)
1484 (t
Barry Warsawc01c5c81995-09-14 18:49:11 +00001485 ;; skip back over blank & non-indenting comment lines note:
1486 ;; will skip a blank or non-indenting comment line that
Barry Warsawfd0fb381996-03-04 17:15:40 +00001487 ;; happens to be a continuation line too. use fast Emacs 19
1488 ;; function if it's there.
Barry Warsaw6d627751996-03-06 18:41:38 +00001489 (if (and (eq py-honor-comment-indentation nil)
Barry Warsaw33d6ec01996-03-05 16:28:07 +00001490 (fboundp 'forward-comment))
Barry Warsawfd0fb381996-03-04 17:15:40 +00001491 (forward-comment (- (point-max)))
Barry Warsaw6d627751996-03-06 18:41:38 +00001492 (let (done)
1493 (while (not done)
1494 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)"
1495 nil 'move)
1496 (setq done (or (eq py-honor-comment-indentation t)
1497 (bobp)
1498 (/= (following-char) ?#)
1499 (not (zerop (current-column)))))
1500 )))
Barry Warsaw095e9c61995-09-19 20:01:42 +00001501 ;; if we landed inside a string, go to the beginning of that
1502 ;; string. this handles triple quoted, multi-line spanning
1503 ;; strings.
1504 (py-goto-initial-line)
Barry Warsawf831d811996-07-31 20:42:59 +00001505 (+ (current-indentation)
1506 (if (py-statement-opens-block-p)
1507 py-indent-offset
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001508 (if (and honor-block-close-p (py-statement-closes-block-p))
Barry Warsawf831d811996-07-31 20:42:59 +00001509 (- py-indent-offset)
1510 0)))
1511 )))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001512
1513(defun py-guess-indent-offset (&optional global)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001514 "Guess a good value for, and change, `py-indent-offset'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001515By default (without a prefix arg), makes a buffer-local copy of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001516`py-indent-offset' with the new value. This will not affect any other
Barry Warsaw7ae77681994-12-12 20:38:05 +00001517Python buffers. With a prefix arg, changes the global value of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001518`py-indent-offset'. This affects all Python buffers (that don't have
Barry Warsaw7ae77681994-12-12 20:38:05 +00001519their own buffer-local copy), both those currently existing and those
1520created later in the Emacs session.
1521
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001522Some people use a different value for `py-indent-offset' than you use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001523There's no excuse for such foolishness, but sometimes you have to deal
1524with their ugly code anyway. This function examines the file and sets
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001525`py-indent-offset' to what it thinks it was when they created the
1526mess.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001527
1528Specifically, it searches forward from the statement containing point,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001529looking for a line that opens a block of code. `py-indent-offset' is
1530set to the difference in indentation between that line and the Python
Barry Warsaw7ae77681994-12-12 20:38:05 +00001531statement following it. If the search doesn't succeed going forward,
1532it's tried again going backward."
1533 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001534 (let (new-value
1535 (start (point))
1536 restart
1537 (found nil)
1538 colon-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001539 (py-goto-initial-line)
1540 (while (not (or found (eobp)))
1541 (if (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1542 (progn
1543 (setq restart (point))
1544 (py-goto-initial-line)
1545 (if (py-statement-opens-block-p)
1546 (setq found t)
1547 (goto-char restart)))))
1548 (if found
1549 ()
1550 (goto-char start)
1551 (py-goto-initial-line)
1552 (while (not (or found (bobp)))
1553 (setq found
1554 (and
1555 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1556 (or (py-goto-initial-line) t) ; always true -- side effect
1557 (py-statement-opens-block-p)))))
1558 (setq colon-indent (current-indentation)
1559 found (and found (zerop (py-next-statement 1)))
1560 new-value (- (current-indentation) colon-indent))
1561 (goto-char start)
1562 (if found
1563 (progn
1564 (funcall (if global 'kill-local-variable 'make-local-variable)
1565 'py-indent-offset)
1566 (setq py-indent-offset new-value)
1567 (message "%s value of py-indent-offset set to %d"
1568 (if global "Global" "Local")
1569 py-indent-offset))
1570 (error "Sorry, couldn't guess a value for py-indent-offset"))))
1571
1572(defun py-shift-region (start end count)
1573 (save-excursion
1574 (goto-char end) (beginning-of-line) (setq end (point))
1575 (goto-char start) (beginning-of-line) (setq start (point))
1576 (indent-rigidly start end count)))
1577
1578(defun py-shift-region-left (start end &optional count)
1579 "Shift region of Python code to the left.
1580The lines from the line containing the start of the current region up
1581to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001582shifted to the left, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001583
1584If a prefix argument is given, the region is instead shifted by that
Barry Warsawdea4a291996-07-03 22:59:12 +00001585many columns. With no active region, outdent only the current line.
1586You cannot outdent the region if any line is already at column zero."
1587 (interactive
1588 (let ((p (point))
1589 (m (mark))
1590 (arg current-prefix-arg))
1591 (if m
1592 (list (min p m) (max p m) arg)
1593 (list p (save-excursion (forward-line 1) (point)) arg))))
1594 ;; if any line is at column zero, don't shift the region
1595 (save-excursion
1596 (goto-char start)
1597 (while (< (point) end)
1598 (back-to-indentation)
Barry Warsaw71e315b1996-07-23 15:03:16 +00001599 (if (and (zerop (current-column))
1600 (not (looking-at "\\s *$")))
Barry Warsawdea4a291996-07-03 22:59:12 +00001601 (error "Region is at left edge."))
1602 (forward-line 1)))
1603 (py-shift-region start end (- (prefix-numeric-value
1604 (or count py-indent-offset))))
1605 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001606
1607(defun py-shift-region-right (start end &optional count)
1608 "Shift region of Python code to the right.
1609The lines from the line containing the start of the current region up
1610to (but not including) the line containing the end of the region are
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001611shifted to the right, by `py-indent-offset' columns.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001612
1613If a prefix argument is given, the region is instead shifted by that
Barry Warsawdea4a291996-07-03 22:59:12 +00001614many columns. With no active region, indent only the current line."
1615 (interactive
1616 (let ((p (point))
1617 (m (mark))
1618 (arg current-prefix-arg))
1619 (if m
1620 (list (min p m) (max p m) arg)
1621 (list p (save-excursion (forward-line 1) (point)) arg))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001622 (py-shift-region start end (prefix-numeric-value
Barry Warsawdea4a291996-07-03 22:59:12 +00001623 (or count py-indent-offset)))
1624 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001625
1626(defun py-indent-region (start end &optional indent-offset)
1627 "Reindent a region of Python code.
Barry Warsaw867a32a1996-03-07 18:30:26 +00001628
Barry Warsaw7ae77681994-12-12 20:38:05 +00001629The lines from the line containing the start of the current region up
1630to (but not including) the line containing the end of the region are
1631reindented. If the first line of the region has a non-whitespace
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001632character in the first column, the first line is left alone and the
1633rest of the region is reindented with respect to it. Else the entire
Barry Warsaw867a32a1996-03-07 18:30:26 +00001634region is reindented with respect to the (closest code or indenting
1635comment) statement immediately preceding the region.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001636
1637This is useful when code blocks are moved or yanked, when enclosing
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001638control structures are introduced or removed, or to reformat code
1639using a new value for the indentation offset.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001640
1641If a numeric prefix argument is given, it will be used as the value of
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001642the indentation offset. Else the value of `py-indent-offset' will be
Barry Warsaw7ae77681994-12-12 20:38:05 +00001643used.
1644
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001645Warning: The region must be consistently indented before this function
Barry Warsaw7ae77681994-12-12 20:38:05 +00001646is called! This function does not compute proper indentation from
1647scratch (that's impossible in Python), it merely adjusts the existing
1648indentation to be correct in context.
1649
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001650Warning: This function really has no idea what to do with
1651non-indenting comment lines, and shifts them as if they were indenting
1652comment lines. Fixing this appears to require telepathy.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001653
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001654Special cases: whitespace is deleted from blank lines; continuation
1655lines are shifted by the same amount their initial line was shifted,
1656in order to preserve their relative indentation with respect to their
Barry Warsaw7ae77681994-12-12 20:38:05 +00001657initial line; and comment lines beginning in column 1 are ignored."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001658 (interactive "*r\nP") ; region; raw prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00001659 (save-excursion
1660 (goto-char end) (beginning-of-line) (setq end (point-marker))
1661 (goto-char start) (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001662 (let ((py-indent-offset (prefix-numeric-value
1663 (or indent-offset py-indent-offset)))
1664 (indents '(-1)) ; stack of active indent levels
1665 (target-column 0) ; column to which to indent
1666 (base-shifted-by 0) ; amount last base line was shifted
1667 (indent-base (if (looking-at "[ \t\n]")
Barry Warsaw7cb505c1996-10-23 20:44:59 +00001668 (py-compute-indentation t)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001669 0))
1670 ci)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001671 (while (< (point) end)
1672 (setq ci (current-indentation))
1673 ;; figure out appropriate target column
1674 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001675 ((or (eq (following-char) ?#) ; comment in column 1
1676 (looking-at "[ \t]*$")) ; entirely blank
1677 (setq target-column 0))
1678 ((py-continuation-line-p) ; shift relative to base line
1679 (setq target-column (+ ci base-shifted-by)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001680 (t ; new base line
1681 (if (> ci (car indents)) ; going deeper; push it
1682 (setq indents (cons ci indents))
1683 ;; else we should have seen this indent before
1684 (setq indents (memq ci indents)) ; pop deeper indents
1685 (if (null indents)
1686 (error "Bad indentation in region, at line %d"
1687 (save-restriction
1688 (widen)
1689 (1+ (count-lines 1 (point)))))))
1690 (setq target-column (+ indent-base
1691 (* py-indent-offset
1692 (- (length indents) 2))))
1693 (setq base-shifted-by (- target-column ci))))
1694 ;; shift as needed
1695 (if (/= ci target-column)
1696 (progn
1697 (delete-horizontal-space)
1698 (indent-to target-column)))
1699 (forward-line 1))))
1700 (set-marker end nil))
1701
Barry Warsawa7891711996-08-01 15:53:09 +00001702(defun py-comment-region (beg end &optional arg)
1703 "Like `comment-region' but uses double hash (`#') comment starter."
1704 (interactive "r\nP")
Barry Warsaw3fcaf611996-08-01 20:11:51 +00001705 (let ((comment-start py-block-comment-prefix))
Barry Warsawa7891711996-08-01 15:53:09 +00001706 (comment-region beg end arg)))
1707
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001708
1709;; Functions for moving point
Barry Warsaw7ae77681994-12-12 20:38:05 +00001710(defun py-previous-statement (count)
1711 "Go to the start of previous Python statement.
1712If the statement at point is the i'th Python statement, goes to the
1713start of statement i-COUNT. If there is no such statement, goes to the
1714first statement. Returns count of statements left to move.
1715`Statements' do not include blank, comment, or continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001716 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00001717 (if (< count 0) (py-next-statement (- count))
1718 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001719 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001720 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001721 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00001722 (> count 0)
1723 (zerop (forward-line -1))
1724 (py-goto-statement-at-or-above))
1725 (setq count (1- count)))
1726 (if (> count 0) (goto-char start)))
1727 count))
1728
1729(defun py-next-statement (count)
1730 "Go to the start of next Python statement.
1731If the statement at point is the i'th Python statement, goes to the
1732start of statement i+COUNT. If there is no such statement, goes to the
1733last statement. Returns count of statements left to move. `Statements'
1734do not include blank, comment, or continuation lines."
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001735 (interactive "p") ; numeric prefix arg
Barry Warsaw7ae77681994-12-12 20:38:05 +00001736 (if (< count 0) (py-previous-statement (- count))
1737 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001738 (let (start)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001739 (while (and
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001740 (setq start (point)) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00001741 (> count 0)
1742 (py-goto-statement-below))
1743 (setq count (1- count)))
1744 (if (> count 0) (goto-char start)))
1745 count))
1746
1747(defun py-goto-block-up (&optional nomark)
1748 "Move up to start of current block.
1749Go to the statement that starts the smallest enclosing block; roughly
1750speaking, this will be the closest preceding statement that ends with a
1751colon and is indented less than the statement you started on. If
1752successful, also sets the mark to the starting point.
1753
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001754`\\[py-mark-block]' can be used afterward to mark the whole code
1755block, if desired.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001756
1757If called from a program, the mark will not be set if optional argument
1758NOMARK is not nil."
1759 (interactive)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001760 (let ((start (point))
1761 (found nil)
1762 initial-indent)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001763 (py-goto-initial-line)
1764 ;; if on blank or non-indenting comment line, use the preceding stmt
1765 (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
1766 (progn
1767 (py-goto-statement-at-or-above)
1768 (setq found (py-statement-opens-block-p))))
1769 ;; search back for colon line indented less
1770 (setq initial-indent (current-indentation))
1771 (if (zerop initial-indent)
1772 ;; force fast exit
1773 (goto-char (point-min)))
1774 (while (not (or found (bobp)))
1775 (setq found
1776 (and
1777 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
1778 (or (py-goto-initial-line) t) ; always true -- side effect
1779 (< (current-indentation) initial-indent)
1780 (py-statement-opens-block-p))))
1781 (if found
1782 (progn
1783 (or nomark (push-mark start))
1784 (back-to-indentation))
1785 (goto-char start)
1786 (error "Enclosing block not found"))))
1787
1788(defun beginning-of-python-def-or-class (&optional class)
1789 "Move point to start of def (or class, with prefix arg).
1790
1791Searches back for the closest preceding `def'. If you supply a prefix
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001792arg, looks for a `class' instead. The docs assume the `def' case;
1793just substitute `class' for `def' for the other case.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001794
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001795If point is in a def statement already, and after the `d', simply
1796moves point to the start of the statement.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001797
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001798Else (point is not in a def statement, or at or before the `d' of a
1799def statement), searches for the closest preceding def statement, and
1800leaves point at its start. If no such statement can be found, leaves
1801point at the start of the buffer.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001802
1803Returns t iff a def statement is found by these rules.
1804
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001805Note that doing this command repeatedly will take you closer to the
1806start of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001807
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001808If you want to mark the current def/class, see
Barry Warsaw2518c671997-11-05 00:51:08 +00001809`\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001810 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001811 (let ((at-or-before-p (<= (current-column) (current-indentation)))
1812 (start-of-line (progn (beginning-of-line) (point)))
1813 (start-of-stmt (progn (py-goto-initial-line) (point))))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001814 (if (or (/= start-of-stmt start-of-line)
1815 (not at-or-before-p))
1816 (end-of-line)) ; OK to match on this line
1817 (re-search-backward (if class "^[ \t]*class\\>" "^[ \t]*def\\>")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001818 nil 'move)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001819
1820(defun end-of-python-def-or-class (&optional class)
1821 "Move point beyond end of def (or class, with prefix arg) body.
1822
1823By default, looks for an appropriate `def'. If you supply a prefix arg,
1824looks for a `class' instead. The docs assume the `def' case; just
1825substitute `class' for `def' for the other case.
1826
1827If point is in a def statement already, this is the def we use.
1828
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001829Else if the def found by `\\[beginning-of-python-def-or-class]'
1830contains the statement you started on, that's the def we use.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001831
1832Else we search forward for the closest following def, and use that.
1833
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001834If a def can be found by these rules, point is moved to the start of
1835the line immediately following the def block, and the position of the
1836start of the def is returned.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001837
1838Else point is moved to the end of the buffer, and nil is returned.
1839
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001840Note that doing this command repeatedly will take you closer to the
1841end of the buffer each time.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001842
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001843If you want to mark the current def/class, see
Barry Warsaw2518c671997-11-05 00:51:08 +00001844`\\[py-mark-def-or-class]'."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001845 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001846 (let ((start (progn (py-goto-initial-line) (point)))
1847 (which (if class "class" "def"))
1848 (state 'not-found))
Barry Warsaw7ae77681994-12-12 20:38:05 +00001849 ;; move point to start of appropriate def/class
1850 (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one
1851 (setq state 'at-beginning)
1852 ;; else see if beginning-of-python-def-or-class hits container
1853 (if (and (beginning-of-python-def-or-class class)
1854 (progn (py-goto-beyond-block)
1855 (> (point) start)))
1856 (setq state 'at-end)
1857 ;; else search forward
1858 (goto-char start)
1859 (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move)
1860 (progn (setq state 'at-beginning)
1861 (beginning-of-line)))))
1862 (cond
1863 ((eq state 'at-beginning) (py-goto-beyond-block) t)
1864 ((eq state 'at-end) t)
1865 ((eq state 'not-found) nil)
1866 (t (error "internal error in end-of-python-def-or-class")))))
1867
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001868
1869;; Functions for marking regions
Barry Warsaw7ae77681994-12-12 20:38:05 +00001870(defun py-mark-block (&optional extend just-move)
1871 "Mark following block of lines. With prefix arg, mark structure.
1872Easier to use than explain. It sets the region to an `interesting'
1873block of succeeding lines. If point is on a blank line, it goes down to
1874the next non-blank line. That will be the start of the region. The end
1875of the region depends on the kind of line at the start:
1876
1877 - If a comment, the region will include all succeeding comment lines up
1878 to (but not including) the next non-comment line (if any).
1879
1880 - Else if a prefix arg is given, and the line begins one of these
1881 structures:
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001882
1883 if elif else try except finally for while def class
1884
Barry Warsaw7ae77681994-12-12 20:38:05 +00001885 the region will be set to the body of the structure, including
1886 following blocks that `belong' to it, but excluding trailing blank
1887 and comment lines. E.g., if on a `try' statement, the `try' block
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001888 and all (if any) of the following `except' and `finally' blocks
1889 that belong to the `try' structure will be in the region. Ditto
1890 for if/elif/else, for/else and while/else structures, and (a bit
1891 degenerate, since they're always one-block structures) def and
1892 class blocks.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001893
1894 - Else if no prefix argument is given, and the line begins a Python
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001895 block (see list above), and the block is not a `one-liner' (i.e.,
1896 the statement ends with a colon, not with code), the region will
1897 include all succeeding lines up to (but not including) the next
1898 code statement (if any) that's indented no more than the starting
1899 line, except that trailing blank and comment lines are excluded.
1900 E.g., if the starting line begins a multi-statement `def'
1901 structure, the region will be set to the full function definition,
1902 but without any trailing `noise' lines.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001903
1904 - Else the region will include all succeeding lines up to (but not
1905 including) the next blank line, or code or indenting-comment line
1906 indented strictly less than the starting line. Trailing indenting
1907 comment lines are included in this case, but not trailing blank
1908 lines.
1909
1910A msg identifying the location of the mark is displayed in the echo
1911area; or do `\\[exchange-point-and-mark]' to flip down to the end.
1912
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001913If called from a program, optional argument EXTEND plays the role of
1914the prefix arg, and if optional argument JUST-MOVE is not nil, just
1915moves to the end of the block (& does not set mark or display a msg)."
Barry Warsaw7ae77681994-12-12 20:38:05 +00001916 (interactive "P") ; raw prefix arg
1917 (py-goto-initial-line)
1918 ;; skip over blank lines
1919 (while (and
1920 (looking-at "[ \t]*$") ; while blank line
1921 (not (eobp))) ; & somewhere to go
1922 (forward-line 1))
1923 (if (eobp)
1924 (error "Hit end of buffer without finding a non-blank stmt"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001925 (let ((initial-pos (point))
1926 (initial-indent (current-indentation))
1927 last-pos ; position of last stmt in region
1928 (followers
1929 '((if elif else) (elif elif else) (else)
1930 (try except finally) (except except) (finally)
1931 (for else) (while else)
1932 (def) (class) ) )
1933 first-symbol next-symbol)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001934
1935 (cond
1936 ;; if comment line, suck up the following comment lines
1937 ((looking-at "[ \t]*#")
1938 (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment
1939 (re-search-backward "^[ \t]*#") ; and back to last comment in block
1940 (setq last-pos (point)))
1941
1942 ;; else if line is a block line and EXTEND given, suck up
1943 ;; the whole structure
1944 ((and extend
1945 (setq first-symbol (py-suck-up-first-keyword) )
1946 (assq first-symbol followers))
1947 (while (and
1948 (or (py-goto-beyond-block) t) ; side effect
1949 (forward-line -1) ; side effect
1950 (setq last-pos (point)) ; side effect
1951 (py-goto-statement-below)
1952 (= (current-indentation) initial-indent)
1953 (setq next-symbol (py-suck-up-first-keyword))
1954 (memq next-symbol (cdr (assq first-symbol followers))))
1955 (setq first-symbol next-symbol)))
1956
1957 ;; else if line *opens* a block, search for next stmt indented <=
1958 ((py-statement-opens-block-p)
1959 (while (and
1960 (setq last-pos (point)) ; always true -- side effect
1961 (py-goto-statement-below)
1962 (> (current-indentation) initial-indent))
1963 nil))
1964
1965 ;; else plain code line; stop at next blank line, or stmt or
1966 ;; indenting comment line indented <
1967 (t
1968 (while (and
1969 (setq last-pos (point)) ; always true -- side effect
1970 (or (py-goto-beyond-final-line) t)
1971 (not (looking-at "[ \t]*$")) ; stop at blank line
1972 (or
1973 (>= (current-indentation) initial-indent)
1974 (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting #
1975 nil)))
1976
1977 ;; skip to end of last stmt
1978 (goto-char last-pos)
1979 (py-goto-beyond-final-line)
1980
1981 ;; set mark & display
1982 (if just-move
1983 () ; just return
1984 (push-mark (point) 'no-msg)
1985 (forward-line -1)
1986 (message "Mark set after: %s" (py-suck-up-leading-text))
1987 (goto-char initial-pos))))
1988
Barry Warsaw2518c671997-11-05 00:51:08 +00001989(defun py-mark-def-or-class (&optional class)
Barry Warsaw7ae77681994-12-12 20:38:05 +00001990 "Set region to body of def (or class, with prefix arg) enclosing point.
1991Pushes the current mark, then point, on the mark ring (all language
1992modes do this, but although it's handy it's never documented ...).
1993
1994In most Emacs language modes, this function bears at least a
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001995hallucinogenic resemblance to `\\[end-of-python-def-or-class]' and
1996`\\[beginning-of-python-def-or-class]'.
Barry Warsaw7ae77681994-12-12 20:38:05 +00001997
1998And in earlier versions of Python mode, all 3 were tightly connected.
Barry Warsaw7b0f5681995-03-08 21:33:04 +00001999Turned out that was more confusing than useful: the `goto start' and
2000`goto end' commands are usually used to search through a file, and
2001people expect them to act a lot like `search backward' and `search
2002forward' string-search commands. But because Python `def' and `class'
2003can nest to arbitrary levels, finding the smallest def containing
2004point cannot be done via a simple backward search: the def containing
2005point may not be the closest preceding def, or even the closest
2006preceding def that's indented less. The fancy algorithm required is
2007appropriate for the usual uses of this `mark' command, but not for the
2008`goto' variations.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002009
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002010So the def marked by this command may not be the one either of the
2011`goto' commands find: If point is on a blank or non-indenting comment
2012line, moves back to start of the closest preceding code statement or
2013indenting comment line. If this is a `def' statement, that's the def
2014we use. Else searches for the smallest enclosing `def' block and uses
2015that. Else signals an error.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002016
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002017When an enclosing def is found: The mark is left immediately beyond
2018the last line of the def block. Point is left at the start of the
2019def, except that: if the def is preceded by a number of comment lines
2020followed by (at most) one optional blank line, point is left at the
2021start of the comments; else if the def is preceded by a blank line,
2022point is left at its start.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002023
2024The intent is to mark the containing def/class and its associated
2025documentation, to make moving and duplicating functions and classes
2026pleasant."
2027 (interactive "P") ; raw prefix arg
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002028 (let ((start (point))
2029 (which (if class "class" "def")))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002030 (push-mark start)
2031 (if (not (py-go-up-tree-to-keyword which))
2032 (progn (goto-char start)
2033 (error "Enclosing %s not found" which))
2034 ;; else enclosing def/class found
2035 (setq start (point))
2036 (py-goto-beyond-block)
2037 (push-mark (point))
2038 (goto-char start)
2039 (if (zerop (forward-line -1)) ; if there is a preceding line
2040 (progn
2041 (if (looking-at "[ \t]*$") ; it's blank
2042 (setq start (point)) ; so reset start point
2043 (goto-char start)) ; else try again
2044 (if (zerop (forward-line -1))
2045 (if (looking-at "[ \t]*#") ; a comment
2046 ;; look back for non-comment line
2047 ;; tricky: note that the regexp matches a blank
2048 ;; line, cuz \n is in the 2nd character class
2049 (and
2050 (re-search-backward "^[ \t]*[^ \t#]" nil 'move)
2051 (forward-line 1))
2052 ;; no comment, so go back
Barry Warsaw4da6bd51997-11-26 06:00:26 +00002053 (goto-char start)))))))
2054 (exchange-point-and-mark)
2055 (py-keep-region-active))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002056
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002057;; ripped from cc-mode
2058(defun py-forward-into-nomenclature (&optional arg)
2059 "Move forward to end of a nomenclature section or word.
2060With arg, to it arg times.
2061
2062A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2063 (interactive "p")
2064 (let ((case-fold-search nil))
2065 (if (> arg 0)
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002066 (re-search-forward
2067 "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)"
2068 (point-max) t arg)
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002069 (while (and (< arg 0)
2070 (re-search-backward
Barry Warsawc5a8cbd1996-08-05 21:53:02 +00002071 "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+"
Barry Warsaw9e5a9c81996-07-24 18:26:53 +00002072 (point-min) 0))
2073 (forward-char 1)
2074 (setq arg (1+ arg)))))
2075 (py-keep-region-active))
2076
2077(defun py-backward-into-nomenclature (&optional arg)
2078 "Move backward to beginning of a nomenclature section or word.
2079With optional ARG, move that many times. If ARG is negative, move
2080forward.
2081
2082A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
2083 (interactive "p")
2084 (py-forward-into-nomenclature (- arg))
2085 (py-keep-region-active))
2086
2087
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002088
2089;; Documentation functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002090
2091;; dump the long form of the mode blurb; does the usual doc escapes,
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002092;; plus lines of the form ^[vc]:name$ to suck variable & command docs
2093;; out of the right places, along with the keys they're on & current
2094;; values
Barry Warsaw7ae77681994-12-12 20:38:05 +00002095(defun py-dump-help-string (str)
2096 (with-output-to-temp-buffer "*Help*"
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002097 (let ((locals (buffer-local-variables))
2098 funckind funcname func funcdoc
2099 (start 0) mstart end
2100 keys )
Barry Warsaw7ae77681994-12-12 20:38:05 +00002101 (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start)
2102 (setq mstart (match-beginning 0) end (match-end 0)
2103 funckind (substring str (match-beginning 1) (match-end 1))
2104 funcname (substring str (match-beginning 2) (match-end 2))
2105 func (intern funcname))
2106 (princ (substitute-command-keys (substring str start mstart)))
2107 (cond
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002108 ((equal funckind "c") ; command
2109 (setq funcdoc (documentation func)
2110 keys (concat
2111 "Key(s): "
2112 (mapconcat 'key-description
2113 (where-is-internal func py-mode-map)
2114 ", "))))
2115 ((equal funckind "v") ; variable
Barry Warsaw604cefa1996-09-03 18:17:04 +00002116 (setq funcdoc (documentation-property func 'variable-documentation)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002117 keys (if (assq func locals)
2118 (concat
2119 "Local/Global values: "
2120 (prin1-to-string (symbol-value func))
2121 " / "
2122 (prin1-to-string (default-value func)))
2123 (concat
2124 "Value: "
2125 (prin1-to-string (symbol-value func))))))
2126 (t ; unexpected
2127 (error "Error in py-dump-help-string, tag `%s'" funckind)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002128 (princ (format "\n-> %s:\t%s\t%s\n\n"
2129 (if (equal funckind "c") "Command" "Variable")
2130 funcname keys))
2131 (princ funcdoc)
2132 (terpri)
2133 (setq start end))
2134 (princ (substitute-command-keys (substring str start))))
2135 (print-help-return-message)))
2136
2137(defun py-describe-mode ()
2138 "Dump long form of Python-mode docs."
2139 (interactive)
2140 (py-dump-help-string "Major mode for editing Python files.
2141Knows about Python indentation, tokens, comments and continuation lines.
2142Paragraphs are separated by blank lines only.
2143
2144Major sections below begin with the string `@'; specific function and
2145variable docs begin with `->'.
2146
2147@EXECUTING PYTHON CODE
2148
2149\\[py-execute-buffer]\tsends the entire buffer to the Python interpreter
2150\\[py-execute-region]\tsends the current region
2151\\[py-shell]\tstarts a Python interpreter window; this will be used by
2152\tsubsequent \\[py-execute-buffer] or \\[py-execute-region] commands
2153%c:py-execute-buffer
2154%c:py-execute-region
2155%c:py-shell
2156
2157@VARIABLES
2158
2159py-indent-offset\tindentation increment
Barry Warsaw42f707f1996-07-29 21:05:05 +00002160py-block-comment-prefix\tcomment string used by comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002161
2162py-python-command\tshell command to invoke Python interpreter
2163py-scroll-process-buffer\talways scroll Python process buffer
2164py-temp-directory\tdirectory used for temp files (if needed)
2165
2166py-beep-if-tab-change\tring the bell if tab-width is changed
2167%v:py-indent-offset
2168%v:py-block-comment-prefix
2169%v:py-python-command
2170%v:py-scroll-process-buffer
2171%v:py-temp-directory
2172%v:py-beep-if-tab-change
2173
2174@KINDS OF LINES
2175
2176Each physical line in the file is either a `continuation line' (the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002177preceding line ends with a backslash that's not part of a comment, or
2178the paren/bracket/brace nesting level at the start of the line is
2179non-zero, or both) or an `initial line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002180
2181An initial line is in turn a `blank line' (contains nothing except
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002182possibly blanks or tabs), a `comment line' (leftmost non-blank
2183character is `#'), or a `code line' (everything else).
Barry Warsaw7ae77681994-12-12 20:38:05 +00002184
2185Comment Lines
2186
2187Although all comment lines are treated alike by Python, Python mode
2188recognizes two kinds that act differently with respect to indentation.
2189
2190An `indenting comment line' is a comment line with a blank, tab or
2191nothing after the initial `#'. The indentation commands (see below)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002192treat these exactly as if they were code lines: a line following an
Barry Warsaw7ae77681994-12-12 20:38:05 +00002193indenting comment line will be indented like the comment line. All
2194other comment lines (those with a non-whitespace character immediately
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002195following the initial `#') are `non-indenting comment lines', and
2196their indentation is ignored by the indentation commands.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002197
2198Indenting comment lines are by far the usual case, and should be used
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002199whenever possible. Non-indenting comment lines are useful in cases
2200like these:
Barry Warsaw7ae77681994-12-12 20:38:05 +00002201
2202\ta = b # a very wordy single-line comment that ends up being
2203\t #... continued onto another line
2204
2205\tif a == b:
2206##\t\tprint 'panic!' # old code we've `commented out'
2207\t\treturn a
2208
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002209Since the `#...' and `##' comment lines have a non-whitespace
2210character following the initial `#', Python mode ignores them when
2211computing the proper indentation for the next line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002212
2213Continuation Lines and Statements
2214
2215The Python-mode commands generally work on statements instead of on
2216individual lines, where a `statement' is a comment or blank line, or a
2217code line and all of its following continuation lines (if any)
2218considered as a single logical unit. The commands in this mode
2219generally (when it makes sense) automatically move to the start of the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002220statement containing point, even if point happens to be in the middle
2221of some continuation line.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002222
2223
2224@INDENTATION
2225
2226Primarily for entering new code:
2227\t\\[indent-for-tab-command]\t indent line appropriately
2228\t\\[py-newline-and-indent]\t insert newline, then indent
2229\t\\[py-delete-char]\t reduce indentation, or delete single character
2230
2231Primarily for reindenting existing code:
2232\t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally
2233\t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally
2234
2235\t\\[py-indent-region]\t reindent region to match its context
2236\t\\[py-shift-region-left]\t shift region left by py-indent-offset
2237\t\\[py-shift-region-right]\t shift region right by py-indent-offset
2238
2239Unlike most programming languages, Python uses indentation, and only
2240indentation, to specify block structure. Hence the indentation supplied
2241automatically by Python-mode is just an educated guess: only you know
2242the block structure you intend, so only you can supply correct
2243indentation.
2244
2245The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on
2246the indentation of preceding statements. E.g., assuming
2247py-indent-offset is 4, after you enter
2248\tif a > 0: \\[py-newline-and-indent]
2249the cursor will be moved to the position of the `_' (_ is not a
2250character in the file, it's just used here to indicate the location of
2251the cursor):
2252\tif a > 0:
2253\t _
2254If you then enter `c = d' \\[py-newline-and-indent], the cursor will move
2255to
2256\tif a > 0:
2257\t c = d
2258\t _
2259Python-mode cannot know whether that's what you intended, or whether
2260\tif a > 0:
2261\t c = d
2262\t_
2263was your intent. In general, Python-mode either reproduces the
2264indentation of the (closest code or indenting-comment) preceding
2265statement, or adds an extra py-indent-offset blanks if the preceding
2266statement has `:' as its last significant (non-whitespace and non-
2267comment) character. If the suggested indentation is too much, use
2268\\[py-delete-char] to reduce it.
2269
2270Continuation lines are given extra indentation. If you don't like the
2271suggested indentation, change it to something you do like, and Python-
2272mode will strive to indent later lines of the statement in the same way.
2273
2274If a line is a continuation line by virtue of being in an unclosed
2275paren/bracket/brace structure (`list', for short), the suggested
2276indentation depends on whether the current line contains the first item
2277in the list. If it does, it's indented py-indent-offset columns beyond
2278the indentation of the line containing the open bracket. If you don't
2279like that, change it by hand. The remaining items in the list will mimic
2280whatever indentation you give to the first item.
2281
2282If a line is a continuation line because the line preceding it ends with
2283a backslash, the third and following lines of the statement inherit their
2284indentation from the line preceding them. The indentation of the second
2285line in the statement depends on the form of the first (base) line: if
2286the base line is an assignment statement with anything more interesting
2287than the backslash following the leftmost assigning `=', the second line
2288is indented two columns beyond that `='. Else it's indented to two
2289columns beyond the leftmost solid chunk of non-whitespace characters on
2290the base line.
2291
2292Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command]
2293repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block
2294structure you intend.
2295%c:indent-for-tab-command
2296%c:py-newline-and-indent
2297%c:py-delete-char
2298
2299
2300The next function may be handy when editing code you didn't write:
2301%c:py-guess-indent-offset
2302
2303
2304The remaining `indent' functions apply to a region of Python code. They
2305assume the block structure (equals indentation, in Python) of the region
2306is correct, and alter the indentation in various ways while preserving
2307the block structure:
2308%c:py-indent-region
2309%c:py-shift-region-left
2310%c:py-shift-region-right
2311
2312@MARKING & MANIPULATING REGIONS OF CODE
2313
2314\\[py-mark-block]\t mark block of lines
Barry Warsaw2518c671997-11-05 00:51:08 +00002315\\[py-mark-def-or-class]\t mark smallest enclosing def
2316\\[universal-argument] \\[py-mark-def-or-class]\t mark smallest enclosing class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002317\\[comment-region]\t comment out region of code
2318\\[universal-argument] \\[comment-region]\t uncomment region of code
Barry Warsaw7ae77681994-12-12 20:38:05 +00002319%c:py-mark-block
Barry Warsaw2518c671997-11-05 00:51:08 +00002320%c:py-mark-def-or-class
Barry Warsaw42f707f1996-07-29 21:05:05 +00002321%c:comment-region
Barry Warsaw7ae77681994-12-12 20:38:05 +00002322
2323@MOVING POINT
2324
2325\\[py-previous-statement]\t move to statement preceding point
2326\\[py-next-statement]\t move to statement following point
2327\\[py-goto-block-up]\t move up to start of current block
2328\\[beginning-of-python-def-or-class]\t move to start of def
2329\\[universal-argument] \\[beginning-of-python-def-or-class]\t move to start of class
2330\\[end-of-python-def-or-class]\t move to end of def
2331\\[universal-argument] \\[end-of-python-def-or-class]\t move to end of class
2332
2333The first two move to one statement beyond the statement that contains
2334point. A numeric prefix argument tells them to move that many
2335statements instead. Blank lines, comment lines, and continuation lines
2336do not count as `statements' for these commands. So, e.g., you can go
2337to the first code statement in a file by entering
2338\t\\[beginning-of-buffer]\t to move to the top of the file
2339\t\\[py-next-statement]\t to skip over initial comments and blank lines
2340Or do `\\[py-previous-statement]' with a huge prefix argument.
2341%c:py-previous-statement
2342%c:py-next-statement
2343%c:py-goto-block-up
2344%c:beginning-of-python-def-or-class
2345%c:end-of-python-def-or-class
2346
2347@LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE
2348
2349`\\[indent-new-comment-line]' is handy for entering a multi-line comment.
2350
2351`\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the
2352overall class and def structure of a module.
2353
2354`\\[back-to-indentation]' moves point to a line's first non-blank character.
2355
2356`\\[indent-relative]' is handy for creating odd indentation.
2357
2358@OTHER EMACS HINTS
2359
2360If you don't like the default value of a variable, change its value to
2361whatever you do like by putting a `setq' line in your .emacs file.
2362E.g., to set the indentation increment to 4, put this line in your
2363.emacs:
2364\t(setq py-indent-offset 4)
2365To see the value of a variable, do `\\[describe-variable]' and enter the variable
2366name at the prompt.
2367
2368When entering a key sequence like `C-c C-n', it is not necessary to
2369release the CONTROL key after doing the `C-c' part -- it suffices to
2370press the CONTROL key, press and release `c' (while still holding down
2371CONTROL), press and release `n' (while still holding down CONTROL), &
2372then release CONTROL.
2373
2374Entering Python mode calls with no arguments the value of the variable
2375`python-mode-hook', if that value exists and is not nil; for backward
2376compatibility it also tries `py-mode-hook'; see the `Hooks' section of
2377the Elisp manual for details.
2378
2379Obscure: When python-mode is first loaded, it looks for all bindings
2380to newline-and-indent in the global keymap, and shadows them with
2381local bindings to py-newline-and-indent."))
2382
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002383
2384;; Helper functions
Barry Warsaw7ae77681994-12-12 20:38:05 +00002385(defvar py-parse-state-re
2386 (concat
2387 "^[ \t]*\\(if\\|elif\\|else\\|while\\|def\\|class\\)\\>"
2388 "\\|"
2389 "^[^ #\t\n]"))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002390
Barry Warsaw7ae77681994-12-12 20:38:05 +00002391;; returns the parse state at point (see parse-partial-sexp docs)
2392(defun py-parse-state ()
2393 (save-excursion
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002394 (let ((here (point))
Barry Warsaw170ffa71996-07-31 20:57:22 +00002395 pps done ci)
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002396 (while (not done)
2397 ;; back up to the first preceding line (if any; else start of
2398 ;; buffer) that begins with a popular Python keyword, or a
2399 ;; non- whitespace and non-comment character. These are good
2400 ;; places to start parsing to see whether where we started is
2401 ;; at a non-zero nesting level. It may be slow for people who
2402 ;; write huge code blocks or huge lists ... tough beans.
2403 (re-search-backward py-parse-state-re nil 'move)
Barry Warsaw170ffa71996-07-31 20:57:22 +00002404 (setq ci (current-indentation))
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002405 (beginning-of-line)
2406 (save-excursion
2407 (setq pps (parse-partial-sexp (point) here)))
2408 ;; make sure we don't land inside a triple-quoted string
Barry Warsaw170ffa71996-07-31 20:57:22 +00002409 (setq done (or (zerop ci)
2410 (not (nth 3 pps))
2411 (bobp)))
2412 )
Barry Warsaw43ecf8e1996-04-06 00:00:19 +00002413 pps)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002414
2415;; if point is at a non-zero nesting level, returns the number of the
2416;; character that opens the smallest enclosing unclosed list; else
2417;; returns nil.
2418(defun py-nesting-level ()
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002419 (let ((status (py-parse-state)) )
Barry Warsaw7ae77681994-12-12 20:38:05 +00002420 (if (zerop (car status))
2421 nil ; not in a nest
2422 (car (cdr status))))) ; char# of open bracket
2423
2424;; t iff preceding line ends with backslash that's not in a comment
2425(defun py-backslash-continuation-line-p ()
2426 (save-excursion
2427 (beginning-of-line)
2428 (and
2429 ;; use a cheap test first to avoid the regexp if possible
2430 ;; use 'eq' because char-after may return nil
2431 (eq (char-after (- (point) 2)) ?\\ )
2432 ;; make sure; since eq test passed, there is a preceding line
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002433 (forward-line -1) ; always true -- side effect
Barry Warsaw7ae77681994-12-12 20:38:05 +00002434 (looking-at py-continued-re))))
2435
2436;; t iff current line is a continuation line
2437(defun py-continuation-line-p ()
2438 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002439 (beginning-of-line)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002440 (or (py-backslash-continuation-line-p)
2441 (py-nesting-level))))
2442
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002443;; go to initial line of current statement; usually this is the line
2444;; we're on, but if we're on the 2nd or following lines of a
2445;; continuation block, we need to go up to the first line of the
2446;; block.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002447;;
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002448;; Tricky: We want to avoid quadratic-time behavior for long continued
2449;; blocks, whether of the backslash or open-bracket varieties, or a
2450;; mix of the two. The following manages to do that in the usual
2451;; cases.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002452(defun py-goto-initial-line ()
2453 (let ( open-bracket-pos )
2454 (while (py-continuation-line-p)
2455 (beginning-of-line)
2456 (if (py-backslash-continuation-line-p)
2457 (while (py-backslash-continuation-line-p)
2458 (forward-line -1))
2459 ;; else zip out of nested brackets/braces/parens
2460 (while (setq open-bracket-pos (py-nesting-level))
2461 (goto-char open-bracket-pos)))))
2462 (beginning-of-line))
2463
2464;; go to point right beyond final line of current statement; usually
2465;; this is the start of the next line, but if this is a multi-line
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002466;; statement we need to skip over the continuation lines. Tricky:
2467;; Again we need to be clever to avoid quadratic time behavior.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002468(defun py-goto-beyond-final-line ()
2469 (forward-line 1)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002470 (let (state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002471 (while (and (py-continuation-line-p)
2472 (not (eobp)))
2473 ;; skip over the backslash flavor
2474 (while (and (py-backslash-continuation-line-p)
2475 (not (eobp)))
2476 (forward-line 1))
2477 ;; if in nest, zip to the end of the nest
2478 (setq state (py-parse-state))
2479 (if (and (not (zerop (car state)))
2480 (not (eobp)))
2481 (progn
Barry Warsawaffc0ca1997-11-03 16:59:38 +00002482 (parse-partial-sexp (point) (point-max) 0 nil state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002483 (forward-line 1))))))
2484
2485;; t iff statement opens a block == iff it ends with a colon that's
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002486;; not in a comment. point should be at the start of a statement
Barry Warsaw7ae77681994-12-12 20:38:05 +00002487(defun py-statement-opens-block-p ()
2488 (save-excursion
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002489 (let ((start (point))
2490 (finish (progn (py-goto-beyond-final-line) (1- (point))))
2491 (searching t)
2492 (answer nil)
2493 state)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002494 (goto-char start)
2495 (while searching
2496 ;; look for a colon with nothing after it except whitespace, and
2497 ;; maybe a comment
2498 (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$"
2499 finish t)
2500 (if (eq (point) finish) ; note: no `else' clause; just
2501 ; keep searching if we're not at
2502 ; the end yet
2503 ;; sure looks like it opens a block -- but it might
2504 ;; be in a comment
2505 (progn
2506 (setq searching nil) ; search is done either way
2507 (setq state (parse-partial-sexp start
2508 (match-beginning 0)))
2509 (setq answer (not (nth 4 state)))))
2510 ;; search failed: couldn't find another interesting colon
2511 (setq searching nil)))
2512 answer)))
2513
Barry Warsawf831d811996-07-31 20:42:59 +00002514(defun py-statement-closes-block-p ()
2515 ;; true iff the current statement `closes' a block == the line
Barry Warsaw7cb505c1996-10-23 20:44:59 +00002516 ;; starts with `return', `raise', `break', `continue', and `pass'.
2517 ;; doesn't catch embedded statements
Barry Warsawf831d811996-07-31 20:42:59 +00002518 (let ((here (point)))
2519 (back-to-indentation)
2520 (prog1
Barry Warsawaffc0ca1997-11-03 16:59:38 +00002521 (looking-at (concat py-block-closing-keywords-re "\\>"))
Barry Warsawf831d811996-07-31 20:42:59 +00002522 (goto-char here))))
2523
Barry Warsaw7ae77681994-12-12 20:38:05 +00002524;; go to point right beyond final line of block begun by the current
2525;; line. This is the same as where py-goto-beyond-final-line goes
2526;; unless we're on colon line, in which case we go to the end of the
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002527;; block. assumes point is at bolp
Barry Warsaw7ae77681994-12-12 20:38:05 +00002528(defun py-goto-beyond-block ()
2529 (if (py-statement-opens-block-p)
2530 (py-mark-block nil 'just-move)
2531 (py-goto-beyond-final-line)))
2532
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002533;; go to start of first statement (not blank or comment or
2534;; continuation line) at or preceding point. returns t if there is
2535;; one, else nil
Barry Warsaw7ae77681994-12-12 20:38:05 +00002536(defun py-goto-statement-at-or-above ()
2537 (py-goto-initial-line)
2538 (if (looking-at py-blank-or-comment-re)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002539 ;; skip back over blank & comment lines
2540 ;; note: will skip a blank or comment line that happens to be
2541 ;; a continuation line too
2542 (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t)
2543 (progn (py-goto-initial-line) t)
2544 nil)
Barry Warsaw7ae77681994-12-12 20:38:05 +00002545 t))
2546
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002547;; go to start of first statement (not blank or comment or
2548;; continuation line) following the statement containing point returns
2549;; t if there is one, else nil
Barry Warsaw7ae77681994-12-12 20:38:05 +00002550(defun py-goto-statement-below ()
2551 (beginning-of-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002552 (let ((start (point)))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002553 (py-goto-beyond-final-line)
2554 (while (and
2555 (looking-at py-blank-or-comment-re)
2556 (not (eobp)))
2557 (forward-line 1))
2558 (if (eobp)
2559 (progn (goto-char start) nil)
2560 t)))
2561
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002562;; go to start of statement, at or preceding point, starting with
2563;; keyword KEY. Skips blank lines and non-indenting comments upward
2564;; first. If that statement starts with KEY, done, else go back to
2565;; first enclosing block starting with KEY. If successful, leaves
2566;; point at the start of the KEY line & returns t. Else leaves point
2567;; at an undefined place & returns nil.
Barry Warsaw7ae77681994-12-12 20:38:05 +00002568(defun py-go-up-tree-to-keyword (key)
2569 ;; skip blanks and non-indenting #
2570 (py-goto-initial-line)
2571 (while (and
2572 (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
2573 (zerop (forward-line -1))) ; go back
2574 nil)
2575 (py-goto-initial-line)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002576 (let* ((re (concat "[ \t]*" key "\\b"))
2577 (case-fold-search nil) ; let* so looking-at sees this
2578 (found (looking-at re))
2579 (dead nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002580 (while (not (or found dead))
2581 (condition-case nil ; in case no enclosing block
2582 (py-goto-block-up 'no-mark)
2583 (error (setq dead t)))
2584 (or dead (setq found (looking-at re))))
2585 (beginning-of-line)
2586 found))
2587
2588;; return string in buffer from start of indentation to end of line;
2589;; prefix "..." if leading whitespace was skipped
2590(defun py-suck-up-leading-text ()
2591 (save-excursion
2592 (back-to-indentation)
2593 (concat
2594 (if (bolp) "" "...")
2595 (buffer-substring (point) (progn (end-of-line) (point))))))
2596
2597;; assuming point at bolp, return first keyword ([a-z]+) on the line,
2598;; as a Lisp symbol; return nil if none
2599(defun py-suck-up-first-keyword ()
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002600 (let ((case-fold-search nil))
Barry Warsaw7ae77681994-12-12 20:38:05 +00002601 (if (looking-at "[ \t]*\\([a-z]+\\)\\b")
2602 (intern (buffer-substring (match-beginning 1) (match-end 1)))
2603 nil)))
2604
Barry Warsawb3e81d51996-09-04 15:12:42 +00002605(defun py-current-defun ()
2606 ;; tell add-log.el how to find the current function/method/variable
2607 (save-excursion
2608 (if (re-search-backward py-defun-start-re nil t)
2609 (or (match-string 3)
2610 (let ((method (match-string 2)))
2611 (if (and (not (zerop (length (match-string 1))))
2612 (re-search-backward py-class-start-re nil t))
2613 (concat (match-string 1) "." method)
2614 method)))
2615 nil)))
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002616
2617
Barry Warsawfec75d61995-07-05 23:26:15 +00002618(defconst py-help-address "python-mode@python.org"
Barry Warsaw850437a1995-03-08 21:50:28 +00002619 "Address accepting submission of bug reports.")
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002620
Barry Warsaw850437a1995-03-08 21:50:28 +00002621(defun py-version ()
2622 "Echo the current version of `python-mode' in the minibuffer."
2623 (interactive)
2624 (message "Using `python-mode' version %s" py-version)
2625 (py-keep-region-active))
2626
2627;; only works under Emacs 19
2628;(eval-when-compile
2629; (require 'reporter))
2630
2631(defun py-submit-bug-report (enhancement-p)
2632 "Submit via mail a bug report on `python-mode'.
2633With \\[universal-argument] just submit an enhancement request."
2634 (interactive
2635 (list (not (y-or-n-p
2636 "Is this a bug report? (hit `n' to send other comments) "))))
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00002637 (let ((reporter-prompt-for-summary-p (if enhancement-p
2638 "(Very) brief summary: "
2639 t)))
Barry Warsaw850437a1995-03-08 21:50:28 +00002640 (require 'reporter)
2641 (reporter-submit-bug-report
2642 py-help-address ;address
Barry Warsawb5e0ecb1995-03-14 18:32:54 +00002643 (concat "python-mode " py-version) ;pkgname
Barry Warsaw850437a1995-03-08 21:50:28 +00002644 ;; varlist
2645 (if enhancement-p nil
2646 '(py-python-command
2647 py-indent-offset
2648 py-block-comment-prefix
2649 py-scroll-process-buffer
2650 py-temp-directory
2651 py-beep-if-tab-change))
2652 nil ;pre-hooks
2653 nil ;post-hooks
2654 "Dear Barry,") ;salutation
2655 (if enhancement-p nil
2656 (set-mark (point))
2657 (insert
2658"Please replace this text with a sufficiently large code sample\n\
2659and an exact recipe so that I can reproduce your problem. Failure\n\
2660to do so may mean a greater delay in fixing your bug.\n\n")
2661 (exchange-point-and-mark)
2662 (py-keep-region-active))))
2663
2664
Barry Warsaw47384781997-11-26 05:27:45 +00002665(defun py-kill-emacs-hook ()
2666 (mapcar #'(lambda (filename)
2667 (py-safe (delete-file filename)))
2668 py-file-queue))
2669
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002670;; arrange to kill temp files when Emacs exists
Barry Warsawc72c11c1997-08-09 06:42:08 +00002671(add-hook 'kill-emacs-hook 'py-kill-emacs-hook)
Barry Warsaw7b0f5681995-03-08 21:33:04 +00002672
2673
2674
2675(provide 'python-mode)
2676;;; python-mode.el ends here