annotate lisp/modes/python-mode.el @ 70:131b0175ea99 r20-0b30

Import from CVS: tag r20-0b30
author cvs
date Mon, 13 Aug 2007 09:02:59 +0200
parents 441bb1e64a06
children 0d2f883870bc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1 ;;; python-mode.el --- Major mode for editing Python programs
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
3 ;; Copyright (C) 1992,1993,1994 Tim Peters
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
4
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
5 ;; Author: 1995-1996 Barry A. Warsaw
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
6 ;; 1992-1994 Tim Peters
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
7 ;; Maintainer: python-mode@python.org
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
8 ;; Created: Feb 1992
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
9 ;; Version: 2.83
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
10 ;; Last Modified: 1996/10/23 20:44:59
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
11 ;; Keywords: python languages oop
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
12
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
13 ;; This software is provided as-is, without express or implied
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
14 ;; warranty. Permission to use, copy, modify, distribute or sell this
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
15 ;; software, without fee, for any purpose and by any individual or
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
16 ;; organization, is hereby granted, provided that the above copyright
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
17 ;; notice and this paragraph appear in all copies.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
18
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
19 ;;; Commentary:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
20
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
21 ;; This is a major mode for editing Python programs. It was developed
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
22 ;; by Tim Peters after an original idea by Michael A. Guravage. Tim
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
23 ;; subsequently left the net; in 1995, Barry Warsaw inherited the
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
24 ;; mode and is the current maintainer.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
25
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
26 ;; At some point this mode will undergo a rewrite to bring it more in
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
27 ;; line with GNU Emacs Lisp coding standards, and to wax all the Emacs
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
28 ;; 18 support. But all in all, the mode works exceedingly well, and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
29 ;; I've simply been tweaking it as I go along. Ain't it wonderful
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
30 ;; that Python has a much more sane syntax than C? (or <shudder> C++?!
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
31 ;; :-). I can say that; I maintain cc-mode!
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
32
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
33 ;; The following statements, placed in your .emacs file or
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
34 ;; site-init.el, will cause this file to be autoloaded, and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
35 ;; python-mode invoked, when visiting .py files (assuming this file is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
36 ;; in your load-path):
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
37 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
38 ;; (autoload 'python-mode "python-mode" "Python editing mode." t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
39 ;; (setq auto-mode-alist
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
40 ;; (cons '("\\.py$" . python-mode) auto-mode-alist))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
41 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
42 ;; If you want font-lock support for Python source code (a.k.a. syntax
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
43 ;; coloring, highlighting), add this to your .emacs file:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
44 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
45 ;; (add-hook 'python-mode-hook 'turn-on-font-lock)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
46 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
47 ;; But you better be sure you're version of Emacs supports
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
48 ;; font-lock-mode! As of this writing, the latest Emacs and XEmacs
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
49 ;; 19's do.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
50
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
51 ;; Here's a brief list of recent additions/improvements/changes:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
52 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
53 ;; - Wrapping and indentation within triple quote strings now works.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
54 ;; - `Standard' bug reporting mechanism (use C-c C-b)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
55 ;; - py-mark-block was moved to C-c C-m
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
56 ;; - C-c C-v shows you the python-mode version
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
57 ;; - a basic python-font-lock-keywords has been added for (X)Emacs 19
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
58 ;; - proper interaction with pending-del and del-sel modes.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
59 ;; - Better support for outdenting: py-electric-colon (:) and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
60 ;; py-indent-line (TAB) improvements; one level of outdentation
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
61 ;; added after a return, raise, break, pass, or continue statement.
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
62 ;; Defeated by prefixing command with C-u.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
63 ;; - New py-electric-colon (:) command for improved outdenting Also
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
64 ;; py-indent-line (TAB) should handle outdented lines better
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
65 ;; - improved (I think) C-c > and C-c <
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
66 ;; - py-(forward|backward)-into-nomenclature, not bound, but useful on
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
67 ;; M-f and M-b respectively.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
68 ;; - integration with imenu by Perry A. Stoll <stoll@atr-sw.atr.co.jp>
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
69 ;; - py-indent-offset now defaults to 4
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
70 ;; - new variable py-honor-comment-indentation
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
71 ;; - comment-region bound to C-c #
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
72 ;; - py-delete-char obeys numeric arguments
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
73 ;; - Small modification to rule for "indenting comment lines", such
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
74 ;; lines must now also be indented less than or equal to the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
75 ;; indentation of the previous statement.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
76
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
77 ;; Here's a brief to do list:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
78 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
79 ;; - Better integration with gud-mode for debugging.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
80 ;; - Rewrite according to GNU Emacs Lisp standards.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
81 ;; - possibly force indent-tabs-mode == nil, and add a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
82 ;; write-file-hooks that runs untabify on the whole buffer (to work
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
83 ;; around potential tab/space mismatch problems). In practice this
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
84 ;; hasn't been a problem... yet.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
85 ;; - have py-execute-region on indented code act as if the region is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
86 ;; left justified. Avoids syntax errors.
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
87 ;; - Add a py-goto-error or some such that would scan an exception in
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
88 ;; the py-shell buffer, and pop you to that line in the file.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
89
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
90 ;; If you can think of more things you'd like to see, drop me a line.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
91 ;; If you want to report bugs, use py-submit-bug-report (C-c C-b).
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
92 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
93 ;; Note that I only test things on XEmacs 19 and to some degree on
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
94 ;; Emacs 19. If you port stuff to FSF Emacs 19, or Emacs 18, please
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
95 ;; send me your patches. Byte compiler complaints can probably be
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
96 ;; safely ignored.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
97
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
98 ;;; Code:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
99
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
100
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
101 ;; user definable variables
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
102 ;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
103
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
104 (defvar py-python-command "python"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
105 "*Shell command used to start Python interpreter.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
106
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
107 (defvar py-indent-offset 4
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
108 "*Indentation increment.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
109 Note that `\\[py-guess-indent-offset]' can usually guess a good value
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
110 when you're editing someone else's Python code.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
111
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
112 (defvar py-align-multiline-strings-p t
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
113 "*Flag describing how multiline triple quoted strings are aligned.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
114 When this flag is non-nil, continuation lines are lined up under the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
115 preceding line's indentation. When this flag is nil, continuation
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
116 lines are aligned to column zero.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
117
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
118 (defvar py-block-comment-prefix "## "
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
119 "*String used by \\[comment-region] to comment out a block of code.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
120 This should follow the convention for non-indenting comment lines so
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
121 that the indentation commands won't get confused (i.e., the string
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
122 should be of the form `#x...' where `x' is not a blank or a tab, and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
123 `...' is arbitrary).")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
124
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
125 (defvar py-honor-comment-indentation t
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
126 "*Controls how comment lines influence subsequent indentation.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
127
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
128 When nil, all comment lines are skipped for indentation purposes, and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
129 in Emacs 19, a faster algorithm is used.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
130
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
131 When t, lines that begin with a single `#' are a hint to subsequent
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
132 line indentation. If the previous line is such a comment line (as
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
133 opposed to one that starts with `py-block-comment-prefix'), then it's
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
134 indentation is used as a hint for this line's indentation. Lines that
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
135 begin with `py-block-comment-prefix' are ignored for indentation
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
136 purposes.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
137
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
138 When not nil or t, comment lines that begin with a `#' are used as
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
139 indentation hints, unless the comment character is in column zero.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
140
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
141 (defvar py-scroll-process-buffer t
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
142 "*Scroll Python process buffer as output arrives.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
143 If nil, the Python process buffer acts, with respect to scrolling, like
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
144 Shell-mode buffers normally act. This is surprisingly complicated and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
145 so won't be explained here; in fact, you can't get the whole story
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
146 without studying the Emacs C code.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
147
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
148 If non-nil, the behavior is different in two respects (which are
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
149 slightly inaccurate in the interest of brevity):
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
150
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
151 - If the buffer is in a window, and you left point at its end, the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
152 window will scroll as new output arrives, and point will move to the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
153 buffer's end, even if the window is not the selected window (that
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
154 being the one the cursor is in). The usual behavior for shell-mode
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
155 windows is not to scroll, and to leave point where it was, if the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
156 buffer is in a window other than the selected window.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
157
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
158 - If the buffer is not visible in any window, and you left point at
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
159 its end, the buffer will be popped into a window as soon as more
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
160 output arrives. This is handy if you have a long-running
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
161 computation and don't want to tie up screen area waiting for the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
162 output. The usual behavior for a shell-mode buffer is to stay
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
163 invisible until you explicitly visit it.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
164
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
165 Note the `and if you left point at its end' clauses in both of the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
166 above: you can `turn off' the special behaviors while output is in
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
167 progress, by visiting the Python buffer and moving point to anywhere
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
168 besides the end. Then the buffer won't scroll, point will remain where
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
169 you leave it, and if you hide the buffer it will stay hidden until you
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
170 visit it again. You can enable and disable the special behaviors as
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
171 often as you like, while output is in progress, by (respectively) moving
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
172 point to, or away from, the end of the buffer.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
173
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
174 Warning: If you expect a large amount of output, you'll probably be
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
175 happier setting this option to nil.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
176
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
177 Obscure: `End of buffer' above should really say `at or beyond the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
178 process mark', but if you know what that means you didn't need to be
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
179 told <grin>.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
180
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
181 (defvar py-temp-directory
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
182 (let ((ok '(lambda (x)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
183 (and x
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
184 (setq x (expand-file-name x)) ; always true
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
185 (file-directory-p x)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
186 (file-writable-p x)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
187 x))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
188 (or (funcall ok (getenv "TMPDIR"))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
189 (funcall ok "/usr/tmp")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
190 (funcall ok "/tmp")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
191 (funcall ok ".")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
192 (error
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
193 "Couldn't find a usable temp directory -- set py-temp-directory")))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
194 "*Directory used for temp files created by a *Python* process.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
195 By default, the first directory from this list that exists and that you
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
196 can write into: the value (if any) of the environment variable TMPDIR,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
197 /usr/tmp, /tmp, or the current directory.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
198
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
199 (defvar py-beep-if-tab-change t
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
200 "*Ring the bell if tab-width is changed.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
201 If a comment of the form
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
202
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
203 \t# vi:set tabsize=<number>:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
204
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
205 is found before the first code line when the file is entered, and the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
206 current value of (the general Emacs variable) `tab-width' does not
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
207 equal <number>, `tab-width' is set to <number>, a message saying so is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
208 displayed in the echo area, and if `py-beep-if-tab-change' is non-nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
209 the Emacs bell is also rung as a warning.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
210
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
211 (defconst python-font-lock-keywords
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
212 (let* ((keywords '("and" "break" "class"
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
213 "continue" "def" "del" "elif"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
214 "else:" "except" "except:" "exec"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
215 "finally:" "for" "from" "global"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
216 "if" "import" "in" "is"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
217 "lambda" "not" "or" "pass"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
218 "print" "raise" "return" "try:"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
219 "while"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
220 ))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
221 (kwregex (mapconcat 'identity keywords "\\|")))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
222 (list
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
223 ;; keywords not at beginning of line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
224 (cons (concat "\\s-\\(" kwregex "\\)[ \n\t(]") 1)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
225 ;; keywords at beginning of line. i don't think regexps are
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
226 ;; powerful enough to handle these two cases in one regexp.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
227 ;; prove me wrong!
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
228 (cons (concat "^\\(" kwregex "\\)[ \n\t(]") 1)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
229 ;; classes
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
230 '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
231 1 font-lock-type-face)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
232 ;; functions
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
233 '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
234 1 font-lock-function-name-face)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
235 ))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
236 "Additional expressions to highlight in Python mode.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
237
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
238 (defvar imenu-example--python-show-method-args-p nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
239 "*Controls echoing of arguments of functions & methods in the imenu buffer.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
240 When non-nil, arguments are printed.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
241
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
242
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
243
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
244 ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
245 ;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
246
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
247 (make-variable-buffer-local 'py-indent-offset)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
248
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
249 ;; Differentiate between Emacs 18, Lucid Emacs, and Emacs 19. This
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
250 ;; seems to be the standard way of checking this.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
251 ;; BAW - This is *not* the right solution. When at all possible,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
252 ;; instead of testing for the version of Emacs, use feature tests.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
253
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
254 (setq py-this-is-lucid-emacs-p (string-match "Lucid\\|XEmacs" emacs-version))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
255 (setq py-this-is-emacs-19-p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
256 (and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
257 (not py-this-is-lucid-emacs-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
258 (string-match "^19\\." emacs-version)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
259
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
260 ;; have to bind py-file-queue before installing the kill-emacs hook
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
261 (defvar py-file-queue nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
262 "Queue of Python temp files awaiting execution.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
263 Currently-active file is at the head of the list.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
264
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
265 ;; define a mode-specific abbrev table for those who use such things
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
266 (defvar python-mode-abbrev-table nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
267 "Abbrev table in use in `python-mode' buffers.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
268 (define-abbrev-table 'python-mode-abbrev-table nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
269
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
270 (defvar python-mode-hook nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
271 "*Hook called by `python-mode'.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
272
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
273 ;; in previous version of python-mode.el, the hook was incorrectly
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
274 ;; called py-mode-hook, and was not defvar'd. deprecate its use.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
275 (and (fboundp 'make-obsolete-variable)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
276 (make-obsolete-variable 'py-mode-hook 'python-mode-hook))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
277
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
278 (defvar py-mode-map ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
279 "Keymap used in `python-mode' buffers.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
280
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
281 (if py-mode-map
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
282 ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
283 (setq py-mode-map (make-sparse-keymap))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
284
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
285 ;; shadow global bindings for newline-and-indent w/ the py- version.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
286 ;; BAW - this is extremely bad form, but I'm not going to change it
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
287 ;; for now.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
288 (mapcar (function (lambda (key)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
289 (define-key
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
290 py-mode-map key 'py-newline-and-indent)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
291 (where-is-internal 'newline-and-indent))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
292
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
293 ;; BAW - you could do it this way, but its not considered proper
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
294 ;; major-mode form.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
295 (mapcar (function
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
296 (lambda (x)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
297 (define-key py-mode-map (car x) (cdr x))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
298 '((":" . py-electric-colon)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
299 ("\C-c\C-c" . py-execute-buffer)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
300 ("\C-c|" . py-execute-region)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
301 ("\C-c!" . py-shell)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
302 ("\177" . py-delete-char)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
303 ("\n" . py-newline-and-indent)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
304 ("\C-c:" . py-guess-indent-offset)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
305 ("\C-c\t" . py-indent-region)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
306 ("\C-c\C-l" . py-shift-region-left)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
307 ("\C-c\C-r" . py-shift-region-right)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
308 ("\C-c<" . py-shift-region-left)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
309 ("\C-c>" . py-shift-region-right)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
310 ("\C-c\C-n" . py-next-statement)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
311 ("\C-c\C-p" . py-previous-statement)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
312 ("\C-c\C-u" . py-goto-block-up)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
313 ("\C-c\C-m" . py-mark-block)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
314 ("\C-c#" . py-comment-region)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
315 ("\C-c?" . py-describe-mode)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
316 ("\C-c\C-hm" . py-describe-mode)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
317 ("\e\C-a" . beginning-of-python-def-or-class)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
318 ("\e\C-e" . end-of-python-def-or-class)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
319 ( "\e\C-h" . mark-python-def-or-class)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
320 ;; should do all keybindings this way
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
321 (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
322 (define-key py-mode-map "\C-c\C-v" 'py-version)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
323 )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
324
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
325 (defvar py-mode-syntax-table nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
326 "Syntax table used in `python-mode' buffers.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
327
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
328 (if py-mode-syntax-table
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
329 ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
330 (setq py-mode-syntax-table (make-syntax-table))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
331 ;; BAW - again, blech.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
332 (mapcar (function
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
333 (lambda (x) (modify-syntax-entry
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
334 (car x) (cdr x) py-mode-syntax-table)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
335 '(( ?\( . "()" ) ( ?\) . ")(" )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
336 ( ?\[ . "(]" ) ( ?\] . ")[" )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
337 ( ?\{ . "(}" ) ( ?\} . "){" )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
338 ;; fix operator symbols misassigned in the std table
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
339 ( ?\$ . "." ) ( ?\% . "." ) ( ?\& . "." )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
340 ( ?\* . "." ) ( ?\+ . "." ) ( ?\- . "." )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
341 ( ?\/ . "." ) ( ?\< . "." ) ( ?\= . "." )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
342 ( ?\> . "." ) ( ?\| . "." )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
343 ;; for historical reasons, underscore is word class
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
344 ;; instead of symbol class. it should be symbol class,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
345 ;; but if you're tempted to change it, try binding M-f and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
346 ;; M-b to py-forward-into-nomenclature and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
347 ;; py-backward-into-nomenclature instead. -baw
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
348 ( ?\_ . "w" ) ; underscore is legit in words
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
349 ( ?\' . "\"") ; single quote is string quote
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
350 ( ?\" . "\"" ) ; double quote is string quote too
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
351 ( ?\` . "$") ; backquote is open and close paren
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
352 ( ?\# . "<") ; hash starts comment
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
353 ( ?\n . ">")))) ; newline ends comment
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
354
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
355 (defconst py-stringlit-re
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
356 (concat
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
357 "'\\([^'\n\\]\\|\\\\.\\)*'" ; single-quoted
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
358 "\\|" ; or
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
359 "\"\\([^\"\n\\]\\|\\\\.\\)*\"") ; double-quoted
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
360 "Regexp matching a Python string literal.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
361
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
362 ;; this is tricky because a trailing backslash does not mean
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
363 ;; continuation if it's in a comment
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
364 (defconst py-continued-re
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
365 (concat
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
366 "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
367 "\\\\$")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
368 "Regexp matching Python lines that are continued via backslash.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
369
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
370 (defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
371 "Regexp matching blank or comment lines.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
372
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
373 (defconst py-outdent-re
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
374 (concat "\\(" (mapconcat 'identity
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
375 '("else:"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
376 "except\\(\\s +.*\\)?:"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
377 "finally:"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
378 "elif\\s +.*:")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
379 "\\|")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
380 "\\)")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
381 "Regexp matching clauses to be outdented one level.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
382
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
383 (defconst py-no-outdent-re
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
384 (concat "\\(" (mapconcat 'identity
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
385 '("try:"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
386 "except\\(\\s +.*\\)?:"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
387 "while\\s +.*:"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
388 "for\\s +.*:"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
389 "if\\s +.*:"
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
390 "elif\\s +.*:"
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
391 "\\(return\\|break\\|raise\\|continue\\)[ \t\n]"
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
392 )
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
393 "\\|")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
394 "\\)")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
395 "Regexp matching lines to not outdent after.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
396
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
397 (defvar py-defun-start-re
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
398 "^\\([ \t]*\\)def[ \t]+\\([a-zA-Z_0-9]+\\)\\|\\(^[a-zA-Z_0-9]+\\)[ \t]*="
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
399 "Regexp matching a function, method or variable assignment.
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
400
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
401 If you change this, you probably have to change `py-current-defun' as well.
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
402 This is only used by `py-current-defun' to find the name for add-log.el.")
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
403
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
404 (defvar py-class-start-re "^class[ \t]*\\([a-zA-Z_0-9]+\\)"
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
405 "Regexp for finding a class name.
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
406
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
407 If you change this, you probably have to change `py-current-defun' as well.
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
408 This is only used by `py-current-defun' to find the name for add-log.el.")
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
409
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
410
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
411
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
412 ;; Menu definitions, only relevent if you have the easymenu.el package
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
413 ;; (standard in the latest Emacs 19 and XEmacs 19 distributions).
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
414 (defvar py-menu nil
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
415 "Menu for Python Mode.
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
416
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
417 This menu will get created automatically if you have the easymenu
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
418 package. Note that the latest XEmacs 19 and Emacs 19 versions contain
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
419 this package.")
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
420
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
421 (if (condition-case nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
422 (require 'easymenu)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
423 (error nil))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
424 (easy-menu-define
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
425 py-menu py-mode-map "Python Mode menu"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
426 '("Python"
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
427 ["Comment Out Region" comment-region (mark)]
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
428 ["Uncomment Region" (comment-region (point) (mark) '(4)) (mark)]
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
429 "-"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
430 ["Mark current block" py-mark-block t]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
431 ["Mark current def" mark-python-def-or-class t]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
432 ["Mark current class" (mark-python-def-or-class t) t]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
433 "-"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
434 ["Shift region left" py-shift-region-left (mark)]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
435 ["Shift region right" py-shift-region-right (mark)]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
436 "-"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
437 ["Execute buffer" py-execute-buffer t]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
438 ["Execute region" py-execute-region (mark)]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
439 ["Start interpreter..." py-shell t]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
440 "-"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
441 ["Go to start of block" py-goto-block-up t]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
442 ["Go to start of class" (beginning-of-python-def-or-class t) t]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
443 ["Move to end of class" (end-of-python-def-or-class t) t]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
444 ["Move to start of def" beginning-of-python-def-or-class t]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
445 ["Move to end of def" end-of-python-def-or-class t]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
446 "-"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
447 ["Describe mode" py-describe-mode t]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
448 )))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
449
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
450
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
451
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
452 ;; imenu definitions, courtesy of Perry A. Stoll <stoll@atr-sw.atr.co.jp>
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
453 (defvar imenu-example--python-class-regexp
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
454 (concat ; <<classes>>
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
455 "\\(" ;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
456 "^[ \t]*" ; newline and maybe whitespace
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
457 "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
458 ; possibly multiple superclasses
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
459 "\\([ \t]*\\((\\([a-zA-Z0-9_, \t\n]\\)*)\\)?\\)"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
460 "[ \t]*:" ; and the final :
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
461 "\\)" ; >>classes<<
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
462 )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
463 "Regexp for Python classes for use with the imenu package."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
464 )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
465
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
466 (defvar imenu-example--python-method-regexp
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
467 (concat ; <<methods and functions>>
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
468 "\\(" ;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
469 "^[ \t]*" ; new line and maybe whitespace
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
470 "\\(def[ \t]+" ; function definitions start with def
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
471 "\\([a-zA-Z0-9_]+\\)" ; name is here
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
472 ; function arguments...
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
473 "[ \t]*(\\([a-zA-Z0-9_=,\* \t\n]*\\))"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
474 "\\)" ; end of def
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
475 "[ \t]*:" ; and then the :
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
476 "\\)" ; >>methods and functions<<
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
477 )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
478 "Regexp for Python methods/functions for use with the imenu package."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
479 )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
480
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
481 (defvar imenu-example--python-method-no-arg-parens '(2 8)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
482 "Indicies into groups of the Python regexp for use with imenu.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
483
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
484 Using these values will result in smaller imenu lists, as arguments to
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
485 functions are not listed.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
486
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
487 See the variable `imenu-example--python-show-method-args-p' for more
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
488 information.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
489
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
490 (defvar imenu-example--python-method-arg-parens '(2 7)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
491 "Indicies into groups of the Python regexp for use with imenu.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
492 Using these values will result in large imenu lists, as arguments to
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
493 functions are listed.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
494
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
495 See the variable `imenu-example--python-show-method-args-p' for more
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
496 information.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
497
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
498 ;; Note that in this format, this variable can still be used with the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
499 ;; imenu--generic-function. Otherwise, there is no real reason to have
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
500 ;; it.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
501 (defvar imenu-example--generic-python-expression
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
502 (cons
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
503 (concat
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
504 imenu-example--python-class-regexp
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
505 "\\|" ; or...
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
506 imenu-example--python-method-regexp
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
507 )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
508 imenu-example--python-method-no-arg-parens)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
509 "Generic Python expression which may be used directly with imenu.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
510 Used by setting the variable `imenu-generic-expression' to this value.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
511 Also, see the function \\[imenu-example--create-python-index] for a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
512 better alternative for finding the index.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
513
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
514 ;; These next two variables are used when searching for the python
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
515 ;; class/definitions. Just saving some time in accessing the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
516 ;; generic-python-expression, really.
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
517 (defvar imenu-example--python-generic-regexp nil)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
518 (defvar imenu-example--python-generic-parens nil)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
519
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
520
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
521 ;;;###autoload
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
522 (eval-when-compile
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
523 ;; Imenu isn't used in XEmacs, so just ignore load errors
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
524 (condition-case ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
525 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
526 (require 'cl)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
527 (require 'imenu))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
528 (error nil)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
529
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
530 (defun imenu-example--create-python-index ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
531 "Python interface function for imenu package.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
532 Finds all python classes and functions/methods. Calls function
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
533 \\[imenu-example--create-python-index-engine]. See that function for
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
534 the details of how this works."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
535 (setq imenu-example--python-generic-regexp
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
536 (car imenu-example--generic-python-expression))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
537 (setq imenu-example--python-generic-parens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
538 (if imenu-example--python-show-method-args-p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
539 imenu-example--python-method-arg-parens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
540 imenu-example--python-method-no-arg-parens))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
541 (goto-char (point-min))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
542 (imenu-example--create-python-index-engine nil))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
543
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
544 (defun imenu-example--create-python-index-engine (&optional start-indent)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
545 "Function for finding imenu definitions in Python.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
546
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
547 Finds all definitions (classes, methods, or functions) in a Python
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
548 file for the imenu package.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
549
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
550 Returns a possibly nested alist of the form
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
551
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
552 (INDEX-NAME . INDEX-POSITION)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
553
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
554 The second element of the alist may be an alist, producing a nested
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
555 list as in
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
556
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
557 (INDEX-NAME . INDEX-ALIST)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
558
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
559 This function should not be called directly, as it calls itself
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
560 recursively and requires some setup. Rather this is the engine for
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
561 the function \\[imenu-example--create-python-index].
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
562
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
563 It works recursively by looking for all definitions at the current
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
564 indention level. When it finds one, it adds it to the alist. If it
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
565 finds a definition at a greater indentation level, it removes the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
566 previous definition from the alist. In it's place it adds all
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
567 definitions found at the next indentation level. When it finds a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
568 definition that is less indented then the current level, it retuns the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
569 alist it has created thus far.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
570
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
571 The optional argument START-INDENT indicates the starting indentation
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
572 at which to continue looking for Python classes, methods, or
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
573 functions. If this is not supplied, the function uses the indentation
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
574 of the first definition found."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
575 (let ((index-alist '())
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
576 (sub-method-alist '())
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
577 looking-p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
578 def-name prev-name
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
579 cur-indent def-pos
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
580 (class-paren (first imenu-example--python-generic-parens))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
581 (def-paren (second imenu-example--python-generic-parens)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
582 (setq looking-p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
583 (re-search-forward imenu-example--python-generic-regexp
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
584 (point-max) t))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
585 (while looking-p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
586 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
587 ;; used to set def-name to this value but generic-extract-name is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
588 ;; new to imenu-1.14. this way it still works with imenu-1.11
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
589 ;;(imenu--generic-extract-name imenu-example--python-generic-parens))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
590 (let ((cur-paren (if (match-beginning class-paren)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
591 class-paren def-paren)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
592 (setq def-name
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
593 (buffer-substring (match-beginning cur-paren)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
594 (match-end cur-paren))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
595 (beginning-of-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
596 (setq cur-indent (current-indentation)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
597
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
598 ;; HACK: want to go to the next correct definition location. we
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
599 ;; explicitly list them here. would be better to have them in a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
600 ;; list.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
601 (setq def-pos
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
602 (or (match-beginning class-paren)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
603 (match-beginning def-paren)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
604
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
605 ;; if we don't have a starting indent level, take this one
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
606 (or start-indent
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
607 (setq start-indent cur-indent))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
608
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
609 ;; if we don't have class name yet, take this one
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
610 (or prev-name
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
611 (setq prev-name def-name))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
612
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
613 ;; what level is the next definition on? must be same, deeper
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
614 ;; or shallower indentation
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
615 (cond
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
616 ;; at the same indent level, add it to the list...
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
617 ((= start-indent cur-indent)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
618
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
619 ;; if we don't have push, use the following...
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
620 ;;(setf index-alist (cons (cons def-name def-pos) index-alist))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
621 (push (cons def-name def-pos) index-alist))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
622
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
623 ;; deeper indented expression, recur...
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
624 ((< start-indent cur-indent)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
625
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
626 ;; the point is currently on the expression we're supposed to
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
627 ;; start on, so go back to the last expression. The recursive
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
628 ;; call will find this place again and add it to the correct
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
629 ;; list
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
630 (re-search-backward imenu-example--python-generic-regexp
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
631 (point-min) 'move)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
632 (setq sub-method-alist (imenu-example--create-python-index-engine
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
633 cur-indent))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
634
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
635 (if sub-method-alist
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
636 ;; we put the last element on the index-alist on the start
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
637 ;; of the submethod alist so the user can still get to it.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
638 (let ((save-elmt (pop index-alist)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
639 (push (cons (imenu-create-submenu-name prev-name)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
640 (cons save-elmt sub-method-alist))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
641 index-alist))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
642
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
643 ;; found less indented expression, we're done.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
644 (t
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
645 (setq looking-p nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
646 (re-search-backward imenu-example--python-generic-regexp
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
647 (point-min) t)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
648 (setq prev-name def-name)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
649 (and looking-p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
650 (setq looking-p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
651 (re-search-forward imenu-example--python-generic-regexp
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
652 (point-max) 'move))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
653 (nreverse index-alist)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
654
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
655
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
656 ;;;###autoload
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
657 (defun python-mode ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
658 "Major mode for editing Python files.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
659 To submit a problem report, enter `\\[py-submit-bug-report]' from a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
660 `python-mode' buffer. Do `\\[py-describe-mode]' for detailed
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
661 documentation. To see what version of `python-mode' you are running,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
662 enter `\\[py-version]'.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
663
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
664 This mode knows about Python indentation, tokens, comments and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
665 continuation lines. Paragraphs are separated by blank lines only.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
666
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
667 COMMANDS
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
668 \\{py-mode-map}
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
669 VARIABLES
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
670
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
671 py-indent-offset\t\tindentation increment
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
672 py-block-comment-prefix\t\tcomment string used by comment-region
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
673 py-python-command\t\tshell command to invoke Python interpreter
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
674 py-scroll-process-buffer\t\talways scroll Python process buffer
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
675 py-temp-directory\t\tdirectory used for temp files (if needed)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
676 py-beep-if-tab-change\t\tring the bell if tab-width is changed"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
677 (interactive)
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
678 ;; set up local variables
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
679 (kill-all-local-variables)
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
680 (make-local-variable 'font-lock-defaults)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
681 (make-local-variable 'paragraph-separate)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
682 (make-local-variable 'paragraph-start)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
683 (make-local-variable 'require-final-newline)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
684 (make-local-variable 'comment-start)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
685 (make-local-variable 'comment-start-skip)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
686 (make-local-variable 'comment-column)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
687 (make-local-variable 'indent-region-function)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
688 (make-local-variable 'indent-line-function)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
689 (make-local-variable 'add-log-current-defun-function)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
690 ;;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
691 (set-syntax-table py-mode-syntax-table)
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
692 (setq major-mode 'python-mode
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
693 mode-name "Python"
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
694 local-abbrev-table python-mode-abbrev-table
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
695 font-lock-defaults '(python-font-lock-keywords)
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
696 paragraph-separate "^[ \t]*$"
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
697 paragraph-start "^[ \t]*$"
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
698 require-final-newline t
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
699 comment-start "# "
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
700 comment-start-skip "# *"
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
701 comment-column 40
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
702 indent-region-function 'py-indent-region
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
703 indent-line-function 'py-indent-line
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
704 ;; tell add-log.el how to find the current function/method/variable
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
705 add-log-current-defun-function 'py-current-defun
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
706 )
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
707 (use-local-map py-mode-map)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
708 ;; add the menu
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
709 (if py-menu
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
710 (easy-menu-add py-menu))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
711 ;; Emacs 19 requires this
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
712 (if (or py-this-is-lucid-emacs-p py-this-is-emacs-19-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
713 (setq comment-multi-line nil))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
714 ;; hack to allow overriding the tabsize in the file (see tokenizer.c)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
715 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
716 ;; not sure where the magic comment has to be; to save time
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
717 ;; searching for a rarity, we give up if it's not found prior to the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
718 ;; first executable statement.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
719 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
720 ;; BAW - on first glance, this seems like complete hackery. Why was
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
721 ;; this necessary, and is it still necessary?
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
722 (let ((case-fold-search nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
723 (start (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
724 new-tab-width)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
725 (if (re-search-forward
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
726 "^[ \t]*#[ \t]*vi:set[ \t]+tabsize=\\([0-9]+\\):"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
727 (prog2 (py-next-statement 1) (point) (goto-char 1))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
728 t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
729 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
730 (setq new-tab-width
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
731 (string-to-int
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
732 (buffer-substring (match-beginning 1) (match-end 1))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
733 (if (= tab-width new-tab-width)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
734 nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
735 (setq tab-width new-tab-width)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
736 (message "Caution: tab-width changed to %d" new-tab-width)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
737 (if py-beep-if-tab-change (beep)))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
738 (goto-char start))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
739
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
740 ;; install imenu
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
741 (setq imenu-create-index-function
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
742 (function imenu-example--create-python-index))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
743 (if (fboundp 'imenu-add-to-menubar)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
744 (imenu-add-to-menubar (format "%s-%s" "IM" mode-name)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
745
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
746 ;; run the mode hook. py-mode-hook use is deprecated
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
747 (if python-mode-hook
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
748 (run-hooks 'python-mode-hook)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
749 (run-hooks 'py-mode-hook)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
750
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
751
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
752 (defun py-keep-region-active ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
753 ;; do whatever is necessary to keep the region active in XEmacs.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
754 ;; Ignore byte-compiler warnings you might see. Also note that
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
755 ;; FSF's Emacs 19 does it differently and doesn't its policy doesn't
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
756 ;; require us to take explicit action.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
757 (and (boundp 'zmacs-region-stays)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
758 (setq zmacs-region-stays t)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
759
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
760
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
761 ;; electric characters
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
762 (defun py-outdent-p ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
763 ;; returns non-nil if the current line should outdent one level
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
764 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
765 (and (progn (back-to-indentation)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
766 (looking-at py-outdent-re))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
767 (progn (backward-to-indentation 1)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
768 (while (or (looking-at py-blank-or-comment-re)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
769 (bobp))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
770 (backward-to-indentation 1))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
771 (not (looking-at py-no-outdent-re)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
772 )))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
773
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
774
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
775 (defun py-electric-colon (arg)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
776 "Insert a colon.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
777 In certain cases the line is outdented appropriately. If a numeric
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
778 argument is provided, that many colons are inserted non-electrically.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
779 Electric behavior is inhibited inside a string or comment."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
780 (interactive "P")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
781 (self-insert-command (prefix-numeric-value arg))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
782 ;; are we in a string or comment?
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
783 (if (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
784 (let ((pps (parse-partial-sexp (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
785 (beginning-of-python-def-or-class)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
786 (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
787 (point))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
788 (not (or (nth 3 pps) (nth 4 pps)))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
789 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
790 (let ((here (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
791 (outdent 0)
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
792 (indent (py-compute-indentation t)))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
793 (if (and (not arg)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
794 (py-outdent-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
795 (= indent (save-excursion
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
796 (py-next-statement -1)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
797 (py-compute-indentation t)))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
798 )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
799 (setq outdent py-indent-offset))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
800 ;; Don't indent, only outdent. This assumes that any lines that
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
801 ;; are already outdented relative to py-compute-indentation were
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
802 ;; put there on purpose. Its highly annoying to have `:' indent
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
803 ;; for you. Use TAB, C-c C-l or C-c C-r to adjust. TBD: Is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
804 ;; there a better way to determine this???
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
805 (if (< (current-indentation) indent) nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
806 (goto-char here)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
807 (beginning-of-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
808 (delete-horizontal-space)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
809 (indent-to (- indent outdent))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
810 )))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
811
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
812
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
813 ;;; Functions that execute Python commands in a subprocess
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
814 ;;;###autoload
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
815 (defun py-shell ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
816 "Start an interactive Python interpreter in another window.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
817 This is like Shell mode, except that Python is running in the window
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
818 instead of a shell. See the `Interactive Shell' and `Shell Mode'
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
819 sections of the Emacs manual for details, especially for the key
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
820 bindings active in the `*Python*' buffer.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
821
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
822 See the docs for variable `py-scroll-buffer' for info on scrolling
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
823 behavior in the process window.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
824
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
825 Warning: Don't use an interactive Python if you change sys.ps1 or
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
826 sys.ps2 from their default values, or if you're running code that
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
827 prints `>>> ' or `... ' at the start of a line. `python-mode' can't
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
828 distinguish your output from Python's output, and assumes that `>>> '
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
829 at the start of a line is a prompt from Python. Similarly, the Emacs
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
830 Shell mode code assumes that both `>>> ' and `... ' at the start of a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
831 line are Python prompts. Bad things can happen if you fool either
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
832 mode.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
833
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
834 Warning: If you do any editing *in* the process buffer *while* the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
835 buffer is accepting output from Python, do NOT attempt to `undo' the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
836 changes. Some of the output (nowhere near the parts you changed!) may
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
837 be lost if you do. This appears to be an Emacs bug, an unfortunate
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
838 interaction between undo and process filters; the same problem exists in
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
839 non-Python process buffers using the default (Emacs-supplied) process
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
840 filter."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
841 ;; BAW - should undo be disabled in the python process buffer, if
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
842 ;; this bug still exists?
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
843 (interactive)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
844 (if py-this-is-emacs-19-p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
845 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
846 (require 'comint)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
847 (switch-to-buffer-other-window
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
848 (make-comint "Python" py-python-command)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
849 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
850 (require 'shell)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
851 (switch-to-buffer-other-window
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
852 (apply (if (fboundp 'make-shell) 'make-shell 'make-comint)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
853 "Python" py-python-command nil))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
854 (make-local-variable 'shell-prompt-pattern)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
855 (setq shell-prompt-pattern "^>>> \\|^\\.\\.\\. ")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
856 (set-process-filter (get-buffer-process (current-buffer))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
857 'py-process-filter)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
858 (set-syntax-table py-mode-syntax-table))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
859
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
860 (defun py-execute-region (start end)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
861 "Send the region between START and END to a Python interpreter.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
862 If there is a *Python* process it is used.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
863
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
864 Hint: If you want to execute part of a Python file several times
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
865 \(e.g., perhaps you're developing a function and want to flesh it out
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
866 a bit at a time), use `\\[narrow-to-region]' to restrict the buffer to
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
867 the region of interest, and send the code to a *Python* process via
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
868 `\\[py-execute-buffer]' instead.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
869
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
870 Following are subtleties to note when using a *Python* process:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
871
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
872 If a *Python* process is used, the region is copied into a temporary
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
873 file (in directory `py-temp-directory'), and an `execfile' command is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
874 sent to Python naming that file. If you send regions faster than
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
875 Python can execute them, `python-mode' will save them into distinct
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
876 temp files, and execute the next one in the queue the next time it
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
877 sees a `>>> ' prompt from Python. Each time this happens, the process
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
878 buffer is popped into a window (if it's not already in some window) so
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
879 you can see it, and a comment of the form
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
880
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
881 \t## working on region in file <name> ...
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
882
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
883 is inserted at the end.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
884
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
885 Caution: No more than 26 regions can be pending at any given time.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
886 This limit is (indirectly) inherited from libc's mktemp(3).
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
887 `python-mode' does not try to protect you from exceeding the limit.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
888 It's extremely unlikely that you'll get anywhere close to the limit in
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
889 practice, unless you're trying to be a jerk <grin>.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
890
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
891 See the `\\[py-shell]' docs for additional warnings."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
892 (interactive "r")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
893 (or (< start end) (error "Region is empty"))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
894 (let ((pyproc (get-process "Python"))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
895 fname)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
896 (if (null pyproc)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
897 (shell-command-on-region start end py-python-command)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
898 ;; else feed it thru a temp file
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
899 (setq fname (py-make-temp-name))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
900 (write-region start end fname nil 'no-msg)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
901 (setq py-file-queue (append py-file-queue (list fname)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
902 (if (cdr py-file-queue)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
903 (message "File %s queued for execution" fname)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
904 ;; else
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
905 (py-execute-file pyproc fname)))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
906
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
907 (defun py-execute-file (pyproc fname)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
908 (py-append-to-process-buffer
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
909 pyproc
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
910 (format "## working on region in file %s ...\n" fname))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
911 (process-send-string pyproc (format "execfile('%s')\n" fname)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
912
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
913 (defun py-process-filter (pyproc string)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
914 (let ((curbuf (current-buffer))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
915 (pbuf (process-buffer pyproc))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
916 (pmark (process-mark pyproc))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
917 file-finished)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
918
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
919 ;; make sure we switch to a different buffer at least once. if we
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
920 ;; *don't* do this, then if the process buffer is in the selected
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
921 ;; window, and point is before the end, and lots of output is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
922 ;; coming at a fast pace, then (a) simple cursor-movement commands
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
923 ;; like C-p, C-n, C-f, C-b, C-a, C-e take an incredibly long time
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
924 ;; to have a visible effect (the window just doesn't get updated,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
925 ;; sometimes for minutes(!)), and (b) it takes about 5x longer to
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
926 ;; get all the process output (until the next python prompt).
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
927 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
928 ;; #b makes no sense to me at all. #a almost makes sense: unless
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
929 ;; we actually change buffers, set_buffer_internal in buffer.c
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
930 ;; doesn't set windows_or_buffers_changed to 1, & that in turn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
931 ;; seems to make the Emacs command loop reluctant to update the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
932 ;; display. Perhaps the default process filter in process.c's
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
933 ;; read_process_output has update_mode_lines++ for a similar
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
934 ;; reason? beats me ...
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
935
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
936 (unwind-protect
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
937 ;; make sure current buffer is restored
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
938 ;; BAW - we want to check to see if this still applies
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
939 (progn
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
940 ;; mysterious ugly hack
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
941 (if (eq curbuf pbuf)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
942 (set-buffer (get-buffer-create "*scratch*")))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
943
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
944 (set-buffer pbuf)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
945 (let* ((start (point))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
946 (goback (< start pmark))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
947 (goend (and (not goback) (= start (point-max))))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
948 (buffer-read-only nil))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
949 (goto-char pmark)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
950 (insert string)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
951 (move-marker pmark (point))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
952 (setq file-finished
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
953 (and py-file-queue
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
954 (equal ">>> "
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
955 (buffer-substring
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
956 (prog2 (beginning-of-line) (point)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
957 (goto-char pmark))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
958 (point)))))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
959 (if goback (goto-char start)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
960 ;; else
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
961 (if py-scroll-process-buffer
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
962 (let* ((pop-up-windows t)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
963 (pwin (display-buffer pbuf)))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
964 (set-window-point pwin (point)))))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
965 (set-buffer curbuf)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
966 (if file-finished
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
967 (progn
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
968 (py-delete-file-silently (car py-file-queue))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
969 (setq py-file-queue (cdr py-file-queue))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
970 (if py-file-queue
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
971 (py-execute-file pyproc (car py-file-queue)))))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
972 (and goend
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
973 (progn (set-buffer pbuf)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
974 (goto-char (point-max))))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
975 ))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
976 (set-buffer curbuf))))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
977
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
978 (defun py-execute-buffer ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
979 "Send the contents of the buffer to a Python interpreter.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
980 If there is a *Python* process buffer it is used. If a clipping
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
981 restriction is in effect, only the accessible portion of the buffer is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
982 sent. A trailing newline will be supplied if needed.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
983
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
984 See the `\\[py-execute-region]' docs for an account of some subtleties."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
985 (interactive)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
986 (py-execute-region (point-min) (point-max)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
987
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
988
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
989
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
990 ;; Functions for Python style indentation
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
991 (defun py-delete-char (count)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
992 "Reduce indentation or delete character.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
993 If point is at the leftmost column, deletes the preceding newline.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
994
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
995 Else if point is at the leftmost non-blank character of a line that is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
996 neither a continuation line nor a non-indenting comment line, or if
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
997 point is at the end of a blank line, reduces the indentation to match
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
998 that of the line that opened the current block of code. The line that
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
999 opened the block is displayed in the echo area to help you keep track
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1000 of where you are. With numeric count, outdents that many blocks (but
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1001 not past column zero).
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1002
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1003 Else the preceding character is deleted, converting a tab to spaces if
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1004 needed so that only a single column position is deleted. Numeric
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1005 argument delets that many characters."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1006 (interactive "*p")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1007 (if (or (/= (current-indentation) (current-column))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1008 (bolp)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1009 (py-continuation-line-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1010 (not py-honor-comment-indentation)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1011 (looking-at "#[^ \t\n]")) ; non-indenting #
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
1012 (backward-delete-char-untabify count)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1013 ;; else indent the same as the colon line that opened the block
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1014
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1015 ;; force non-blank so py-goto-block-up doesn't ignore it
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1016 (insert-char ?* 1)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1017 (backward-char)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1018 (let ((base-indent 0) ; indentation of base line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1019 (base-text "") ; and text of base line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1020 (base-found-p nil))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1021 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1022 (while (< 0 count)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1023 (condition-case nil ; in case no enclosing block
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1024 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1025 (py-goto-block-up 'no-mark)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1026 (setq base-indent (current-indentation)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1027 base-text (py-suck-up-leading-text)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1028 base-found-p t))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1029 (error nil))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1030 (setq count (1- count))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1031 (delete-char 1) ; toss the dummy character
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1032 (delete-horizontal-space)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1033 (indent-to base-indent)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1034 (if base-found-p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1035 (message "Closes block: %s" base-text)))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1036
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1037 ;; required for pending-del and delsel modes
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1038 (put 'py-delete-char 'delete-selection 'supersede)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1039 (put 'py-delete-char 'pending-delete 'supersede)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1040
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1041 (defun py-indent-line (&optional arg)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1042 "Fix the indentation of the current line according to Python rules.
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1043 With \\[universal-argument], ignore outdenting rules for block
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1044 closing statements (e.g. return, raise, break, continue, pass)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1045
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1046 This function is normally bound to `indent-line-function' so
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1047 \\[indent-for-tab-command] will call it."
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1048 (interactive "P")
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1049 (let* ((ci (current-indentation))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1050 (move-to-indentation-p (<= (current-column) ci))
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1051 (need (py-compute-indentation (not arg))))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1052 ;; see if we need to outdent
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1053 (if (py-outdent-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1054 (setq need (- need py-indent-offset)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1055 (if (/= ci need)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1056 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1057 (beginning-of-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1058 (delete-horizontal-space)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1059 (indent-to need)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1060 (if move-to-indentation-p (back-to-indentation))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1061
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1062 (defun py-newline-and-indent ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1063 "Strives to act like the Emacs `newline-and-indent'.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1064 This is just `strives to' because correct indentation can't be computed
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1065 from scratch for Python code. In general, deletes the whitespace before
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1066 point, inserts a newline, and takes an educated guess as to how you want
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1067 the new line indented."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1068 (interactive)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1069 (let ((ci (current-indentation)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1070 (if (< ci (current-column)) ; if point beyond indentation
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1071 (newline-and-indent)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1072 ;; else try to act like newline-and-indent "normally" acts
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1073 (beginning-of-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1074 (insert-char ?\n 1)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1075 (move-to-column ci))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1076
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1077 (defun py-compute-indentation (honor-block-close-p)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1078 ;; implements all the rules for indentation computation. when
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1079 ;; honor-block-close-p is non-nil, statements such as return, raise,
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1080 ;; break, continue, and pass force one level of outdenting.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1081 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1082 (let ((pps (parse-partial-sexp (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1083 (beginning-of-python-def-or-class)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1084 (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1085 (point))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1086 (beginning-of-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1087 (cond
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1088 ;; are we inside a string or comment?
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1089 ((or (nth 3 pps) (nth 4 pps))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1090 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1091 (if (not py-align-multiline-strings-p) 0
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1092 ;; skip back over blank & non-indenting comment lines
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1093 ;; note: will skip a blank or non-indenting comment line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1094 ;; that happens to be a continuation line too
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1095 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1096 (back-to-indentation)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1097 (current-column))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1098 ;; are we on a continuation line?
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1099 ((py-continuation-line-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1100 (let ((startpos (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1101 (open-bracket-pos (py-nesting-level))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1102 endpos searching found state)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1103 (if open-bracket-pos
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1104 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1105 ;; align with first item in list; else a normal
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1106 ;; indent beyond the line with the open bracket
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1107 (goto-char (1+ open-bracket-pos)) ; just beyond bracket
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1108 ;; is the first list item on the same line?
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1109 (skip-chars-forward " \t")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1110 (if (null (memq (following-char) '(?\n ?# ?\\)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1111 ; yes, so line up with it
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1112 (current-column)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1113 ;; first list item on another line, or doesn't exist yet
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1114 (forward-line 1)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1115 (while (and (< (point) startpos)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1116 (looking-at "[ \t]*[#\n\\\\]")) ; skip noise
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1117 (forward-line 1))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1118 (if (< (point) startpos)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1119 ;; again mimic the first list item
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1120 (current-indentation)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1121 ;; else they're about to enter the first item
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1122 (goto-char open-bracket-pos)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1123 (+ (current-indentation) py-indent-offset))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1124
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1125 ;; else on backslash continuation line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1126 (forward-line -1)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1127 (if (py-continuation-line-p) ; on at least 3rd line in block
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1128 (current-indentation) ; so just continue the pattern
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1129 ;; else started on 2nd line in block, so indent more.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1130 ;; if base line is an assignment with a start on a RHS,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1131 ;; indent to 2 beyond the leftmost "="; else skip first
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1132 ;; chunk of non-whitespace characters on base line, + 1 more
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1133 ;; column
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1134 (end-of-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1135 (setq endpos (point) searching t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1136 (back-to-indentation)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1137 (setq startpos (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1138 ;; look at all "=" from left to right, stopping at first
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1139 ;; one not nested in a list or string
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1140 (while searching
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1141 (skip-chars-forward "^=" endpos)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1142 (if (= (point) endpos)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1143 (setq searching nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1144 (forward-char 1)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1145 (setq state (parse-partial-sexp startpos (point)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1146 (if (and (zerop (car state)) ; not in a bracket
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1147 (null (nth 3 state))) ; & not in a string
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1148 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1149 (setq searching nil) ; done searching in any case
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1150 (setq found
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1151 (not (or
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1152 (eq (following-char) ?=)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1153 (memq (char-after (- (point) 2))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1154 '(?< ?> ?!)))))))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1155 (if (or (not found) ; not an assignment
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1156 (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash>
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1157 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1158 (goto-char startpos)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1159 (skip-chars-forward "^ \t\n")))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1160 (1+ (current-column))))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1161
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1162 ;; not on a continuation line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1163 ((bobp) (current-indentation))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1164
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1165 ;; Dfn: "Indenting comment line". A line containing only a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1166 ;; comment, but which is treated like a statement for
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1167 ;; indentation calculation purposes. Such lines are only
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1168 ;; treated specially by the mode; they are not treated
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1169 ;; specially by the Python interpreter.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1170
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1171 ;; The rules for indenting comment lines are a line where:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1172 ;; - the first non-whitespace character is `#', and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1173 ;; - the character following the `#' is whitespace, and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1174 ;; - the line is outdented with respect to (i.e. to the left
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1175 ;; of) the indentation of the preceding non-blank line.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1176
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1177 ;; The first non-blank line following an indenting comment
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1178 ;; line is given the same amount of indentation as the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1179 ;; indenting comment line.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1180
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1181 ;; All other comment-only lines are ignored for indentation
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1182 ;; purposes.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1183
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1184 ;; Are we looking at a comment-only line which is *not* an
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1185 ;; indenting comment line? If so, we assume that its been
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1186 ;; placed at the desired indentation, so leave it alone.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1187 ;; Indenting comment lines are aligned as statements down
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1188 ;; below.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1189 ((and (looking-at "[ \t]*#[^ \t\n]")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1190 ;; NOTE: this test will not be performed in older Emacsen
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1191 (fboundp 'forward-comment)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1192 (<= (current-indentation)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1193 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1194 (forward-comment (- (point-max)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1195 (current-indentation))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1196 (current-indentation))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1197
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1198 ;; else indentation based on that of the statement that
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1199 ;; precedes us; use the first line of that statement to
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1200 ;; establish the base, in case the user forced a non-std
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1201 ;; indentation for the continuation lines (if any)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1202 (t
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1203 ;; skip back over blank & non-indenting comment lines note:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1204 ;; will skip a blank or non-indenting comment line that
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1205 ;; happens to be a continuation line too. use fast Emacs 19
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1206 ;; function if it's there.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1207 (if (and (eq py-honor-comment-indentation nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1208 (fboundp 'forward-comment))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1209 (forward-comment (- (point-max)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1210 (let (done)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1211 (while (not done)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1212 (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1213 nil 'move)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1214 (setq done (or (eq py-honor-comment-indentation t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1215 (bobp)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1216 (/= (following-char) ?#)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1217 (not (zerop (current-column)))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1218 )))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1219 ;; if we landed inside a string, go to the beginning of that
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1220 ;; string. this handles triple quoted, multi-line spanning
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1221 ;; strings.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1222 (py-goto-initial-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1223 (+ (current-indentation)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1224 (if (py-statement-opens-block-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1225 py-indent-offset
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1226 (if (and honor-block-close-p (py-statement-closes-block-p))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1227 (- py-indent-offset)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1228 0)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1229 )))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1230
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1231 (defun py-guess-indent-offset (&optional global)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1232 "Guess a good value for, and change, `py-indent-offset'.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1233 By default (without a prefix arg), makes a buffer-local copy of
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1234 `py-indent-offset' with the new value. This will not affect any other
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1235 Python buffers. With a prefix arg, changes the global value of
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1236 `py-indent-offset'. This affects all Python buffers (that don't have
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1237 their own buffer-local copy), both those currently existing and those
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1238 created later in the Emacs session.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1239
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1240 Some people use a different value for `py-indent-offset' than you use.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1241 There's no excuse for such foolishness, but sometimes you have to deal
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1242 with their ugly code anyway. This function examines the file and sets
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1243 `py-indent-offset' to what it thinks it was when they created the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1244 mess.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1245
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1246 Specifically, it searches forward from the statement containing point,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1247 looking for a line that opens a block of code. `py-indent-offset' is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1248 set to the difference in indentation between that line and the Python
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1249 statement following it. If the search doesn't succeed going forward,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1250 it's tried again going backward."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1251 (interactive "P") ; raw prefix arg
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1252 (let (new-value
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1253 (start (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1254 restart
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1255 (found nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1256 colon-indent)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1257 (py-goto-initial-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1258 (while (not (or found (eobp)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1259 (if (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1260 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1261 (setq restart (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1262 (py-goto-initial-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1263 (if (py-statement-opens-block-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1264 (setq found t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1265 (goto-char restart)))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1266 (if found
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1267 ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1268 (goto-char start)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1269 (py-goto-initial-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1270 (while (not (or found (bobp)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1271 (setq found
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1272 (and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1273 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1274 (or (py-goto-initial-line) t) ; always true -- side effect
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1275 (py-statement-opens-block-p)))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1276 (setq colon-indent (current-indentation)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1277 found (and found (zerop (py-next-statement 1)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1278 new-value (- (current-indentation) colon-indent))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1279 (goto-char start)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1280 (if found
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1281 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1282 (funcall (if global 'kill-local-variable 'make-local-variable)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1283 'py-indent-offset)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1284 (setq py-indent-offset new-value)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1285 (message "%s value of py-indent-offset set to %d"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1286 (if global "Global" "Local")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1287 py-indent-offset))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1288 (error "Sorry, couldn't guess a value for py-indent-offset"))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1289
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1290 (defun py-shift-region (start end count)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1291 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1292 (goto-char end) (beginning-of-line) (setq end (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1293 (goto-char start) (beginning-of-line) (setq start (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1294 (indent-rigidly start end count)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1295
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1296 (defun py-shift-region-left (start end &optional count)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1297 "Shift region of Python code to the left.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1298 The lines from the line containing the start of the current region up
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1299 to (but not including) the line containing the end of the region are
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1300 shifted to the left, by `py-indent-offset' columns.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1301
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1302 If a prefix argument is given, the region is instead shifted by that
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1303 many columns. With no active region, outdent only the current line.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1304 You cannot outdent the region if any line is already at column zero."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1305 (interactive
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1306 (let ((p (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1307 (m (mark))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1308 (arg current-prefix-arg))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1309 (if m
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1310 (list (min p m) (max p m) arg)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1311 (list p (save-excursion (forward-line 1) (point)) arg))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1312 ;; if any line is at column zero, don't shift the region
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1313 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1314 (goto-char start)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1315 (while (< (point) end)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1316 (back-to-indentation)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1317 (if (and (zerop (current-column))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1318 (not (looking-at "\\s *$")))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1319 (error "Region is at left edge."))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1320 (forward-line 1)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1321 (py-shift-region start end (- (prefix-numeric-value
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1322 (or count py-indent-offset))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1323 (py-keep-region-active))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1324
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1325 (defun py-shift-region-right (start end &optional count)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1326 "Shift region of Python code to the right.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1327 The lines from the line containing the start of the current region up
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1328 to (but not including) the line containing the end of the region are
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1329 shifted to the right, by `py-indent-offset' columns.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1330
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1331 If a prefix argument is given, the region is instead shifted by that
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1332 many columns. With no active region, indent only the current line."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1333 (interactive
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1334 (let ((p (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1335 (m (mark))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1336 (arg current-prefix-arg))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1337 (if m
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1338 (list (min p m) (max p m) arg)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1339 (list p (save-excursion (forward-line 1) (point)) arg))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1340 (py-shift-region start end (prefix-numeric-value
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1341 (or count py-indent-offset)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1342 (py-keep-region-active))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1343
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1344 (defun py-indent-region (start end &optional indent-offset)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1345 "Reindent a region of Python code.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1346
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1347 The lines from the line containing the start of the current region up
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1348 to (but not including) the line containing the end of the region are
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1349 reindented. If the first line of the region has a non-whitespace
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1350 character in the first column, the first line is left alone and the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1351 rest of the region is reindented with respect to it. Else the entire
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1352 region is reindented with respect to the (closest code or indenting
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1353 comment) statement immediately preceding the region.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1354
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1355 This is useful when code blocks are moved or yanked, when enclosing
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1356 control structures are introduced or removed, or to reformat code
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1357 using a new value for the indentation offset.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1358
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1359 If a numeric prefix argument is given, it will be used as the value of
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1360 the indentation offset. Else the value of `py-indent-offset' will be
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1361 used.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1362
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1363 Warning: The region must be consistently indented before this function
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1364 is called! This function does not compute proper indentation from
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1365 scratch (that's impossible in Python), it merely adjusts the existing
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1366 indentation to be correct in context.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1367
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1368 Warning: This function really has no idea what to do with
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1369 non-indenting comment lines, and shifts them as if they were indenting
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1370 comment lines. Fixing this appears to require telepathy.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1371
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1372 Special cases: whitespace is deleted from blank lines; continuation
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1373 lines are shifted by the same amount their initial line was shifted,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1374 in order to preserve their relative indentation with respect to their
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1375 initial line; and comment lines beginning in column 1 are ignored."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1376 (interactive "*r\nP") ; region; raw prefix arg
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1377 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1378 (goto-char end) (beginning-of-line) (setq end (point-marker))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1379 (goto-char start) (beginning-of-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1380 (let ((py-indent-offset (prefix-numeric-value
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1381 (or indent-offset py-indent-offset)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1382 (indents '(-1)) ; stack of active indent levels
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1383 (target-column 0) ; column to which to indent
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1384 (base-shifted-by 0) ; amount last base line was shifted
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1385 (indent-base (if (looking-at "[ \t\n]")
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1386 (py-compute-indentation t)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1387 0))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1388 ci)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1389 (while (< (point) end)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1390 (setq ci (current-indentation))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1391 ;; figure out appropriate target column
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1392 (cond
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1393 ((or (eq (following-char) ?#) ; comment in column 1
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1394 (looking-at "[ \t]*$")) ; entirely blank
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1395 (setq target-column 0))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1396 ((py-continuation-line-p) ; shift relative to base line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1397 (setq target-column (+ ci base-shifted-by)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1398 (t ; new base line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1399 (if (> ci (car indents)) ; going deeper; push it
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1400 (setq indents (cons ci indents))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1401 ;; else we should have seen this indent before
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1402 (setq indents (memq ci indents)) ; pop deeper indents
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1403 (if (null indents)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1404 (error "Bad indentation in region, at line %d"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1405 (save-restriction
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1406 (widen)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1407 (1+ (count-lines 1 (point)))))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1408 (setq target-column (+ indent-base
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1409 (* py-indent-offset
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1410 (- (length indents) 2))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1411 (setq base-shifted-by (- target-column ci))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1412 ;; shift as needed
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1413 (if (/= ci target-column)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1414 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1415 (delete-horizontal-space)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1416 (indent-to target-column)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1417 (forward-line 1))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1418 (set-marker end nil))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1419
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1420 (defun py-comment-region (beg end &optional arg)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1421 "Like `comment-region' but uses double hash (`#') comment starter."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1422 (interactive "r\nP")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1423 (let ((comment-start py-block-comment-prefix))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1424 (comment-region beg end arg)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1425
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1426
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1427 ;; Functions for moving point
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1428 (defun py-previous-statement (count)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1429 "Go to the start of previous Python statement.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1430 If the statement at point is the i'th Python statement, goes to the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1431 start of statement i-COUNT. If there is no such statement, goes to the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1432 first statement. Returns count of statements left to move.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1433 `Statements' do not include blank, comment, or continuation lines."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1434 (interactive "p") ; numeric prefix arg
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1435 (if (< count 0) (py-next-statement (- count))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1436 (py-goto-initial-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1437 (let (start)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1438 (while (and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1439 (setq start (point)) ; always true -- side effect
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1440 (> count 0)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1441 (zerop (forward-line -1))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1442 (py-goto-statement-at-or-above))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1443 (setq count (1- count)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1444 (if (> count 0) (goto-char start)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1445 count))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1446
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1447 (defun py-next-statement (count)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1448 "Go to the start of next Python statement.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1449 If the statement at point is the i'th Python statement, goes to the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1450 start of statement i+COUNT. If there is no such statement, goes to the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1451 last statement. Returns count of statements left to move. `Statements'
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1452 do not include blank, comment, or continuation lines."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1453 (interactive "p") ; numeric prefix arg
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1454 (if (< count 0) (py-previous-statement (- count))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1455 (beginning-of-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1456 (let (start)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1457 (while (and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1458 (setq start (point)) ; always true -- side effect
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1459 (> count 0)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1460 (py-goto-statement-below))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1461 (setq count (1- count)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1462 (if (> count 0) (goto-char start)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1463 count))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1464
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1465 (defun py-goto-block-up (&optional nomark)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1466 "Move up to start of current block.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1467 Go to the statement that starts the smallest enclosing block; roughly
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1468 speaking, this will be the closest preceding statement that ends with a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1469 colon and is indented less than the statement you started on. If
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1470 successful, also sets the mark to the starting point.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1471
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1472 `\\[py-mark-block]' can be used afterward to mark the whole code
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1473 block, if desired.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1474
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1475 If called from a program, the mark will not be set if optional argument
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1476 NOMARK is not nil."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1477 (interactive)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1478 (let ((start (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1479 (found nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1480 initial-indent)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1481 (py-goto-initial-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1482 ;; if on blank or non-indenting comment line, use the preceding stmt
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1483 (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1484 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1485 (py-goto-statement-at-or-above)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1486 (setq found (py-statement-opens-block-p))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1487 ;; search back for colon line indented less
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1488 (setq initial-indent (current-indentation))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1489 (if (zerop initial-indent)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1490 ;; force fast exit
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1491 (goto-char (point-min)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1492 (while (not (or found (bobp)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1493 (setq found
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1494 (and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1495 (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1496 (or (py-goto-initial-line) t) ; always true -- side effect
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1497 (< (current-indentation) initial-indent)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1498 (py-statement-opens-block-p))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1499 (if found
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1500 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1501 (or nomark (push-mark start))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1502 (back-to-indentation))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1503 (goto-char start)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1504 (error "Enclosing block not found"))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1505
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1506 (defun beginning-of-python-def-or-class (&optional class)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1507 "Move point to start of def (or class, with prefix arg).
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1508
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1509 Searches back for the closest preceding `def'. If you supply a prefix
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1510 arg, looks for a `class' instead. The docs assume the `def' case;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1511 just substitute `class' for `def' for the other case.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1512
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1513 If point is in a def statement already, and after the `d', simply
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1514 moves point to the start of the statement.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1515
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1516 Else (point is not in a def statement, or at or before the `d' of a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1517 def statement), searches for the closest preceding def statement, and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1518 leaves point at its start. If no such statement can be found, leaves
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1519 point at the start of the buffer.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1520
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1521 Returns t iff a def statement is found by these rules.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1522
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1523 Note that doing this command repeatedly will take you closer to the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1524 start of the buffer each time.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1525
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1526 If you want to mark the current def/class, see
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1527 `\\[mark-python-def-or-class]'."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1528 (interactive "P") ; raw prefix arg
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1529 (let ((at-or-before-p (<= (current-column) (current-indentation)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1530 (start-of-line (progn (beginning-of-line) (point)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1531 (start-of-stmt (progn (py-goto-initial-line) (point))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1532 (if (or (/= start-of-stmt start-of-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1533 (not at-or-before-p))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1534 (end-of-line)) ; OK to match on this line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1535 (re-search-backward (if class "^[ \t]*class\\>" "^[ \t]*def\\>")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1536 nil 'move)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1537
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1538 (defun end-of-python-def-or-class (&optional class)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1539 "Move point beyond end of def (or class, with prefix arg) body.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1540
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1541 By default, looks for an appropriate `def'. If you supply a prefix arg,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1542 looks for a `class' instead. The docs assume the `def' case; just
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1543 substitute `class' for `def' for the other case.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1544
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1545 If point is in a def statement already, this is the def we use.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1546
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1547 Else if the def found by `\\[beginning-of-python-def-or-class]'
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1548 contains the statement you started on, that's the def we use.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1549
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1550 Else we search forward for the closest following def, and use that.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1551
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1552 If a def can be found by these rules, point is moved to the start of
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1553 the line immediately following the def block, and the position of the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1554 start of the def is returned.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1555
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1556 Else point is moved to the end of the buffer, and nil is returned.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1557
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1558 Note that doing this command repeatedly will take you closer to the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1559 end of the buffer each time.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1560
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1561 If you want to mark the current def/class, see
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1562 `\\[mark-python-def-or-class]'."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1563 (interactive "P") ; raw prefix arg
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1564 (let ((start (progn (py-goto-initial-line) (point)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1565 (which (if class "class" "def"))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1566 (state 'not-found))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1567 ;; move point to start of appropriate def/class
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1568 (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1569 (setq state 'at-beginning)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1570 ;; else see if beginning-of-python-def-or-class hits container
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1571 (if (and (beginning-of-python-def-or-class class)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1572 (progn (py-goto-beyond-block)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1573 (> (point) start)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1574 (setq state 'at-end)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1575 ;; else search forward
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1576 (goto-char start)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1577 (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1578 (progn (setq state 'at-beginning)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1579 (beginning-of-line)))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1580 (cond
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1581 ((eq state 'at-beginning) (py-goto-beyond-block) t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1582 ((eq state 'at-end) t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1583 ((eq state 'not-found) nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1584 (t (error "internal error in end-of-python-def-or-class")))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1585
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1586
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1587 ;; Functions for marking regions
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1588 (defun py-mark-block (&optional extend just-move)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1589 "Mark following block of lines. With prefix arg, mark structure.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1590 Easier to use than explain. It sets the region to an `interesting'
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1591 block of succeeding lines. If point is on a blank line, it goes down to
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1592 the next non-blank line. That will be the start of the region. The end
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1593 of the region depends on the kind of line at the start:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1594
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1595 - If a comment, the region will include all succeeding comment lines up
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1596 to (but not including) the next non-comment line (if any).
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1597
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1598 - Else if a prefix arg is given, and the line begins one of these
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1599 structures:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1600
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1601 if elif else try except finally for while def class
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1602
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1603 the region will be set to the body of the structure, including
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1604 following blocks that `belong' to it, but excluding trailing blank
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1605 and comment lines. E.g., if on a `try' statement, the `try' block
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1606 and all (if any) of the following `except' and `finally' blocks
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1607 that belong to the `try' structure will be in the region. Ditto
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1608 for if/elif/else, for/else and while/else structures, and (a bit
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1609 degenerate, since they're always one-block structures) def and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1610 class blocks.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1611
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1612 - Else if no prefix argument is given, and the line begins a Python
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1613 block (see list above), and the block is not a `one-liner' (i.e.,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1614 the statement ends with a colon, not with code), the region will
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1615 include all succeeding lines up to (but not including) the next
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1616 code statement (if any) that's indented no more than the starting
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1617 line, except that trailing blank and comment lines are excluded.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1618 E.g., if the starting line begins a multi-statement `def'
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1619 structure, the region will be set to the full function definition,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1620 but without any trailing `noise' lines.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1621
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1622 - Else the region will include all succeeding lines up to (but not
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1623 including) the next blank line, or code or indenting-comment line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1624 indented strictly less than the starting line. Trailing indenting
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1625 comment lines are included in this case, but not trailing blank
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1626 lines.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1627
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1628 A msg identifying the location of the mark is displayed in the echo
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1629 area; or do `\\[exchange-point-and-mark]' to flip down to the end.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1630
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1631 If called from a program, optional argument EXTEND plays the role of
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1632 the prefix arg, and if optional argument JUST-MOVE is not nil, just
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1633 moves to the end of the block (& does not set mark or display a msg)."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1634 (interactive "P") ; raw prefix arg
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1635 (py-goto-initial-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1636 ;; skip over blank lines
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1637 (while (and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1638 (looking-at "[ \t]*$") ; while blank line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1639 (not (eobp))) ; & somewhere to go
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1640 (forward-line 1))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1641 (if (eobp)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1642 (error "Hit end of buffer without finding a non-blank stmt"))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1643 (let ((initial-pos (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1644 (initial-indent (current-indentation))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1645 last-pos ; position of last stmt in region
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1646 (followers
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1647 '((if elif else) (elif elif else) (else)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1648 (try except finally) (except except) (finally)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1649 (for else) (while else)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1650 (def) (class) ) )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1651 first-symbol next-symbol)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1652
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1653 (cond
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1654 ;; if comment line, suck up the following comment lines
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1655 ((looking-at "[ \t]*#")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1656 (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1657 (re-search-backward "^[ \t]*#") ; and back to last comment in block
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1658 (setq last-pos (point)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1659
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1660 ;; else if line is a block line and EXTEND given, suck up
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1661 ;; the whole structure
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1662 ((and extend
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1663 (setq first-symbol (py-suck-up-first-keyword) )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1664 (assq first-symbol followers))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1665 (while (and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1666 (or (py-goto-beyond-block) t) ; side effect
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1667 (forward-line -1) ; side effect
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1668 (setq last-pos (point)) ; side effect
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1669 (py-goto-statement-below)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1670 (= (current-indentation) initial-indent)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1671 (setq next-symbol (py-suck-up-first-keyword))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1672 (memq next-symbol (cdr (assq first-symbol followers))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1673 (setq first-symbol next-symbol)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1674
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1675 ;; else if line *opens* a block, search for next stmt indented <=
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1676 ((py-statement-opens-block-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1677 (while (and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1678 (setq last-pos (point)) ; always true -- side effect
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1679 (py-goto-statement-below)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1680 (> (current-indentation) initial-indent))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1681 nil))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1682
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1683 ;; else plain code line; stop at next blank line, or stmt or
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1684 ;; indenting comment line indented <
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1685 (t
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1686 (while (and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1687 (setq last-pos (point)) ; always true -- side effect
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1688 (or (py-goto-beyond-final-line) t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1689 (not (looking-at "[ \t]*$")) ; stop at blank line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1690 (or
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1691 (>= (current-indentation) initial-indent)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1692 (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting #
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1693 nil)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1694
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1695 ;; skip to end of last stmt
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1696 (goto-char last-pos)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1697 (py-goto-beyond-final-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1698
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1699 ;; set mark & display
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1700 (if just-move
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1701 () ; just return
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1702 (push-mark (point) 'no-msg)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1703 (forward-line -1)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1704 (message "Mark set after: %s" (py-suck-up-leading-text))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1705 (goto-char initial-pos))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1706
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1707 (defun mark-python-def-or-class (&optional class)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1708 "Set region to body of def (or class, with prefix arg) enclosing point.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1709 Pushes the current mark, then point, on the mark ring (all language
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1710 modes do this, but although it's handy it's never documented ...).
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1711
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1712 In most Emacs language modes, this function bears at least a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1713 hallucinogenic resemblance to `\\[end-of-python-def-or-class]' and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1714 `\\[beginning-of-python-def-or-class]'.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1715
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1716 And in earlier versions of Python mode, all 3 were tightly connected.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1717 Turned out that was more confusing than useful: the `goto start' and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1718 `goto end' commands are usually used to search through a file, and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1719 people expect them to act a lot like `search backward' and `search
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1720 forward' string-search commands. But because Python `def' and `class'
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1721 can nest to arbitrary levels, finding the smallest def containing
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1722 point cannot be done via a simple backward search: the def containing
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1723 point may not be the closest preceding def, or even the closest
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1724 preceding def that's indented less. The fancy algorithm required is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1725 appropriate for the usual uses of this `mark' command, but not for the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1726 `goto' variations.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1727
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1728 So the def marked by this command may not be the one either of the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1729 `goto' commands find: If point is on a blank or non-indenting comment
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1730 line, moves back to start of the closest preceding code statement or
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1731 indenting comment line. If this is a `def' statement, that's the def
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1732 we use. Else searches for the smallest enclosing `def' block and uses
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1733 that. Else signals an error.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1734
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1735 When an enclosing def is found: The mark is left immediately beyond
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1736 the last line of the def block. Point is left at the start of the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1737 def, except that: if the def is preceded by a number of comment lines
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1738 followed by (at most) one optional blank line, point is left at the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1739 start of the comments; else if the def is preceded by a blank line,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1740 point is left at its start.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1741
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1742 The intent is to mark the containing def/class and its associated
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1743 documentation, to make moving and duplicating functions and classes
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1744 pleasant."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1745 (interactive "P") ; raw prefix arg
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1746 (let ((start (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1747 (which (if class "class" "def")))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1748 (push-mark start)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1749 (if (not (py-go-up-tree-to-keyword which))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1750 (progn (goto-char start)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1751 (error "Enclosing %s not found" which))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1752 ;; else enclosing def/class found
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1753 (setq start (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1754 (py-goto-beyond-block)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1755 (push-mark (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1756 (goto-char start)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1757 (if (zerop (forward-line -1)) ; if there is a preceding line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1758 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1759 (if (looking-at "[ \t]*$") ; it's blank
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1760 (setq start (point)) ; so reset start point
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1761 (goto-char start)) ; else try again
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1762 (if (zerop (forward-line -1))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1763 (if (looking-at "[ \t]*#") ; a comment
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1764 ;; look back for non-comment line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1765 ;; tricky: note that the regexp matches a blank
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1766 ;; line, cuz \n is in the 2nd character class
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1767 (and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1768 (re-search-backward "^[ \t]*[^ \t#]" nil 'move)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1769 (forward-line 1))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1770 ;; no comment, so go back
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1771 (goto-char start))))))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1772
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1773 ;; ripped from cc-mode
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1774 (defun py-forward-into-nomenclature (&optional arg)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1775 "Move forward to end of a nomenclature section or word.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1776 With arg, to it arg times.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1777
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1778 A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1779 (interactive "p")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1780 (let ((case-fold-search nil))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1781 (if (> arg 0)
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1782 (re-search-forward
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1783 "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)"
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1784 (point-max) t arg)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1785 (while (and (< arg 0)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1786 (re-search-backward
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1787 "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+"
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1788 (point-min) 0))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1789 (forward-char 1)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1790 (setq arg (1+ arg)))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1791 (py-keep-region-active))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1792
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1793 (defun py-backward-into-nomenclature (&optional arg)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1794 "Move backward to beginning of a nomenclature section or word.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1795 With optional ARG, move that many times. If ARG is negative, move
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1796 forward.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1797
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1798 A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1799 (interactive "p")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1800 (py-forward-into-nomenclature (- arg))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1801 (py-keep-region-active))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1802
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1803
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1804
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1805 ;; Documentation functions
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1806
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1807 ;; dump the long form of the mode blurb; does the usual doc escapes,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1808 ;; plus lines of the form ^[vc]:name$ to suck variable & command docs
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1809 ;; out of the right places, along with the keys they're on & current
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1810 ;; values
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1811 (defun py-dump-help-string (str)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1812 (with-output-to-temp-buffer "*Help*"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1813 (let ((locals (buffer-local-variables))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1814 funckind funcname func funcdoc
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1815 (start 0) mstart end
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1816 keys )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1817 (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1818 (setq mstart (match-beginning 0) end (match-end 0)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1819 funckind (substring str (match-beginning 1) (match-end 1))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1820 funcname (substring str (match-beginning 2) (match-end 2))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1821 func (intern funcname))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1822 (princ (substitute-command-keys (substring str start mstart)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1823 (cond
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1824 ((equal funckind "c") ; command
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1825 (setq funcdoc (documentation func)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1826 keys (concat
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1827 "Key(s): "
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1828 (mapconcat 'key-description
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1829 (where-is-internal func py-mode-map)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1830 ", "))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1831 ((equal funckind "v") ; variable
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
1832 (setq funcdoc (documentation-property func 'variable-documentation)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1833 keys (if (assq func locals)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1834 (concat
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1835 "Local/Global values: "
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1836 (prin1-to-string (symbol-value func))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1837 " / "
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1838 (prin1-to-string (default-value func)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1839 (concat
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1840 "Value: "
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1841 (prin1-to-string (symbol-value func))))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1842 (t ; unexpected
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1843 (error "Error in py-dump-help-string, tag `%s'" funckind)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1844 (princ (format "\n-> %s:\t%s\t%s\n\n"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1845 (if (equal funckind "c") "Command" "Variable")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1846 funcname keys))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1847 (princ funcdoc)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1848 (terpri)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1849 (setq start end))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1850 (princ (substitute-command-keys (substring str start))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1851 (print-help-return-message)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1852
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1853 (defun py-describe-mode ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1854 "Dump long form of Python-mode docs."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1855 (interactive)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1856 (py-dump-help-string "Major mode for editing Python files.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1857 Knows about Python indentation, tokens, comments and continuation lines.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1858 Paragraphs are separated by blank lines only.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1859
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1860 Major sections below begin with the string `@'; specific function and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1861 variable docs begin with `->'.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1862
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1863 @EXECUTING PYTHON CODE
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1864
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1865 \\[py-execute-buffer]\tsends the entire buffer to the Python interpreter
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1866 \\[py-execute-region]\tsends the current region
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1867 \\[py-shell]\tstarts a Python interpreter window; this will be used by
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1868 \tsubsequent \\[py-execute-buffer] or \\[py-execute-region] commands
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1869 %c:py-execute-buffer
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1870 %c:py-execute-region
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1871 %c:py-shell
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1872
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1873 @VARIABLES
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1874
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1875 py-indent-offset\tindentation increment
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1876 py-block-comment-prefix\tcomment string used by comment-region
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1877
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1878 py-python-command\tshell command to invoke Python interpreter
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1879 py-scroll-process-buffer\talways scroll Python process buffer
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1880 py-temp-directory\tdirectory used for temp files (if needed)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1881
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1882 py-beep-if-tab-change\tring the bell if tab-width is changed
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1883 %v:py-indent-offset
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1884 %v:py-block-comment-prefix
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1885 %v:py-python-command
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1886 %v:py-scroll-process-buffer
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1887 %v:py-temp-directory
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1888 %v:py-beep-if-tab-change
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1889
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1890 @KINDS OF LINES
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1891
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1892 Each physical line in the file is either a `continuation line' (the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1893 preceding line ends with a backslash that's not part of a comment, or
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1894 the paren/bracket/brace nesting level at the start of the line is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1895 non-zero, or both) or an `initial line' (everything else).
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1896
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1897 An initial line is in turn a `blank line' (contains nothing except
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1898 possibly blanks or tabs), a `comment line' (leftmost non-blank
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1899 character is `#'), or a `code line' (everything else).
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1900
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1901 Comment Lines
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1902
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1903 Although all comment lines are treated alike by Python, Python mode
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1904 recognizes two kinds that act differently with respect to indentation.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1905
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1906 An `indenting comment line' is a comment line with a blank, tab or
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1907 nothing after the initial `#'. The indentation commands (see below)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1908 treat these exactly as if they were code lines: a line following an
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1909 indenting comment line will be indented like the comment line. All
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1910 other comment lines (those with a non-whitespace character immediately
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1911 following the initial `#') are `non-indenting comment lines', and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1912 their indentation is ignored by the indentation commands.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1913
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1914 Indenting comment lines are by far the usual case, and should be used
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1915 whenever possible. Non-indenting comment lines are useful in cases
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1916 like these:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1917
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1918 \ta = b # a very wordy single-line comment that ends up being
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1919 \t #... continued onto another line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1920
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1921 \tif a == b:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1922 ##\t\tprint 'panic!' # old code we've `commented out'
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1923 \t\treturn a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1924
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1925 Since the `#...' and `##' comment lines have a non-whitespace
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1926 character following the initial `#', Python mode ignores them when
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1927 computing the proper indentation for the next line.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1928
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1929 Continuation Lines and Statements
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1930
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1931 The Python-mode commands generally work on statements instead of on
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1932 individual lines, where a `statement' is a comment or blank line, or a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1933 code line and all of its following continuation lines (if any)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1934 considered as a single logical unit. The commands in this mode
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1935 generally (when it makes sense) automatically move to the start of the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1936 statement containing point, even if point happens to be in the middle
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1937 of some continuation line.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1938
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1939
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1940 @INDENTATION
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1941
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1942 Primarily for entering new code:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1943 \t\\[indent-for-tab-command]\t indent line appropriately
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1944 \t\\[py-newline-and-indent]\t insert newline, then indent
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1945 \t\\[py-delete-char]\t reduce indentation, or delete single character
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1946
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1947 Primarily for reindenting existing code:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1948 \t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1949 \t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1950
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1951 \t\\[py-indent-region]\t reindent region to match its context
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1952 \t\\[py-shift-region-left]\t shift region left by py-indent-offset
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1953 \t\\[py-shift-region-right]\t shift region right by py-indent-offset
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1954
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1955 Unlike most programming languages, Python uses indentation, and only
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1956 indentation, to specify block structure. Hence the indentation supplied
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1957 automatically by Python-mode is just an educated guess: only you know
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1958 the block structure you intend, so only you can supply correct
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1959 indentation.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1960
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1961 The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1962 the indentation of preceding statements. E.g., assuming
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1963 py-indent-offset is 4, after you enter
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1964 \tif a > 0: \\[py-newline-and-indent]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1965 the cursor will be moved to the position of the `_' (_ is not a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1966 character in the file, it's just used here to indicate the location of
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1967 the cursor):
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1968 \tif a > 0:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1969 \t _
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1970 If you then enter `c = d' \\[py-newline-and-indent], the cursor will move
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1971 to
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1972 \tif a > 0:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1973 \t c = d
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1974 \t _
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1975 Python-mode cannot know whether that's what you intended, or whether
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1976 \tif a > 0:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1977 \t c = d
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1978 \t_
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1979 was your intent. In general, Python-mode either reproduces the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1980 indentation of the (closest code or indenting-comment) preceding
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1981 statement, or adds an extra py-indent-offset blanks if the preceding
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1982 statement has `:' as its last significant (non-whitespace and non-
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1983 comment) character. If the suggested indentation is too much, use
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1984 \\[py-delete-char] to reduce it.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1985
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1986 Continuation lines are given extra indentation. If you don't like the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1987 suggested indentation, change it to something you do like, and Python-
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1988 mode will strive to indent later lines of the statement in the same way.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1989
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1990 If a line is a continuation line by virtue of being in an unclosed
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1991 paren/bracket/brace structure (`list', for short), the suggested
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1992 indentation depends on whether the current line contains the first item
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1993 in the list. If it does, it's indented py-indent-offset columns beyond
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1994 the indentation of the line containing the open bracket. If you don't
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1995 like that, change it by hand. The remaining items in the list will mimic
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1996 whatever indentation you give to the first item.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1997
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1998 If a line is a continuation line because the line preceding it ends with
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1999 a backslash, the third and following lines of the statement inherit their
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2000 indentation from the line preceding them. The indentation of the second
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2001 line in the statement depends on the form of the first (base) line: if
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2002 the base line is an assignment statement with anything more interesting
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2003 than the backslash following the leftmost assigning `=', the second line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2004 is indented two columns beyond that `='. Else it's indented to two
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2005 columns beyond the leftmost solid chunk of non-whitespace characters on
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2006 the base line.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2007
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2008 Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command]
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2009 repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2010 structure you intend.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2011 %c:indent-for-tab-command
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2012 %c:py-newline-and-indent
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2013 %c:py-delete-char
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2014
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2015
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2016 The next function may be handy when editing code you didn't write:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2017 %c:py-guess-indent-offset
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2018
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2019
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2020 The remaining `indent' functions apply to a region of Python code. They
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2021 assume the block structure (equals indentation, in Python) of the region
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2022 is correct, and alter the indentation in various ways while preserving
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2023 the block structure:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2024 %c:py-indent-region
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2025 %c:py-shift-region-left
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2026 %c:py-shift-region-right
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2027
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2028 @MARKING & MANIPULATING REGIONS OF CODE
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2029
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2030 \\[py-mark-block]\t mark block of lines
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2031 \\[mark-python-def-or-class]\t mark smallest enclosing def
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2032 \\[universal-argument] \\[mark-python-def-or-class]\t mark smallest enclosing class
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2033 \\[comment-region]\t comment out region of code
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2034 \\[universal-argument] \\[comment-region]\t uncomment region of code
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2035 %c:py-mark-block
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2036 %c:mark-python-def-or-class
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2037 %c:comment-region
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2038
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2039 @MOVING POINT
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2040
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2041 \\[py-previous-statement]\t move to statement preceding point
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2042 \\[py-next-statement]\t move to statement following point
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2043 \\[py-goto-block-up]\t move up to start of current block
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2044 \\[beginning-of-python-def-or-class]\t move to start of def
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2045 \\[universal-argument] \\[beginning-of-python-def-or-class]\t move to start of class
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2046 \\[end-of-python-def-or-class]\t move to end of def
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2047 \\[universal-argument] \\[end-of-python-def-or-class]\t move to end of class
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2048
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2049 The first two move to one statement beyond the statement that contains
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2050 point. A numeric prefix argument tells them to move that many
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2051 statements instead. Blank lines, comment lines, and continuation lines
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2052 do not count as `statements' for these commands. So, e.g., you can go
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2053 to the first code statement in a file by entering
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2054 \t\\[beginning-of-buffer]\t to move to the top of the file
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2055 \t\\[py-next-statement]\t to skip over initial comments and blank lines
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2056 Or do `\\[py-previous-statement]' with a huge prefix argument.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2057 %c:py-previous-statement
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2058 %c:py-next-statement
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2059 %c:py-goto-block-up
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2060 %c:beginning-of-python-def-or-class
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2061 %c:end-of-python-def-or-class
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2062
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2063 @LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2064
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2065 `\\[indent-new-comment-line]' is handy for entering a multi-line comment.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2066
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2067 `\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2068 overall class and def structure of a module.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2069
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2070 `\\[back-to-indentation]' moves point to a line's first non-blank character.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2071
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2072 `\\[indent-relative]' is handy for creating odd indentation.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2073
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2074 @OTHER EMACS HINTS
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2075
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2076 If you don't like the default value of a variable, change its value to
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2077 whatever you do like by putting a `setq' line in your .emacs file.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2078 E.g., to set the indentation increment to 4, put this line in your
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2079 .emacs:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2080 \t(setq py-indent-offset 4)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2081 To see the value of a variable, do `\\[describe-variable]' and enter the variable
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2082 name at the prompt.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2083
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2084 When entering a key sequence like `C-c C-n', it is not necessary to
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2085 release the CONTROL key after doing the `C-c' part -- it suffices to
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2086 press the CONTROL key, press and release `c' (while still holding down
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2087 CONTROL), press and release `n' (while still holding down CONTROL), &
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2088 then release CONTROL.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2089
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2090 Entering Python mode calls with no arguments the value of the variable
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2091 `python-mode-hook', if that value exists and is not nil; for backward
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2092 compatibility it also tries `py-mode-hook'; see the `Hooks' section of
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2093 the Elisp manual for details.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2094
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2095 Obscure: When python-mode is first loaded, it looks for all bindings
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2096 to newline-and-indent in the global keymap, and shadows them with
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2097 local bindings to py-newline-and-indent."))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2098
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2099
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2100 ;; Helper functions
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2101 (defvar py-parse-state-re
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2102 (concat
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2103 "^[ \t]*\\(if\\|elif\\|else\\|while\\|def\\|class\\)\\>"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2104 "\\|"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2105 "^[^ #\t\n]"))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2106
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2107 ;; returns the parse state at point (see parse-partial-sexp docs)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2108 (defun py-parse-state ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2109 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2110 (let ((here (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2111 pps done ci)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2112 (while (not done)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2113 ;; back up to the first preceding line (if any; else start of
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2114 ;; buffer) that begins with a popular Python keyword, or a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2115 ;; non- whitespace and non-comment character. These are good
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2116 ;; places to start parsing to see whether where we started is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2117 ;; at a non-zero nesting level. It may be slow for people who
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2118 ;; write huge code blocks or huge lists ... tough beans.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2119 (re-search-backward py-parse-state-re nil 'move)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2120 (setq ci (current-indentation))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2121 (beginning-of-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2122 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2123 (setq pps (parse-partial-sexp (point) here)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2124 ;; make sure we don't land inside a triple-quoted string
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2125 (setq done (or (zerop ci)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2126 (not (nth 3 pps))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2127 (bobp)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2128 )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2129 pps)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2130
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2131 ;; if point is at a non-zero nesting level, returns the number of the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2132 ;; character that opens the smallest enclosing unclosed list; else
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2133 ;; returns nil.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2134 (defun py-nesting-level ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2135 (let ((status (py-parse-state)) )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2136 (if (zerop (car status))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2137 nil ; not in a nest
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2138 (car (cdr status))))) ; char# of open bracket
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2139
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2140 ;; t iff preceding line ends with backslash that's not in a comment
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2141 (defun py-backslash-continuation-line-p ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2142 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2143 (beginning-of-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2144 (and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2145 ;; use a cheap test first to avoid the regexp if possible
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2146 ;; use 'eq' because char-after may return nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2147 (eq (char-after (- (point) 2)) ?\\ )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2148 ;; make sure; since eq test passed, there is a preceding line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2149 (forward-line -1) ; always true -- side effect
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2150 (looking-at py-continued-re))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2151
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2152 ;; t iff current line is a continuation line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2153 (defun py-continuation-line-p ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2154 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2155 (beginning-of-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2156 (or (py-backslash-continuation-line-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2157 (py-nesting-level))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2158
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2159 ;; go to initial line of current statement; usually this is the line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2160 ;; we're on, but if we're on the 2nd or following lines of a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2161 ;; continuation block, we need to go up to the first line of the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2162 ;; block.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2163 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2164 ;; Tricky: We want to avoid quadratic-time behavior for long continued
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2165 ;; blocks, whether of the backslash or open-bracket varieties, or a
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2166 ;; mix of the two. The following manages to do that in the usual
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2167 ;; cases.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2168 (defun py-goto-initial-line ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2169 (let ( open-bracket-pos )
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2170 (while (py-continuation-line-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2171 (beginning-of-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2172 (if (py-backslash-continuation-line-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2173 (while (py-backslash-continuation-line-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2174 (forward-line -1))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2175 ;; else zip out of nested brackets/braces/parens
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2176 (while (setq open-bracket-pos (py-nesting-level))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2177 (goto-char open-bracket-pos)))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2178 (beginning-of-line))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2179
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2180 ;; go to point right beyond final line of current statement; usually
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2181 ;; this is the start of the next line, but if this is a multi-line
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2182 ;; statement we need to skip over the continuation lines. Tricky:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2183 ;; Again we need to be clever to avoid quadratic time behavior.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2184 (defun py-goto-beyond-final-line ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2185 (forward-line 1)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2186 (let (state)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2187 (while (and (py-continuation-line-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2188 (not (eobp)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2189 ;; skip over the backslash flavor
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2190 (while (and (py-backslash-continuation-line-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2191 (not (eobp)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2192 (forward-line 1))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2193 ;; if in nest, zip to the end of the nest
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2194 (setq state (py-parse-state))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2195 (if (and (not (zerop (car state)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2196 (not (eobp)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2197 (progn
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2198 ;; BUG ALERT: I could swear, from reading the docs, that
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2199 ;; the 3rd argument should be plain 0
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2200 (parse-partial-sexp (point) (point-max) (- 0 (car state))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2201 nil state)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2202 (forward-line 1))))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2203
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2204 ;; t iff statement opens a block == iff it ends with a colon that's
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2205 ;; not in a comment. point should be at the start of a statement
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2206 (defun py-statement-opens-block-p ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2207 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2208 (let ((start (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2209 (finish (progn (py-goto-beyond-final-line) (1- (point))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2210 (searching t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2211 (answer nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2212 state)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2213 (goto-char start)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2214 (while searching
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2215 ;; look for a colon with nothing after it except whitespace, and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2216 ;; maybe a comment
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2217 (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2218 finish t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2219 (if (eq (point) finish) ; note: no `else' clause; just
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2220 ; keep searching if we're not at
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2221 ; the end yet
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2222 ;; sure looks like it opens a block -- but it might
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2223 ;; be in a comment
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2224 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2225 (setq searching nil) ; search is done either way
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2226 (setq state (parse-partial-sexp start
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2227 (match-beginning 0)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2228 (setq answer (not (nth 4 state)))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2229 ;; search failed: couldn't find another interesting colon
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2230 (setq searching nil)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2231 answer)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2232
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2233 (defun py-statement-closes-block-p ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2234 ;; true iff the current statement `closes' a block == the line
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
2235 ;; starts with `return', `raise', `break', `continue', and `pass'.
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
2236 ;; doesn't catch embedded statements
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2237 (let ((here (point)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2238 (back-to-indentation)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2239 (prog1
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
2240 (looking-at "\\(return\\|raise\\|break\\|continue\\|pass\\)\\>")
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2241 (goto-char here))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2242
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2243 ;; go to point right beyond final line of block begun by the current
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2244 ;; line. This is the same as where py-goto-beyond-final-line goes
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2245 ;; unless we're on colon line, in which case we go to the end of the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2246 ;; block. assumes point is at bolp
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2247 (defun py-goto-beyond-block ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2248 (if (py-statement-opens-block-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2249 (py-mark-block nil 'just-move)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2250 (py-goto-beyond-final-line)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2251
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2252 ;; go to start of first statement (not blank or comment or
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2253 ;; continuation line) at or preceding point. returns t if there is
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2254 ;; one, else nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2255 (defun py-goto-statement-at-or-above ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2256 (py-goto-initial-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2257 (if (looking-at py-blank-or-comment-re)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2258 ;; skip back over blank & comment lines
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2259 ;; note: will skip a blank or comment line that happens to be
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2260 ;; a continuation line too
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2261 (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2262 (progn (py-goto-initial-line) t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2263 nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2264 t))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2265
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2266 ;; go to start of first statement (not blank or comment or
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2267 ;; continuation line) following the statement containing point returns
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2268 ;; t if there is one, else nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2269 (defun py-goto-statement-below ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2270 (beginning-of-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2271 (let ((start (point)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2272 (py-goto-beyond-final-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2273 (while (and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2274 (looking-at py-blank-or-comment-re)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2275 (not (eobp)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2276 (forward-line 1))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2277 (if (eobp)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2278 (progn (goto-char start) nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2279 t)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2280
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2281 ;; go to start of statement, at or preceding point, starting with
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2282 ;; keyword KEY. Skips blank lines and non-indenting comments upward
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2283 ;; first. If that statement starts with KEY, done, else go back to
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2284 ;; first enclosing block starting with KEY. If successful, leaves
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2285 ;; point at the start of the KEY line & returns t. Else leaves point
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2286 ;; at an undefined place & returns nil.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2287 (defun py-go-up-tree-to-keyword (key)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2288 ;; skip blanks and non-indenting #
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2289 (py-goto-initial-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2290 (while (and
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2291 (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2292 (zerop (forward-line -1))) ; go back
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2293 nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2294 (py-goto-initial-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2295 (let* ((re (concat "[ \t]*" key "\\b"))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2296 (case-fold-search nil) ; let* so looking-at sees this
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2297 (found (looking-at re))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2298 (dead nil))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2299 (while (not (or found dead))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2300 (condition-case nil ; in case no enclosing block
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2301 (py-goto-block-up 'no-mark)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2302 (error (setq dead t)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2303 (or dead (setq found (looking-at re))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2304 (beginning-of-line)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2305 found))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2306
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2307 ;; return string in buffer from start of indentation to end of line;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2308 ;; prefix "..." if leading whitespace was skipped
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2309 (defun py-suck-up-leading-text ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2310 (save-excursion
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2311 (back-to-indentation)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2312 (concat
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2313 (if (bolp) "" "...")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2314 (buffer-substring (point) (progn (end-of-line) (point))))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2315
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2316 ;; assuming point at bolp, return first keyword ([a-z]+) on the line,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2317 ;; as a Lisp symbol; return nil if none
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2318 (defun py-suck-up-first-keyword ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2319 (let ((case-fold-search nil))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2320 (if (looking-at "[ \t]*\\([a-z]+\\)\\b")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2321 (intern (buffer-substring (match-beginning 1) (match-end 1)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2322 nil)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2323
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2324 (defun py-make-temp-name ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2325 (make-temp-name
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2326 (concat (file-name-as-directory py-temp-directory) "python")))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2327
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2328 (defun py-delete-file-silently (fname)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2329 (condition-case nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2330 (delete-file fname)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2331 (error nil)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2332
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2333 (defun py-kill-emacs-hook ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2334 ;; delete our temp files
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2335 (while py-file-queue
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2336 (py-delete-file-silently (car py-file-queue))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2337 (setq py-file-queue (cdr py-file-queue)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2338 (if (not (or py-this-is-lucid-emacs-p py-this-is-emacs-19-p))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2339 ;; run the hook we inherited, if any
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2340 (and py-inherited-kill-emacs-hook
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2341 (funcall py-inherited-kill-emacs-hook))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2342
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2343 ;; make PROCESS's buffer visible, append STRING to it, and force
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2344 ;; display; also make shell-mode believe the user typed this string,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2345 ;; so that kill-output-from-shell and show-output-from-shell work
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2346 ;; "right"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2347 (defun py-append-to-process-buffer (process string)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2348 (let ((cbuf (current-buffer))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2349 (pbuf (process-buffer process))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2350 (py-scroll-process-buffer t))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2351 (set-buffer pbuf)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2352 (goto-char (point-max))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2353 (move-marker (process-mark process) (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2354 (if (not (or py-this-is-emacs-19-p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2355 py-this-is-lucid-emacs-p))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2356 (move-marker last-input-start (point))) ; muck w/ shell-mode
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2357 (funcall (process-filter process) process string)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2358 (if (not (or py-this-is-emacs-19-p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2359 py-this-is-lucid-emacs-p))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2360 (move-marker last-input-end (point))) ; muck w/ shell-mode
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2361 (set-buffer cbuf))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2362 (sit-for 0))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2363
4
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
2364 (defun py-current-defun ()
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
2365 ;; tell add-log.el how to find the current function/method/variable
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
2366 (save-excursion
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
2367 (if (re-search-backward py-defun-start-re nil t)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
2368 (or (match-string 3)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
2369 (let ((method (match-string 2)))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
2370 (if (and (not (zerop (length (match-string 1))))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
2371 (re-search-backward py-class-start-re nil t))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
2372 (concat (match-string 1) "." method)
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
2373 method)))
b82b59fe008d Import from CVS: tag r19-15b3
cvs
parents: 2
diff changeset
2374 nil)))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2375
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2376
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 26
diff changeset
2377 (defconst py-version "2.83"
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2378 "`python-mode' version number.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2379 (defconst py-help-address "python-mode@python.org"
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2380 "Address accepting submission of bug reports.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2381
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2382 (defun py-version ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2383 "Echo the current version of `python-mode' in the minibuffer."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2384 (interactive)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2385 (message "Using `python-mode' version %s" py-version)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2386 (py-keep-region-active))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2387
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2388 ;; only works under Emacs 19
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2389 ;(eval-when-compile
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2390 ; (require 'reporter))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2391
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2392 (defun py-submit-bug-report (enhancement-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2393 "Submit via mail a bug report on `python-mode'.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2394 With \\[universal-argument] just submit an enhancement request."
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2395 (interactive
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2396 (list (not (y-or-n-p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2397 "Is this a bug report? (hit `n' to send other comments) "))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2398 (let ((reporter-prompt-for-summary-p (if enhancement-p
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2399 "(Very) brief summary: "
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2400 t)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2401 (require 'reporter)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2402 (reporter-submit-bug-report
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2403 py-help-address ;address
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2404 (concat "python-mode " py-version) ;pkgname
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2405 ;; varlist
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2406 (if enhancement-p nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2407 '(py-python-command
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2408 py-indent-offset
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2409 py-block-comment-prefix
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2410 py-scroll-process-buffer
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2411 py-temp-directory
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2412 py-beep-if-tab-change))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2413 nil ;pre-hooks
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2414 nil ;post-hooks
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2415 "Dear Barry,") ;salutation
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2416 (if enhancement-p nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2417 (set-mark (point))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2418 (insert
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2419 "Please replace this text with a sufficiently large code sample\n\
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2420 and an exact recipe so that I can reproduce your problem. Failure\n\
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2421 to do so may mean a greater delay in fixing your bug.\n\n")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2422 (exchange-point-and-mark)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2423 (py-keep-region-active))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2424
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2425
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2426 ;; arrange to kill temp files when Emacs exists
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2427 (if (or py-this-is-emacs-19-p py-this-is-lucid-emacs-p)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2428 (add-hook 'kill-emacs-hook 'py-kill-emacs-hook)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2429 ;; have to trust that other people are as respectful of our hook
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2430 ;; fiddling as we are of theirs
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2431 (if (boundp 'py-inherited-kill-emacs-hook)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2432 ;; we were loaded before -- trust others not to have screwed us
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2433 ;; in the meantime (no choice, really)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2434 nil
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2435 ;; else arrange for our hook to run theirs
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2436 (setq py-inherited-kill-emacs-hook kill-emacs-hook)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2437 (setq kill-emacs-hook 'py-kill-emacs-hook)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2438
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2439
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2440
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2441 (provide 'python-mode)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
2442 ;;; python-mode.el ends here