Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1 | ;;; python-mode.el --- Major mode for editing Python programs |
| 2 | |
| 3 | ;; Copyright (C) 1992,1993,1994 Tim Peters |
| 4 | |
Barry Warsaw | f64b405 | 1998-02-12 16:52:14 +0000 | [diff] [blame] | 5 | ;; Author: 1995-1998 Barry A. Warsaw |
Barry Warsaw | fec75d6 | 1995-07-05 23:26:15 +0000 | [diff] [blame] | 6 | ;; 1992-1994 Tim Peters |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 7 | ;; Maintainer: python-mode@python.org |
| 8 | ;; Created: Feb 1992 |
| 9 | ;; Keywords: python languages oop |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 10 | |
Barry Warsaw | 38e21e7 | 1998-10-27 22:09:25 +0000 | [diff] [blame] | 11 | (defconst py-version "$Revision$" |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 12 | "`python-mode' version number.") |
| 13 | |
Barry Warsaw | cfec359 | 1995-03-10 15:58:16 +0000 | [diff] [blame] | 14 | ;; This software is provided as-is, without express or implied |
| 15 | ;; warranty. Permission to use, copy, modify, distribute or sell this |
| 16 | ;; software, without fee, for any purpose and by any individual or |
| 17 | ;; organization, is hereby granted, provided that the above copyright |
| 18 | ;; notice and this paragraph appear in all copies. |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 19 | |
| 20 | ;;; Commentary: |
Barry Warsaw | 755c671 | 1996-08-01 20:02:55 +0000 | [diff] [blame] | 21 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 22 | ;; This is a major mode for editing Python programs. It was developed |
Barry Warsaw | 261f87d | 1996-08-20 19:57:34 +0000 | [diff] [blame] | 23 | ;; by Tim Peters after an original idea by Michael A. Guravage. Tim |
Barry Warsaw | f7039e2 | 1998-08-20 22:10:46 +0000 | [diff] [blame] | 24 | ;; subsequently left the net; in 1995, Barry Warsaw inherited the mode |
Barry Warsaw | 38e21e7 | 1998-10-27 22:09:25 +0000 | [diff] [blame] | 25 | ;; and is the current maintainer. Tim's now back but disavows all |
| 26 | ;; responsibility for the mode. Smart Tim :-) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 27 | |
Barry Warsaw | 3723152 | 1997-12-11 17:23:13 +0000 | [diff] [blame] | 28 | ;; This version of python-mode.el is no longer compatible with Emacs |
Barry Warsaw | f7039e2 | 1998-08-20 22:10:46 +0000 | [diff] [blame] | 29 | ;; 18. I am striving to maintain compatibility with the X/Emacs 19 |
| 30 | ;; lineage but as time goes on that becomes more and more difficult. |
| 31 | ;; I current recommend that you upgrade to the latest stable released |
Barry Warsaw | 38e21e7 | 1998-10-27 22:09:25 +0000 | [diff] [blame] | 32 | ;; version of your favorite branch: Emacs 20.3 or better, or XEmacs |
| 33 | ;; 20.4 or better (XEmacs 21.0 is in beta testing as of this writing |
| 34 | ;; 27-Oct-1998 appears to work fine with this version of |
| 35 | ;; python-mode.el). Even Windows users should be using at least |
| 36 | ;; NTEmacs 20.3, and XEmacs 21.0 will work very nicely on Windows when |
| 37 | ;; it is released. |
Barry Warsaw | 3723152 | 1997-12-11 17:23:13 +0000 | [diff] [blame] | 38 | |
| 39 | ;; FOR MORE INFORMATION: |
| 40 | |
Barry Warsaw | f7039e2 | 1998-08-20 22:10:46 +0000 | [diff] [blame] | 41 | ;; For more information on installing python-mode.el, especially with |
| 42 | ;; respect to compatibility information, please see |
| 43 | ;; |
| 44 | ;; http://www.python.org/emacs/python-mode/ |
| 45 | ;; |
| 46 | ;; This site also contains links to other packages that you might find |
| 47 | ;; useful, such as pdb interfaces, OO-Browser links, etc. |
Barry Warsaw | 3723152 | 1997-12-11 17:23:13 +0000 | [diff] [blame] | 48 | |
| 49 | ;; BUG REPORTING: |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 50 | |
Barry Warsaw | affc0ca | 1997-11-03 16:59:38 +0000 | [diff] [blame] | 51 | ;; To submit bug reports, use C-c C-b. Please include a complete, but |
| 52 | ;; concise code sample and a recipe for reproducing the bug. Send |
| 53 | ;; suggestions and other comments to python-mode@python.org. |
| 54 | |
| 55 | ;; When in a Python mode buffer, do a C-h m for more help. It's |
Barry Warsaw | 3723152 | 1997-12-11 17:23:13 +0000 | [diff] [blame] | 56 | ;; doubtful that a texinfo manual would be very useful, but if you |
| 57 | ;; want to contribute one, I'll certainly accept it! |
Barry Warsaw | b5e0ecb | 1995-03-14 18:32:54 +0000 | [diff] [blame] | 58 | |
Barry Warsaw | 3723152 | 1997-12-11 17:23:13 +0000 | [diff] [blame] | 59 | ;; TO DO LIST: |
| 60 | |
| 61 | ;; - Better integration with pdb.py and gud-mode for debugging. |
Barry Warsaw | b5e0ecb | 1995-03-14 18:32:54 +0000 | [diff] [blame] | 62 | ;; - Rewrite according to GNU Emacs Lisp standards. |
Barry Warsaw | 9e277db | 1996-07-31 22:33:40 +0000 | [diff] [blame] | 63 | ;; - have py-execute-region on indented code act as if the region is |
Barry Warsaw | 3723152 | 1997-12-11 17:23:13 +0000 | [diff] [blame] | 64 | ;; left justified. Avoids syntax errors. |
| 65 | ;; - add a py-goto-block-down, bound to C-c C-d |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 66 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 67 | ;;; Code: |
| 68 | |
Barry Warsaw | 6dfbe5d | 1998-08-20 21:51:27 +0000 | [diff] [blame] | 69 | (require 'comint) |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 70 | (require 'custom) |
Barry Warsaw | 8529ebb | 1997-12-01 20:03:12 +0000 | [diff] [blame] | 71 | (eval-when-compile |
Barry Warsaw | 673d05f | 1997-12-02 21:51:57 +0000 | [diff] [blame] | 72 | (require 'cl) |
Barry Warsaw | b6c1f1f | 1998-03-19 22:33:06 +0000 | [diff] [blame] | 73 | (if (not (and (condition-case nil |
| 74 | (require 'custom) |
| 75 | (error nil)) |
| 76 | ;; Stock Emacs 19.34 has a broken/old Custom library |
| 77 | ;; that does more harm than good. Fortunately, it is |
| 78 | ;; missing defcustom |
| 79 | (fboundp 'defcustom))) |
Barry Warsaw | 673d05f | 1997-12-02 21:51:57 +0000 | [diff] [blame] | 80 | (error "STOP! STOP! STOP! STOP! |
| 81 | |
| 82 | The Custom library was not found or is out of date. A more current |
| 83 | version is required. Please download and install the latest version |
| 84 | of the Custom library from: |
| 85 | |
| 86 | <http://www.dina.kvl.dk/~abraham/custom/> |
| 87 | |
| 88 | See the Python Mode home page for details: |
| 89 | |
Barry Warsaw | 1d5f988 | 1998-10-28 04:08:13 +0000 | [diff] [blame] | 90 | <http://www.python.org/emacs/python-mode> |
Barry Warsaw | 673d05f | 1997-12-02 21:51:57 +0000 | [diff] [blame] | 91 | "))) |
| 92 | |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 93 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 94 | |
| 95 | ;; user definable variables |
| 96 | ;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 97 | |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 98 | (defgroup python nil |
| 99 | "Support for the Python programming language, <http://www.python.org/>" |
| 100 | :group 'languages) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 101 | |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 102 | (defcustom py-python-command "python" |
| 103 | "*Shell command used to start Python interpreter." |
| 104 | :type 'string |
| 105 | :group 'python) |
| 106 | |
Barry Warsaw | a239880 | 1998-04-09 23:28:20 +0000 | [diff] [blame] | 107 | (defcustom py-jpython-command "jpython" |
| 108 | "*Shell command used to start the JPython interpreter." |
| 109 | :type 'string |
| 110 | :group 'python) |
| 111 | |
Barry Warsaw | 8f972b7 | 1998-02-05 20:45:49 +0000 | [diff] [blame] | 112 | (defcustom py-python-command-args '("-i") |
| 113 | "*List of string arguments to be used when starting a Python shell." |
| 114 | :type '(repeat string) |
| 115 | :group 'python) |
| 116 | |
Barry Warsaw | a239880 | 1998-04-09 23:28:20 +0000 | [diff] [blame] | 117 | (defcustom py-jpython-command-args '("-i") |
| 118 | "*List of string arguments to be used when starting a JPython shell." |
| 119 | :type '(repeat string) |
| 120 | :group 'python) |
| 121 | |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 122 | (defcustom py-indent-offset 4 |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 123 | "*Amount of offset per level of indentation. |
| 124 | `\\[py-guess-indent-offset]' can usually guess a good value when |
| 125 | you're editing someone else's Python code." |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 126 | :type 'integer |
| 127 | :group 'python) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 128 | |
Barry Warsaw | 742a511 | 1998-03-13 17:29:15 +0000 | [diff] [blame] | 129 | (defcustom py-smart-indentation t |
| 130 | "*Should `python-mode' try to automagically set some indentation variables? |
| 131 | When this variable is non-nil, two things happen when a buffer is set |
| 132 | to `python-mode': |
| 133 | |
| 134 | 1. `py-indent-offset' is guess from existing code in the buffer. |
Barry Warsaw | 639eea6 | 1998-03-16 18:12:13 +0000 | [diff] [blame] | 135 | Only guessed values between 2 and 8 are considered. If a valid |
Barry Warsaw | 742a511 | 1998-03-13 17:29:15 +0000 | [diff] [blame] | 136 | guess can't be made (perhaps because you are visiting a new |
Barry Warsaw | 639eea6 | 1998-03-16 18:12:13 +0000 | [diff] [blame] | 137 | file), then the value in `py-indent-offset' is used. |
Barry Warsaw | 742a511 | 1998-03-13 17:29:15 +0000 | [diff] [blame] | 138 | |
Barry Warsaw | 639eea6 | 1998-03-16 18:12:13 +0000 | [diff] [blame] | 139 | 2. `indent-tabs-mode' is turned off if `py-indent-offset' does not |
| 140 | equal `tab-width' (`indent-tabs-mode' is never turned on by |
| 141 | Python mode). This means that for newly written code, tabs are |
| 142 | only inserted in indentation if one tab is one indentation |
| 143 | level, otherwise only spaces are used. |
Barry Warsaw | 742a511 | 1998-03-13 17:29:15 +0000 | [diff] [blame] | 144 | |
Barry Warsaw | 8046bef | 1998-03-13 20:04:52 +0000 | [diff] [blame] | 145 | Note that both these settings occur *after* `python-mode-hook' is run, |
| 146 | so if you want to defeat the automagic configuration, you must also |
| 147 | set `py-smart-indentation' to nil in your `python-mode-hook'." |
Barry Warsaw | 742a511 | 1998-03-13 17:29:15 +0000 | [diff] [blame] | 148 | :type 'boolean |
| 149 | :group 'python) |
| 150 | |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 151 | (defcustom py-align-multiline-strings-p t |
| 152 | "*Flag describing how multi-line triple quoted strings are aligned. |
Barry Warsaw | 095e9c6 | 1995-09-19 20:01:42 +0000 | [diff] [blame] | 153 | When this flag is non-nil, continuation lines are lined up under the |
| 154 | preceding line's indentation. When this flag is nil, continuation |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 155 | lines are aligned to column zero." |
| 156 | :type '(choice (const :tag "Align under preceding line" t) |
| 157 | (const :tag "Align to column zero" nil)) |
| 158 | :group 'python) |
Barry Warsaw | 095e9c6 | 1995-09-19 20:01:42 +0000 | [diff] [blame] | 159 | |
Barry Warsaw | 218eb75 | 1998-09-22 19:51:47 +0000 | [diff] [blame] | 160 | (defcustom py-block-comment-prefix "##" |
Barry Warsaw | 867a32a | 1996-03-07 18:30:26 +0000 | [diff] [blame] | 161 | "*String used by \\[comment-region] to comment out a block of code. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 162 | This should follow the convention for non-indenting comment lines so |
| 163 | that the indentation commands won't get confused (i.e., the string |
| 164 | should be of the form `#x...' where `x' is not a blank or a tab, and |
Barry Warsaw | 218eb75 | 1998-09-22 19:51:47 +0000 | [diff] [blame] | 165 | `...' is arbitrary). However, this string should not end in whitespace." |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 166 | :type 'string |
| 167 | :group 'python) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 168 | |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 169 | (defcustom py-honor-comment-indentation t |
Barry Warsaw | 6d62775 | 1996-03-06 18:41:38 +0000 | [diff] [blame] | 170 | "*Controls how comment lines influence subsequent indentation. |
Barry Warsaw | 33d6ec0 | 1996-03-05 16:28:07 +0000 | [diff] [blame] | 171 | |
Barry Warsaw | 6d62775 | 1996-03-06 18:41:38 +0000 | [diff] [blame] | 172 | When nil, all comment lines are skipped for indentation purposes, and |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 173 | if possible, a faster algorithm is used (i.e. X/Emacs 19 and beyond). |
Barry Warsaw | 6d62775 | 1996-03-06 18:41:38 +0000 | [diff] [blame] | 174 | |
| 175 | When t, lines that begin with a single `#' are a hint to subsequent |
| 176 | line indentation. If the previous line is such a comment line (as |
Barry Warsaw | 145ab1c | 1998-05-19 14:49:49 +0000 | [diff] [blame] | 177 | opposed to one that starts with `py-block-comment-prefix'), then its |
Barry Warsaw | 6d62775 | 1996-03-06 18:41:38 +0000 | [diff] [blame] | 178 | indentation is used as a hint for this line's indentation. Lines that |
| 179 | begin with `py-block-comment-prefix' are ignored for indentation |
| 180 | purposes. |
| 181 | |
| 182 | When not nil or t, comment lines that begin with a `#' are used as |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 183 | indentation hints, unless the comment character is in column zero." |
| 184 | :type '(choice |
| 185 | (const :tag "Skip all comment lines (fast)" nil) |
| 186 | (const :tag "Single # `sets' indentation for next line" t) |
Barry Warsaw | affc0ca | 1997-11-03 16:59:38 +0000 | [diff] [blame] | 187 | (const :tag "Single # `sets' indentation except at column zero" |
| 188 | other) |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 189 | ) |
| 190 | :group 'python) |
Barry Warsaw | 33d6ec0 | 1996-03-05 16:28:07 +0000 | [diff] [blame] | 191 | |
Barry Warsaw | 516b620 | 1997-08-09 06:43:20 +0000 | [diff] [blame] | 192 | (defcustom py-temp-directory |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 193 | (let ((ok '(lambda (x) |
| 194 | (and x |
| 195 | (setq x (expand-file-name x)) ; always true |
| 196 | (file-directory-p x) |
| 197 | (file-writable-p x) |
| 198 | x)))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 199 | (or (funcall ok (getenv "TMPDIR")) |
| 200 | (funcall ok "/usr/tmp") |
| 201 | (funcall ok "/tmp") |
| 202 | (funcall ok ".") |
| 203 | (error |
Barry Warsaw | 6c6db0a | 1998-02-25 16:33:56 +0000 | [diff] [blame] | 204 | "Couldn't find a usable temp directory -- set `py-temp-directory'"))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 205 | "*Directory used for temp files created by a *Python* process. |
| 206 | By default, the first directory from this list that exists and that you |
| 207 | can write into: the value (if any) of the environment variable TMPDIR, |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 208 | /usr/tmp, /tmp, or the current directory." |
| 209 | :type 'string |
| 210 | :group 'python) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 211 | |
Barry Warsaw | 516b620 | 1997-08-09 06:43:20 +0000 | [diff] [blame] | 212 | (defcustom py-beep-if-tab-change t |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 213 | "*Ring the bell if `tab-width' is changed. |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 214 | If a comment of the form |
| 215 | |
| 216 | \t# vi:set tabsize=<number>: |
| 217 | |
| 218 | is found before the first code line when the file is entered, and the |
| 219 | current value of (the general Emacs variable) `tab-width' does not |
| 220 | equal <number>, `tab-width' is set to <number>, a message saying so is |
| 221 | displayed in the echo area, and if `py-beep-if-tab-change' is non-nil |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 222 | the Emacs bell is also rung as a warning." |
| 223 | :type 'boolean |
| 224 | :group 'python) |
| 225 | |
Barry Warsaw | 9981d22 | 1997-12-03 05:25:48 +0000 | [diff] [blame] | 226 | (defcustom py-jump-on-exception t |
| 227 | "*Jump to innermost exception frame in *Python Output* buffer. |
Barry Warsaw | 12c9294 | 1998-08-10 21:44:37 +0000 | [diff] [blame] | 228 | When this variable is non-nil and an exception occurs when running |
Barry Warsaw | 9981d22 | 1997-12-03 05:25:48 +0000 | [diff] [blame] | 229 | Python code synchronously in a subprocess, jump immediately to the |
Barry Warsaw | 12c9294 | 1998-08-10 21:44:37 +0000 | [diff] [blame] | 230 | source code of the innermost traceback frame." |
Barry Warsaw | 3bfed5b | 1998-05-19 16:25:04 +0000 | [diff] [blame] | 231 | :type 'boolean |
| 232 | :group 'python) |
| 233 | |
| 234 | (defcustom py-ask-about-save t |
| 235 | "If not nil, ask about which buffers to save before executing some code. |
| 236 | Otherwise, all modified buffers are saved without asking." |
| 237 | :type 'boolean |
| 238 | :group 'python) |
Barry Warsaw | 9981d22 | 1997-12-03 05:25:48 +0000 | [diff] [blame] | 239 | |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 240 | (defcustom py-backspace-function 'backward-delete-char-untabify |
| 241 | "*Function called by `py-electric-backspace' when deleting backwards." |
| 242 | :type 'function |
| 243 | :group 'python) |
| 244 | |
| 245 | (defcustom py-delete-function 'delete-char |
| 246 | "*Function called by `py-electric-delete' when deleting forwards." |
| 247 | :type 'function |
| 248 | :group 'python) |
| 249 | |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 250 | (defcustom py-imenu-show-method-args-p nil |
| 251 | "*Controls echoing of arguments of functions & methods in the Imenu buffer. |
| 252 | When non-nil, arguments are printed." |
| 253 | :type 'boolean |
| 254 | :group 'python) |
| 255 | (make-variable-buffer-local 'py-indent-offset) |
| 256 | |
Barry Warsaw | c0ecb53 | 1998-01-20 21:43:34 +0000 | [diff] [blame] | 257 | ;; Not customizable |
| 258 | (defvar py-master-file nil |
| 259 | "If non-nil, execute the named file instead of the buffer's file. |
Barry Warsaw | 50b3eb6 | 1998-02-25 15:57:47 +0000 | [diff] [blame] | 260 | The intent is to allow you to set this variable in the file's local |
Barry Warsaw | c0ecb53 | 1998-01-20 21:43:34 +0000 | [diff] [blame] | 261 | variable section, e.g.: |
| 262 | |
| 263 | # Local Variables: |
| 264 | # py-master-file: \"master.py\" |
| 265 | # End: |
| 266 | |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 267 | so that typing \\[py-execute-buffer] in that buffer executes the named |
Barry Warsaw | 1bbc031 | 1998-10-27 21:54:56 +0000 | [diff] [blame] | 268 | master file instead of the buffer's file. If the file name has a |
| 269 | relative path, the value of variable `default-directory' for the |
| 270 | buffer is prepended to come up with a file name.") |
Barry Warsaw | c0ecb53 | 1998-01-20 21:43:34 +0000 | [diff] [blame] | 271 | (make-variable-buffer-local 'py-master-file) |
| 272 | |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 273 | |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 274 | |
| 275 | ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 276 | ;; NO USER DEFINABLE VARIABLES BEYOND THIS POINT |
| 277 | |
Barry Warsaw | 5e21cb0 | 1997-11-05 18:41:11 +0000 | [diff] [blame] | 278 | (defconst py-emacs-features |
| 279 | (let (features) |
| 280 | ;; NTEmacs 19.34.6 has a broken make-temp-name; it always returns |
| 281 | ;; the same string. |
| 282 | (let ((tmp1 (make-temp-name "")) |
| 283 | (tmp2 (make-temp-name ""))) |
| 284 | (if (string-equal tmp1 tmp2) |
| 285 | (push 'broken-temp-names features))) |
| 286 | ;; return the features |
| 287 | features) |
Barry Warsaw | c12c62e | 1997-09-04 04:18:07 +0000 | [diff] [blame] | 288 | "A list of features extant in the Emacs you are using. |
Barry Warsaw | 6ae21ad | 1997-11-06 14:36:49 +0000 | [diff] [blame] | 289 | There are many flavors of Emacs out there, with different levels of |
| 290 | support for features needed by `python-mode'.") |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 291 | |
Barry Warsaw | fb07f40 | 1997-02-24 03:37:22 +0000 | [diff] [blame] | 292 | (defvar python-font-lock-keywords |
Barry Warsaw | b8f1166 | 1997-11-06 14:35:15 +0000 | [diff] [blame] | 293 | (let ((kw1 (mapconcat 'identity |
| 294 | '("and" "assert" "break" "class" |
| 295 | "continue" "def" "del" "elif" |
| 296 | "else" "except" "exec" "for" |
| 297 | "from" "global" "if" "import" |
| 298 | "in" "is" "lambda" "not" |
| 299 | "or" "pass" "print" "raise" |
| 300 | "return" "while" |
| 301 | ) |
| 302 | "\\|")) |
| 303 | (kw2 (mapconcat 'identity |
| 304 | '("else:" "except:" "finally:" "try:") |
| 305 | "\\|")) |
| 306 | ) |
Barry Warsaw | 33ab6e4 | 1996-03-05 00:44:31 +0000 | [diff] [blame] | 307 | (list |
Barry Warsaw | ef3c891 | 1997-11-05 18:55:50 +0000 | [diff] [blame] | 308 | ;; keywords |
Barry Warsaw | b8f1166 | 1997-11-06 14:35:15 +0000 | [diff] [blame] | 309 | (cons (concat "\\b\\(" kw1 "\\)\\b[ \n\t(]") 1) |
| 310 | ;; block introducing keywords with immediately following colons. |
| 311 | ;; Yes "except" is in both lists. |
| 312 | (cons (concat "\\b\\(" kw2 "\\)[ \n\t(]") 1) |
Barry Warsaw | 33ab6e4 | 1996-03-05 00:44:31 +0000 | [diff] [blame] | 313 | ;; classes |
| 314 | '("\\bclass[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)" |
| 315 | 1 font-lock-type-face) |
| 316 | ;; functions |
| 317 | '("\\bdef[ \t]+\\([a-zA-Z_]+[a-zA-Z0-9_]*\\)" |
| 318 | 1 font-lock-function-name-face) |
| 319 | )) |
Barry Warsaw | 62d9d6e | 1996-03-06 20:32:27 +0000 | [diff] [blame] | 320 | "Additional expressions to highlight in Python mode.") |
Barry Warsaw | fb07f40 | 1997-02-24 03:37:22 +0000 | [diff] [blame] | 321 | (put 'python-mode 'font-lock-defaults '(python-font-lock-keywords)) |
| 322 | |
Barry Warsaw | e467bfb | 1997-11-26 05:40:58 +0000 | [diff] [blame] | 323 | ;; have to bind py-file-queue before installing the kill-emacs-hook |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 324 | (defvar py-file-queue nil |
| 325 | "Queue of Python temp files awaiting execution. |
| 326 | Currently-active file is at the head of the list.") |
| 327 | |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 328 | |
| 329 | ;; Constants |
| 330 | |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 331 | (defconst py-stringlit-re |
| 332 | (concat |
Barry Warsaw | 751f493 | 1998-05-19 16:06:21 +0000 | [diff] [blame] | 333 | ;; These fail if backslash-quote ends the string (not worth |
| 334 | ;; fixing?). They precede the short versions so that the first two |
| 335 | ;; quotes don't look like an empty short string. |
| 336 | ;; |
| 337 | ;; (maybe raw), long single quoted triple quoted strings (SQTQ), |
| 338 | ;; with potential embedded single quotes |
| 339 | "[rR]?'''[^']*\\(\\('[^']\\|''[^']\\)[^']*\\)*'''" |
| 340 | "\\|" |
| 341 | ;; (maybe raw), long double quoted triple quoted strings (DQTQ), |
| 342 | ;; with potential embedded double quotes |
| 343 | "[rR]?\"\"\"[^\"]*\\(\\(\"[^\"]\\|\"\"[^\"]\\)[^\"]*\\)*\"\"\"" |
| 344 | "\\|" |
| 345 | "[rR]?'\\([^'\n\\]\\|\\\\.\\)*'" ; single-quoted |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 346 | "\\|" ; or |
Barry Warsaw | 751f493 | 1998-05-19 16:06:21 +0000 | [diff] [blame] | 347 | "[rR]?\"\\([^\"\n\\]\\|\\\\.\\)*\"" ; double-quoted |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 348 | ) |
| 349 | "Regular expression matching a Python string literal.") |
Barry Warsaw | 751f493 | 1998-05-19 16:06:21 +0000 | [diff] [blame] | 350 | |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 351 | (defconst py-continued-re |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 352 | ;; This is tricky because a trailing backslash does not mean |
| 353 | ;; continuation if it's in a comment |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 354 | (concat |
| 355 | "\\(" "[^#'\"\n\\]" "\\|" py-stringlit-re "\\)*" |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 356 | "\\\\$") |
| 357 | "Regular expression matching Python backslash continuation lines.") |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 358 | |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 359 | (defconst py-blank-or-comment-re "[ \t]*\\($\\|#\\)" |
Barry Warsaw | 71c3adb | 1998-08-10 16:34:33 +0000 | [diff] [blame] | 360 | "Regular expression matching a blank or comment line.") |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 361 | |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 362 | (defconst py-outdent-re |
| 363 | (concat "\\(" (mapconcat 'identity |
| 364 | '("else:" |
| 365 | "except\\(\\s +.*\\)?:" |
| 366 | "finally:" |
| 367 | "elif\\s +.*:") |
| 368 | "\\|") |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 369 | "\\)") |
| 370 | "Regular expression matching statements to be dedented one level.") |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 371 | |
Barry Warsaw | affc0ca | 1997-11-03 16:59:38 +0000 | [diff] [blame] | 372 | (defconst py-block-closing-keywords-re |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 373 | "\\(return\\|raise\\|break\\|continue\\|pass\\)" |
| 374 | "Regular expression matching keywords which typically close a block.") |
Barry Warsaw | affc0ca | 1997-11-03 16:59:38 +0000 | [diff] [blame] | 375 | |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 376 | (defconst py-no-outdent-re |
Barry Warsaw | affc0ca | 1997-11-03 16:59:38 +0000 | [diff] [blame] | 377 | (concat |
| 378 | "\\(" |
| 379 | (mapconcat 'identity |
| 380 | (list "try:" |
| 381 | "except\\(\\s +.*\\)?:" |
| 382 | "while\\s +.*:" |
| 383 | "for\\s +.*:" |
| 384 | "if\\s +.*:" |
| 385 | "elif\\s +.*:" |
| 386 | (concat py-block-closing-keywords-re "[ \t\n]") |
| 387 | ) |
| 388 | "\\|") |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 389 | "\\)") |
| 390 | "Regular expression matching lines not to dedent after.") |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 391 | |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 392 | (defconst py-defun-start-re |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 393 | "^\\([ \t]*\\)def[ \t]+\\([a-zA-Z_0-9]+\\)\\|\\(^[a-zA-Z_0-9]+\\)[ \t]*=" |
| 394 | ;; If you change this, you probably have to change py-current-defun |
| 395 | ;; as well. This is only used by py-current-defun to find the name |
| 396 | ;; for add-log.el. |
Barry Warsaw | 71c3adb | 1998-08-10 16:34:33 +0000 | [diff] [blame] | 397 | "Regular expression matching a function, method, or variable assignment.") |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 398 | |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 399 | (defconst py-class-start-re "^class[ \t]*\\([a-zA-Z_0-9]+\\)" |
| 400 | ;; If you change this, you probably have to change py-current-defun |
| 401 | ;; as well. This is only used by py-current-defun to find the name |
| 402 | ;; for add-log.el. |
| 403 | "Regular expression for finding a class name.") |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 404 | |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 405 | (defconst py-traceback-line-re |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 406 | "[ \t]+File \"\\([^\"]+\\)\", line \\([0-9]+\\)" |
| 407 | "Regular expression that describes tracebacks.") |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 408 | |
| 409 | |
| 410 | |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 411 | ;; Major mode boilerplate |
| 412 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 413 | ;; define a mode-specific abbrev table for those who use such things |
| 414 | (defvar python-mode-abbrev-table nil |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 415 | "Abbrev table in use in `python-mode' buffers.") |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 416 | (define-abbrev-table 'python-mode-abbrev-table nil) |
| 417 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 418 | (defvar python-mode-hook nil |
| 419 | "*Hook called by `python-mode'.") |
| 420 | |
Barry Warsaw | 145ab1c | 1998-05-19 14:49:49 +0000 | [diff] [blame] | 421 | ;; In previous version of python-mode.el, the hook was incorrectly |
| 422 | ;; called py-mode-hook, and was not defvar'd. Deprecate its use. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 423 | (and (fboundp 'make-obsolete-variable) |
| 424 | (make-obsolete-variable 'py-mode-hook 'python-mode-hook)) |
| 425 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 426 | (defvar py-mode-map () |
| 427 | "Keymap used in `python-mode' buffers.") |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 428 | (if py-mode-map |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 429 | nil |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 430 | (setq py-mode-map (make-sparse-keymap)) |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 431 | ;; electric keys |
| 432 | (define-key py-mode-map ":" 'py-electric-colon) |
| 433 | ;; indentation level modifiers |
| 434 | (define-key py-mode-map "\C-c\C-l" 'py-shift-region-left) |
| 435 | (define-key py-mode-map "\C-c\C-r" 'py-shift-region-right) |
| 436 | (define-key py-mode-map "\C-c<" 'py-shift-region-left) |
| 437 | (define-key py-mode-map "\C-c>" 'py-shift-region-right) |
| 438 | ;; subprocess commands |
| 439 | (define-key py-mode-map "\C-c\C-c" 'py-execute-buffer) |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 440 | (define-key py-mode-map "\C-c\C-m" 'py-execute-import-or-reload) |
Barry Warsaw | 1d0364b | 1998-05-19 16:15:26 +0000 | [diff] [blame] | 441 | (define-key py-mode-map "\C-c\C-s" 'py-execute-string) |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 442 | (define-key py-mode-map "\C-c|" 'py-execute-region) |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 443 | (define-key py-mode-map "\e\C-x" 'py-execute-def-or-class) |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 444 | (define-key py-mode-map "\C-c!" 'py-shell) |
Barry Warsaw | a239880 | 1998-04-09 23:28:20 +0000 | [diff] [blame] | 445 | (define-key py-mode-map "\C-c\C-t" 'py-toggle-shells) |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 446 | ;; Caution! Enter here at your own risk. We are trying to support |
| 447 | ;; several behaviors and it gets disgusting. :-( This logic ripped |
| 448 | ;; largely from CC Mode. |
| 449 | ;; |
| 450 | ;; In XEmacs 19, Emacs 19, and Emacs 20, we use this to bind |
| 451 | ;; backwards deletion behavior to DEL, which both Delete and |
| 452 | ;; Backspace get translated to. There's no way to separate this |
| 453 | ;; behavior in a clean way, so deal with it! Besides, it's been |
| 454 | ;; this way since the dawn of time. |
| 455 | (if (not (boundp 'delete-key-deletes-forward)) |
| 456 | (define-key py-mode-map "\177" 'py-electric-backspace) |
| 457 | ;; However, XEmacs 20 actually achieved enlightenment. It is |
| 458 | ;; possible to sanely define both backward and forward deletion |
| 459 | ;; behavior under X separately (TTYs are forever beyond hope, but |
| 460 | ;; who cares? XEmacs 20 does the right thing with these too). |
| 461 | (define-key py-mode-map [delete] 'py-electric-delete) |
| 462 | (define-key py-mode-map [backspace] 'py-electric-backspace)) |
Barry Warsaw | 8c4a8de | 1997-11-26 20:30:33 +0000 | [diff] [blame] | 463 | ;; Separate M-BS from C-M-h. The former should remain |
| 464 | ;; backward-kill-word. |
| 465 | (define-key py-mode-map [(control meta h)] 'py-mark-def-or-class) |
Barry Warsaw | 2518c67 | 1997-11-05 00:51:08 +0000 | [diff] [blame] | 466 | (define-key py-mode-map "\C-c\C-k" 'py-mark-block) |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 467 | ;; Miscellaneous |
| 468 | (define-key py-mode-map "\C-c:" 'py-guess-indent-offset) |
| 469 | (define-key py-mode-map "\C-c\t" 'py-indent-region) |
| 470 | (define-key py-mode-map "\C-c\C-n" 'py-next-statement) |
| 471 | (define-key py-mode-map "\C-c\C-p" 'py-previous-statement) |
| 472 | (define-key py-mode-map "\C-c\C-u" 'py-goto-block-up) |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 473 | (define-key py-mode-map "\C-c#" 'py-comment-region) |
| 474 | (define-key py-mode-map "\C-c?" 'py-describe-mode) |
| 475 | (define-key py-mode-map "\C-c\C-hm" 'py-describe-mode) |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 476 | (define-key py-mode-map "\e\C-a" 'py-beginning-of-def-or-class) |
| 477 | (define-key py-mode-map "\e\C-e" 'py-end-of-def-or-class) |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 478 | (define-key py-mode-map "\C-c-" 'py-up-exception) |
| 479 | (define-key py-mode-map "\C-c=" 'py-down-exception) |
Barry Warsaw | f8ddb6a | 1999-01-18 21:49:39 +0000 | [diff] [blame] | 480 | ;; stuff that is `standard' but doesn't interface well with |
| 481 | ;; python-mode, which forces us to rebind to special commands |
| 482 | (define-key py-mode-map "\C-xnd" 'py-narrow-to-defun) |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 483 | ;; information |
| 484 | (define-key py-mode-map "\C-c\C-b" 'py-submit-bug-report) |
| 485 | (define-key py-mode-map "\C-c\C-v" 'py-version) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 486 | ;; shadow global bindings for newline-and-indent w/ the py- version. |
| 487 | ;; BAW - this is extremely bad form, but I'm not going to change it |
| 488 | ;; for now. |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 489 | (mapcar #'(lambda (key) |
| 490 | (define-key py-mode-map key 'py-newline-and-indent)) |
| 491 | (where-is-internal 'newline-and-indent)) |
Barry Warsaw | f19feb8 | 1999-01-21 17:06:11 +0000 | [diff] [blame] | 492 | ;; Force RET to be py-newline-and-indent even if it didn't get |
| 493 | ;; mapped by the above code. motivation: Emacs' default binding for |
| 494 | ;; RET is `newline' and C-j is `newline-and-indent'. Most Pythoneers |
| 495 | ;; expect RET to do a `py-newline-and-indent' and any Emacsers who |
| 496 | ;; dislike this are probably knowledgeable enough to do a rebind. |
| 497 | ;; However, we do *not* change C-j since many Emacsers have already |
| 498 | ;; swapped RET and C-j and they don't want C-j bound to `newline' to |
| 499 | ;; change. |
| 500 | (define-key py-mode-map "\C-m" 'py-newline-and-indent) |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 501 | ) |
| 502 | |
| 503 | (defvar py-mode-output-map nil |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 504 | "Keymap used in *Python Output* buffers.") |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 505 | (if py-mode-output-map |
| 506 | nil |
| 507 | (setq py-mode-output-map (make-sparse-keymap)) |
| 508 | (define-key py-mode-output-map [button2] 'py-mouseto-exception) |
| 509 | (define-key py-mode-output-map "\C-c\C-c" 'py-goto-exception) |
| 510 | ;; TBD: Disable all self-inserting keys. This is bogus, we should |
| 511 | ;; really implement this as *Python Output* buffer being read-only |
| 512 | (mapcar #' (lambda (key) |
| 513 | (define-key py-mode-output-map key |
| 514 | #'(lambda () (interactive) (beep)))) |
| 515 | (where-is-internal 'self-insert-command)) |
Barry Warsaw | 850437a | 1995-03-08 21:50:28 +0000 | [diff] [blame] | 516 | ) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 517 | |
Barry Warsaw | 6dfbe5d | 1998-08-20 21:51:27 +0000 | [diff] [blame] | 518 | (defvar py-shell-map nil |
| 519 | "Keymap used in *Python* shell buffers.") |
| 520 | (if py-shell-map |
| 521 | nil |
| 522 | (setq py-shell-map (copy-keymap comint-mode-map)) |
| 523 | (define-key py-shell-map [tab] 'tab-to-tab-stop) |
| 524 | (define-key py-shell-map "\C-c-" 'py-up-exception) |
| 525 | (define-key py-shell-map "\C-c=" 'py-down-exception) |
| 526 | ) |
| 527 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 528 | (defvar py-mode-syntax-table nil |
| 529 | "Syntax table used in `python-mode' buffers.") |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 530 | (if py-mode-syntax-table |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 531 | nil |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 532 | (setq py-mode-syntax-table (make-syntax-table)) |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 533 | (modify-syntax-entry ?\( "()" py-mode-syntax-table) |
| 534 | (modify-syntax-entry ?\) ")(" py-mode-syntax-table) |
| 535 | (modify-syntax-entry ?\[ "(]" py-mode-syntax-table) |
| 536 | (modify-syntax-entry ?\] ")[" py-mode-syntax-table) |
| 537 | (modify-syntax-entry ?\{ "(}" py-mode-syntax-table) |
| 538 | (modify-syntax-entry ?\} "){" py-mode-syntax-table) |
| 539 | ;; Add operator symbols misassigned in the std table |
| 540 | (modify-syntax-entry ?\$ "." py-mode-syntax-table) |
| 541 | (modify-syntax-entry ?\% "." py-mode-syntax-table) |
| 542 | (modify-syntax-entry ?\& "." py-mode-syntax-table) |
| 543 | (modify-syntax-entry ?\* "." py-mode-syntax-table) |
| 544 | (modify-syntax-entry ?\+ "." py-mode-syntax-table) |
| 545 | (modify-syntax-entry ?\- "." py-mode-syntax-table) |
| 546 | (modify-syntax-entry ?\/ "." py-mode-syntax-table) |
| 547 | (modify-syntax-entry ?\< "." py-mode-syntax-table) |
| 548 | (modify-syntax-entry ?\= "." py-mode-syntax-table) |
| 549 | (modify-syntax-entry ?\> "." py-mode-syntax-table) |
| 550 | (modify-syntax-entry ?\| "." py-mode-syntax-table) |
| 551 | ;; For historical reasons, underscore is word class instead of |
| 552 | ;; symbol class. GNU conventions say it should be symbol class, but |
| 553 | ;; there's a natural conflict between what major mode authors want |
| 554 | ;; and what users expect from `forward-word' and `backward-word'. |
| 555 | ;; Guido and I have hashed this out and have decided to keep |
| 556 | ;; underscore in word class. If you're tempted to change it, try |
| 557 | ;; binding M-f and M-b to py-forward-into-nomenclature and |
| 558 | ;; py-backward-into-nomenclature instead. |
| 559 | (modify-syntax-entry ?\_ "w" py-mode-syntax-table) |
| 560 | ;; Both single quote and double quote are string delimiters |
| 561 | (modify-syntax-entry ?\' "\"" py-mode-syntax-table) |
| 562 | (modify-syntax-entry ?\" "\"" py-mode-syntax-table) |
| 563 | ;; backquote is open and close paren |
| 564 | (modify-syntax-entry ?\` "$" py-mode-syntax-table) |
| 565 | ;; comment delimiters |
| 566 | (modify-syntax-entry ?\# "<" py-mode-syntax-table) |
| 567 | (modify-syntax-entry ?\n ">" py-mode-syntax-table) |
| 568 | ) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 569 | |
Barry Warsaw | b3e81d5 | 1996-09-04 15:12:42 +0000 | [diff] [blame] | 570 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 571 | |
Barry Warsaw | bc3760b | 1998-09-14 16:16:18 +0000 | [diff] [blame] | 572 | ;; Utilities |
| 573 | |
| 574 | (defmacro py-safe (&rest body) |
| 575 | "Safely execute BODY, return nil if an error occurred." |
| 576 | (` (condition-case nil |
| 577 | (progn (,@ body)) |
| 578 | (error nil)))) |
| 579 | |
| 580 | (defsubst py-keep-region-active () |
| 581 | "Keep the region active in XEmacs." |
| 582 | ;; Ignore byte-compiler warnings you might see. Also note that |
| 583 | ;; FSF's Emacs 19 does it differently; its policy doesn't require us |
| 584 | ;; to take explicit action. |
| 585 | (and (boundp 'zmacs-region-stays) |
| 586 | (setq zmacs-region-stays t))) |
| 587 | |
| 588 | (defsubst py-point (position) |
| 589 | "Returns the value of point at certain commonly referenced POSITIONs. |
| 590 | POSITION can be one of the following symbols: |
| 591 | |
| 592 | bol -- beginning of line |
| 593 | eol -- end of line |
| 594 | bod -- beginning of def or class |
| 595 | eod -- end of def or class |
| 596 | bob -- beginning of buffer |
| 597 | eob -- end of buffer |
| 598 | boi -- back to indentation |
| 599 | bos -- beginning of statement |
| 600 | |
| 601 | This function does not modify point or mark." |
| 602 | (let ((here (point))) |
| 603 | (cond |
| 604 | ((eq position 'bol) (beginning-of-line)) |
| 605 | ((eq position 'eol) (end-of-line)) |
| 606 | ((eq position 'bod) (py-beginning-of-def-or-class)) |
| 607 | ((eq position 'eod) (py-end-of-def-or-class)) |
| 608 | ;; Kind of funny, I know, but useful for py-up-exception. |
| 609 | ((eq position 'bob) (beginning-of-buffer)) |
| 610 | ((eq position 'eob) (end-of-buffer)) |
| 611 | ((eq position 'boi) (back-to-indentation)) |
| 612 | ((eq position 'bos) (py-goto-initial-line)) |
| 613 | (t (error "Unknown buffer position requested: %s" position)) |
| 614 | ) |
| 615 | (prog1 |
| 616 | (point) |
| 617 | (goto-char here)))) |
| 618 | |
| 619 | (defsubst py-highlight-line (from to file line) |
| 620 | (cond |
| 621 | ((fboundp 'make-extent) |
| 622 | ;; XEmacs |
| 623 | (let ((e (make-extent from to))) |
| 624 | (set-extent-property e 'mouse-face 'highlight) |
| 625 | (set-extent-property e 'py-exc-info (cons file line)) |
| 626 | (set-extent-property e 'keymap py-mode-output-map))) |
| 627 | (t |
| 628 | ;; Emacs -- Please port this! |
| 629 | ) |
| 630 | )) |
| 631 | |
| 632 | (defun py-in-literal (&optional lim) |
| 633 | "Return non-nil if point is in a Python literal (a comment or string). |
| 634 | Optional argument LIM indicates the beginning of the containing form, |
| 635 | i.e. the limit on how far back to scan." |
| 636 | ;; This is the version used for non-XEmacs, which has a nicer |
| 637 | ;; interface. |
| 638 | ;; |
| 639 | ;; WARNING: Watch out for infinite recursion. |
| 640 | (let* ((lim (or lim (py-point 'bod))) |
| 641 | (state (parse-partial-sexp lim (point)))) |
| 642 | (cond |
| 643 | ((nth 3 state) 'string) |
| 644 | ((nth 4 state) 'comment) |
| 645 | (t nil)))) |
| 646 | |
| 647 | ;; XEmacs has a built-in function that should make this much quicker. |
| 648 | ;; In this case, lim is ignored |
| 649 | (defun py-fast-in-literal (&optional lim) |
| 650 | "Fast version of `py-in-literal', used only by XEmacs. |
| 651 | Optional LIM is ignored." |
| 652 | ;; don't have to worry about context == 'block-comment |
| 653 | (buffer-syntactic-context)) |
| 654 | |
| 655 | (if (fboundp 'buffer-syntactic-context) |
| 656 | (defalias 'py-in-literal 'py-fast-in-literal)) |
| 657 | |
| 658 | |
| 659 | |
Barry Warsaw | 42f707f | 1996-07-29 21:05:05 +0000 | [diff] [blame] | 660 | ;; Menu definitions, only relevent if you have the easymenu.el package |
| 661 | ;; (standard in the latest Emacs 19 and XEmacs 19 distributions). |
Barry Warsaw | 5490a06 | 1996-08-06 15:43:33 +0000 | [diff] [blame] | 662 | (defvar py-menu nil |
| 663 | "Menu for Python Mode. |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 664 | This menu will get created automatically if you have the `easymenu' |
| 665 | package. Note that the latest X/Emacs releases contain this package.") |
Barry Warsaw | 5490a06 | 1996-08-06 15:43:33 +0000 | [diff] [blame] | 666 | |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 667 | (and (py-safe (require 'easymenu) t) |
| 668 | (easy-menu-define |
| 669 | py-menu py-mode-map "Python Mode menu" |
| 670 | '("Python" |
| 671 | ["Comment Out Region" py-comment-region (mark)] |
| 672 | ["Uncomment Region" (py-comment-region (point) (mark) '(4)) (mark)] |
| 673 | "-" |
| 674 | ["Mark current block" py-mark-block t] |
Barry Warsaw | 2518c67 | 1997-11-05 00:51:08 +0000 | [diff] [blame] | 675 | ["Mark current def" py-mark-def-or-class t] |
| 676 | ["Mark current class" (py-mark-def-or-class t) t] |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 677 | "-" |
| 678 | ["Shift region left" py-shift-region-left (mark)] |
| 679 | ["Shift region right" py-shift-region-right (mark)] |
| 680 | "-" |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 681 | ["Import/reload file" py-execute-import-or-reload t] |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 682 | ["Execute buffer" py-execute-buffer t] |
| 683 | ["Execute region" py-execute-region (mark)] |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 684 | ["Execute def or class" py-execute-def-or-class (mark)] |
Barry Warsaw | 1d0364b | 1998-05-19 16:15:26 +0000 | [diff] [blame] | 685 | ["Execute string" py-execute-string t] |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 686 | ["Start interpreter..." py-shell t] |
| 687 | "-" |
| 688 | ["Go to start of block" py-goto-block-up t] |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 689 | ["Go to start of class" (py-beginning-of-def-or-class t) t] |
| 690 | ["Move to end of class" (py-end-of-def-or-class t) t] |
| 691 | ["Move to start of def" py-beginning-of-def-or-class t] |
| 692 | ["Move to end of def" py-end-of-def-or-class t] |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 693 | "-" |
| 694 | ["Describe mode" py-describe-mode t] |
| 695 | ))) |
Barry Warsaw | 42f707f | 1996-07-29 21:05:05 +0000 | [diff] [blame] | 696 | |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 697 | |
| 698 | |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 699 | ;; Imenu definitions |
| 700 | (defvar py-imenu-class-regexp |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 701 | (concat ; <<classes>> |
| 702 | "\\(" ; |
| 703 | "^[ \t]*" ; newline and maybe whitespace |
| 704 | "\\(class[ \t]+[a-zA-Z0-9_]+\\)" ; class name |
| 705 | ; possibly multiple superclasses |
Barry Warsaw | 3179fe0 | 1998-04-04 21:36:53 +0000 | [diff] [blame] | 706 | "\\([ \t]*\\((\\([a-zA-Z0-9_,. \t\n]\\)*)\\)?\\)" |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 707 | "[ \t]*:" ; and the final : |
| 708 | "\\)" ; >>classes<< |
| 709 | ) |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 710 | "Regexp for Python classes for use with the Imenu package." |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 711 | ) |
| 712 | |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 713 | (defvar py-imenu-method-regexp |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 714 | (concat ; <<methods and functions>> |
| 715 | "\\(" ; |
| 716 | "^[ \t]*" ; new line and maybe whitespace |
| 717 | "\\(def[ \t]+" ; function definitions start with def |
| 718 | "\\([a-zA-Z0-9_]+\\)" ; name is here |
| 719 | ; function arguments... |
Barry Warsaw | 1d5f988 | 1998-10-28 04:08:13 +0000 | [diff] [blame] | 720 | ;; "[ \t]*(\\([-+/a-zA-Z0-9_=,\* \t\n.()\"'#]*\\))" |
| 721 | "[ \t]*(\\([^:#]*\\))" |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 722 | "\\)" ; end of def |
| 723 | "[ \t]*:" ; and then the : |
| 724 | "\\)" ; >>methods and functions<< |
| 725 | ) |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 726 | "Regexp for Python methods/functions for use with the Imenu package." |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 727 | ) |
| 728 | |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 729 | (defvar py-imenu-method-no-arg-parens '(2 8) |
| 730 | "Indices into groups of the Python regexp for use with Imenu. |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 731 | |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 732 | Using these values will result in smaller Imenu lists, as arguments to |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 733 | functions are not listed. |
| 734 | |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 735 | See the variable `py-imenu-show-method-args-p' for more |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 736 | information.") |
| 737 | |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 738 | (defvar py-imenu-method-arg-parens '(2 7) |
Barry Warsaw | 1bbc031 | 1998-10-27 21:54:56 +0000 | [diff] [blame] | 739 | "Indices into groups of the Python regexp for use with imenu. |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 740 | Using these values will result in large Imenu lists, as arguments to |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 741 | functions are listed. |
| 742 | |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 743 | See the variable `py-imenu-show-method-args-p' for more |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 744 | information.") |
| 745 | |
| 746 | ;; Note that in this format, this variable can still be used with the |
| 747 | ;; imenu--generic-function. Otherwise, there is no real reason to have |
| 748 | ;; it. |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 749 | (defvar py-imenu-generic-expression |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 750 | (cons |
| 751 | (concat |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 752 | py-imenu-class-regexp |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 753 | "\\|" ; or... |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 754 | py-imenu-method-regexp |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 755 | ) |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 756 | py-imenu-method-no-arg-parens) |
| 757 | "Generic Python expression which may be used directly with Imenu. |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 758 | Used by setting the variable `imenu-generic-expression' to this value. |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 759 | Also, see the function \\[py-imenu-create-index] for a better |
| 760 | alternative for finding the index.") |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 761 | |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 762 | ;; These next two variables are used when searching for the Python |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 763 | ;; class/definitions. Just saving some time in accessing the |
| 764 | ;; generic-python-expression, really. |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 765 | (defvar py-imenu-generic-regexp nil) |
| 766 | (defvar py-imenu-generic-parens nil) |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 767 | |
| 768 | |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 769 | (defun py-imenu-create-index-function () |
| 770 | "Python interface function for the Imenu package. |
| 771 | Finds all Python classes and functions/methods. Calls function |
| 772 | \\[py-imenu-create-index-engine]. See that function for the details |
| 773 | of how this works." |
| 774 | (setq py-imenu-generic-regexp (car py-imenu-generic-expression) |
| 775 | py-imenu-generic-parens (if py-imenu-show-method-args-p |
| 776 | py-imenu-method-arg-parens |
| 777 | py-imenu-method-no-arg-parens)) |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 778 | (goto-char (point-min)) |
Barry Warsaw | 1d5f988 | 1998-10-28 04:08:13 +0000 | [diff] [blame] | 779 | ;; Warning: When the buffer has no classes or functions, this will |
| 780 | ;; return nil, which seems proper according to the Imenu API, but |
| 781 | ;; causes an error in the XEmacs port of Imenu. Sigh. |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 782 | (py-imenu-create-index-engine nil)) |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 783 | |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 784 | (defun py-imenu-create-index-engine (&optional start-indent) |
| 785 | "Function for finding Imenu definitions in Python. |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 786 | |
| 787 | Finds all definitions (classes, methods, or functions) in a Python |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 788 | file for the Imenu package. |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 789 | |
| 790 | Returns a possibly nested alist of the form |
| 791 | |
| 792 | (INDEX-NAME . INDEX-POSITION) |
| 793 | |
| 794 | The second element of the alist may be an alist, producing a nested |
| 795 | list as in |
| 796 | |
| 797 | (INDEX-NAME . INDEX-ALIST) |
| 798 | |
| 799 | This function should not be called directly, as it calls itself |
| 800 | recursively and requires some setup. Rather this is the engine for |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 801 | the function \\[py-imenu-create-index-function]. |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 802 | |
| 803 | It works recursively by looking for all definitions at the current |
| 804 | indention level. When it finds one, it adds it to the alist. If it |
| 805 | finds a definition at a greater indentation level, it removes the |
Barry Warsaw | 145ab1c | 1998-05-19 14:49:49 +0000 | [diff] [blame] | 806 | previous definition from the alist. In its place it adds all |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 807 | definitions found at the next indentation level. When it finds a |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 808 | definition that is less indented then the current level, it returns |
| 809 | the alist it has created thus far. |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 810 | |
| 811 | The optional argument START-INDENT indicates the starting indentation |
| 812 | at which to continue looking for Python classes, methods, or |
| 813 | functions. If this is not supplied, the function uses the indentation |
| 814 | of the first definition found." |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 815 | (let (index-alist |
| 816 | sub-method-alist |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 817 | looking-p |
| 818 | def-name prev-name |
| 819 | cur-indent def-pos |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 820 | (class-paren (first py-imenu-generic-parens)) |
| 821 | (def-paren (second py-imenu-generic-parens))) |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 822 | (setq looking-p |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 823 | (re-search-forward py-imenu-generic-regexp (point-max) t)) |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 824 | (while looking-p |
| 825 | (save-excursion |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 826 | ;; used to set def-name to this value but generic-extract-name |
| 827 | ;; is new to imenu-1.14. this way it still works with |
| 828 | ;; imenu-1.11 |
| 829 | ;;(imenu--generic-extract-name py-imenu-generic-parens)) |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 830 | (let ((cur-paren (if (match-beginning class-paren) |
| 831 | class-paren def-paren))) |
| 832 | (setq def-name |
Barry Warsaw | c852035 | 1997-11-26 06:14:40 +0000 | [diff] [blame] | 833 | (buffer-substring-no-properties (match-beginning cur-paren) |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 834 | (match-end cur-paren)))) |
Barry Warsaw | 93c88cc | 1998-08-18 02:00:44 +0000 | [diff] [blame] | 835 | (save-match-data |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 836 | (py-beginning-of-def-or-class 'either)) |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 837 | (beginning-of-line) |
| 838 | (setq cur-indent (current-indentation))) |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 839 | ;; HACK: want to go to the next correct definition location. We |
| 840 | ;; explicitly list them here but it would be better to have them |
| 841 | ;; in a list. |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 842 | (setq def-pos |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 843 | (or (match-beginning class-paren) |
| 844 | (match-beginning def-paren))) |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 845 | ;; if we don't have a starting indent level, take this one |
| 846 | (or start-indent |
| 847 | (setq start-indent cur-indent)) |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 848 | ;; if we don't have class name yet, take this one |
| 849 | (or prev-name |
| 850 | (setq prev-name def-name)) |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 851 | ;; what level is the next definition on? must be same, deeper |
| 852 | ;; or shallower indentation |
| 853 | (cond |
| 854 | ;; at the same indent level, add it to the list... |
| 855 | ((= start-indent cur-indent) |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 856 | (push (cons def-name def-pos) index-alist)) |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 857 | ;; deeper indented expression, recurse |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 858 | ((< start-indent cur-indent) |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 859 | ;; the point is currently on the expression we're supposed to |
| 860 | ;; start on, so go back to the last expression. The recursive |
| 861 | ;; call will find this place again and add it to the correct |
| 862 | ;; list |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 863 | (re-search-backward py-imenu-generic-regexp (point-min) 'move) |
| 864 | (setq sub-method-alist (py-imenu-create-index-engine cur-indent)) |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 865 | (if sub-method-alist |
| 866 | ;; we put the last element on the index-alist on the start |
| 867 | ;; of the submethod alist so the user can still get to it. |
| 868 | (let ((save-elmt (pop index-alist))) |
Barry Warsaw | c852035 | 1997-11-26 06:14:40 +0000 | [diff] [blame] | 869 | (push (cons prev-name |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 870 | (cons save-elmt sub-method-alist)) |
| 871 | index-alist)))) |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 872 | ;; found less indented expression, we're done. |
| 873 | (t |
| 874 | (setq looking-p nil) |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 875 | (re-search-backward py-imenu-generic-regexp (point-min) t))) |
| 876 | ;; end-cond |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 877 | (setq prev-name def-name) |
| 878 | (and looking-p |
| 879 | (setq looking-p |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 880 | (re-search-forward py-imenu-generic-regexp |
Barry Warsaw | 8143746 | 1996-08-01 19:48:02 +0000 | [diff] [blame] | 881 | (point-max) 'move)))) |
| 882 | (nreverse index-alist))) |
| 883 | |
Barry Warsaw | 42f707f | 1996-07-29 21:05:05 +0000 | [diff] [blame] | 884 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 885 | ;;;###autoload |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 886 | (defun python-mode () |
| 887 | "Major mode for editing Python files. |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 888 | To submit a problem report, enter `\\[py-submit-bug-report]' from a |
| 889 | `python-mode' buffer. Do `\\[py-describe-mode]' for detailed |
| 890 | documentation. To see what version of `python-mode' you are running, |
| 891 | enter `\\[py-version]'. |
| 892 | |
| 893 | This mode knows about Python indentation, tokens, comments and |
| 894 | continuation lines. Paragraphs are separated by blank lines only. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 895 | |
| 896 | COMMANDS |
| 897 | \\{py-mode-map} |
| 898 | VARIABLES |
| 899 | |
Barry Warsaw | 42f707f | 1996-07-29 21:05:05 +0000 | [diff] [blame] | 900 | py-indent-offset\t\tindentation increment |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 901 | py-block-comment-prefix\t\tcomment string used by `comment-region' |
Barry Warsaw | 42f707f | 1996-07-29 21:05:05 +0000 | [diff] [blame] | 902 | py-python-command\t\tshell command to invoke Python interpreter |
Barry Warsaw | 42f707f | 1996-07-29 21:05:05 +0000 | [diff] [blame] | 903 | py-temp-directory\t\tdirectory used for temp files (if needed) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 904 | py-beep-if-tab-change\t\tring the bell if `tab-width' is changed" |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 905 | (interactive) |
Barry Warsaw | 615d4a4 | 1996-09-04 14:14:10 +0000 | [diff] [blame] | 906 | ;; set up local variables |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 907 | (kill-all-local-variables) |
Barry Warsaw | 615d4a4 | 1996-09-04 14:14:10 +0000 | [diff] [blame] | 908 | (make-local-variable 'font-lock-defaults) |
| 909 | (make-local-variable 'paragraph-separate) |
| 910 | (make-local-variable 'paragraph-start) |
| 911 | (make-local-variable 'require-final-newline) |
| 912 | (make-local-variable 'comment-start) |
Barry Warsaw | 5c8bef1 | 1996-12-17 21:56:10 +0000 | [diff] [blame] | 913 | (make-local-variable 'comment-end) |
Barry Warsaw | 615d4a4 | 1996-09-04 14:14:10 +0000 | [diff] [blame] | 914 | (make-local-variable 'comment-start-skip) |
| 915 | (make-local-variable 'comment-column) |
Barry Warsaw | 003932a | 1998-07-07 15:11:24 +0000 | [diff] [blame] | 916 | (make-local-variable 'comment-indent-function) |
Barry Warsaw | 615d4a4 | 1996-09-04 14:14:10 +0000 | [diff] [blame] | 917 | (make-local-variable 'indent-region-function) |
| 918 | (make-local-variable 'indent-line-function) |
Barry Warsaw | b3e81d5 | 1996-09-04 15:12:42 +0000 | [diff] [blame] | 919 | (make-local-variable 'add-log-current-defun-function) |
Barry Warsaw | 615d4a4 | 1996-09-04 14:14:10 +0000 | [diff] [blame] | 920 | ;; |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 921 | (set-syntax-table py-mode-syntax-table) |
Barry Warsaw | 003932a | 1998-07-07 15:11:24 +0000 | [diff] [blame] | 922 | (setq major-mode 'python-mode |
| 923 | mode-name "Python" |
| 924 | local-abbrev-table python-mode-abbrev-table |
| 925 | font-lock-defaults '(python-font-lock-keywords) |
| 926 | paragraph-separate "^[ \t]*$" |
| 927 | paragraph-start "^[ \t]*$" |
| 928 | require-final-newline t |
| 929 | comment-start "# " |
| 930 | comment-end "" |
| 931 | comment-start-skip "# *" |
| 932 | comment-column 40 |
| 933 | comment-indent-function 'py-comment-indent-function |
| 934 | indent-region-function 'py-indent-region |
| 935 | indent-line-function 'py-indent-line |
Barry Warsaw | b3e81d5 | 1996-09-04 15:12:42 +0000 | [diff] [blame] | 936 | ;; tell add-log.el how to find the current function/method/variable |
| 937 | add-log-current-defun-function 'py-current-defun |
Barry Warsaw | b1f8951 | 1996-09-03 16:38:30 +0000 | [diff] [blame] | 938 | ) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 939 | (use-local-map py-mode-map) |
Barry Warsaw | 42f707f | 1996-07-29 21:05:05 +0000 | [diff] [blame] | 940 | ;; add the menu |
| 941 | (if py-menu |
| 942 | (easy-menu-add py-menu)) |
Barry Warsaw | 57697af | 1995-09-14 20:01:14 +0000 | [diff] [blame] | 943 | ;; Emacs 19 requires this |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 944 | (if (boundp 'comment-multi-line) |
Barry Warsaw | 57697af | 1995-09-14 20:01:14 +0000 | [diff] [blame] | 945 | (setq comment-multi-line nil)) |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 946 | ;; Install Imenu if available |
Barry Warsaw | 742a511 | 1998-03-13 17:29:15 +0000 | [diff] [blame] | 947 | (when (py-safe (require 'imenu)) |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 948 | (setq imenu-create-index-function #'py-imenu-create-index-function) |
| 949 | (setq imenu-generic-expression py-imenu-generic-expression) |
Barry Warsaw | 742a511 | 1998-03-13 17:29:15 +0000 | [diff] [blame] | 950 | (if (fboundp 'imenu-add-to-menubar) |
| 951 | (imenu-add-to-menubar (format "%s-%s" "IM" mode-name))) |
| 952 | ) |
| 953 | ;; Run the mode hook. Note that py-mode-hook is deprecated. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 954 | (if python-mode-hook |
| 955 | (run-hooks 'python-mode-hook) |
Barry Warsaw | 742a511 | 1998-03-13 17:29:15 +0000 | [diff] [blame] | 956 | (run-hooks 'py-mode-hook)) |
| 957 | ;; Now do the automagical guessing |
| 958 | (if py-smart-indentation |
| 959 | (let ((offset py-indent-offset)) |
Barry Warsaw | 145ab1c | 1998-05-19 14:49:49 +0000 | [diff] [blame] | 960 | ;; It's okay if this fails to guess a good value |
Barry Warsaw | 742a511 | 1998-03-13 17:29:15 +0000 | [diff] [blame] | 961 | (if (and (py-safe (py-guess-indent-offset)) |
| 962 | (<= py-indent-offset 8) |
| 963 | (>= py-indent-offset 2)) |
| 964 | (setq offset py-indent-offset)) |
| 965 | (setq py-indent-offset offset) |
Barry Warsaw | 639eea6 | 1998-03-16 18:12:13 +0000 | [diff] [blame] | 966 | ;; Only turn indent-tabs-mode off if tab-width != |
| 967 | ;; py-indent-offset. Never turn it on, because the user must |
| 968 | ;; have explicitly turned it off. |
| 969 | (if (/= tab-width py-indent-offset) |
| 970 | (setq indent-tabs-mode nil)) |
Barry Warsaw | 742a511 | 1998-03-13 17:29:15 +0000 | [diff] [blame] | 971 | ))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 972 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 973 | |
Barry Warsaw | b91b743 | 1995-03-14 15:55:20 +0000 | [diff] [blame] | 974 | ;; electric characters |
Barry Warsaw | 3874a3d | 1995-03-14 22:05:53 +0000 | [diff] [blame] | 975 | (defun py-outdent-p () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 976 | "Returns non-nil if the current line should dedent one level." |
Barry Warsaw | 3874a3d | 1995-03-14 22:05:53 +0000 | [diff] [blame] | 977 | (save-excursion |
| 978 | (and (progn (back-to-indentation) |
| 979 | (looking-at py-outdent-re)) |
Barry Warsaw | 1a1c6bb | 1999-01-09 17:22:38 +0000 | [diff] [blame] | 980 | ;; short circuit infloop on illegal construct |
| 981 | (not (bobp)) |
Barry Warsaw | f06777d | 1998-01-21 05:36:18 +0000 | [diff] [blame] | 982 | (progn (forward-line -1) |
| 983 | (py-goto-initial-line) |
| 984 | (back-to-indentation) |
Barry Warsaw | 3874a3d | 1995-03-14 22:05:53 +0000 | [diff] [blame] | 985 | (while (or (looking-at py-blank-or-comment-re) |
| 986 | (bobp)) |
| 987 | (backward-to-indentation 1)) |
| 988 | (not (looking-at py-no-outdent-re))) |
| 989 | ))) |
| 990 | |
Barry Warsaw | b91b743 | 1995-03-14 15:55:20 +0000 | [diff] [blame] | 991 | (defun py-electric-colon (arg) |
| 992 | "Insert a colon. |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 993 | In certain cases the line is dedented appropriately. If a numeric |
| 994 | argument ARG is provided, that many colons are inserted |
| 995 | non-electrically. Electric behavior is inhibited inside a string or |
| 996 | comment." |
Barry Warsaw | b91b743 | 1995-03-14 15:55:20 +0000 | [diff] [blame] | 997 | (interactive "P") |
| 998 | (self-insert-command (prefix-numeric-value arg)) |
Barry Warsaw | 0c6563f | 1995-09-14 20:57:02 +0000 | [diff] [blame] | 999 | ;; are we in a string or comment? |
| 1000 | (if (save-excursion |
| 1001 | (let ((pps (parse-partial-sexp (save-excursion |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 1002 | (py-beginning-of-def-or-class) |
Barry Warsaw | 0c6563f | 1995-09-14 20:57:02 +0000 | [diff] [blame] | 1003 | (point)) |
| 1004 | (point)))) |
| 1005 | (not (or (nth 3 pps) (nth 4 pps))))) |
| 1006 | (save-excursion |
| 1007 | (let ((here (point)) |
| 1008 | (outdent 0) |
Barry Warsaw | 7cb505c | 1996-10-23 20:44:59 +0000 | [diff] [blame] | 1009 | (indent (py-compute-indentation t))) |
Barry Warsaw | 0c6563f | 1995-09-14 20:57:02 +0000 | [diff] [blame] | 1010 | (if (and (not arg) |
| 1011 | (py-outdent-p) |
| 1012 | (= indent (save-excursion |
Barry Warsaw | a766182 | 1996-08-02 16:22:43 +0000 | [diff] [blame] | 1013 | (py-next-statement -1) |
Barry Warsaw | 7cb505c | 1996-10-23 20:44:59 +0000 | [diff] [blame] | 1014 | (py-compute-indentation t))) |
Barry Warsaw | 0c6563f | 1995-09-14 20:57:02 +0000 | [diff] [blame] | 1015 | ) |
| 1016 | (setq outdent py-indent-offset)) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1017 | ;; Don't indent, only dedent. This assumes that any lines |
| 1018 | ;; that are already dedented relative to |
| 1019 | ;; py-compute-indentation were put there on purpose. It's |
| 1020 | ;; highly annoying to have `:' indent for you. Use TAB, C-c |
| 1021 | ;; C-l or C-c C-r to adjust. TBD: Is there a better way to |
| 1022 | ;; determine this??? |
Barry Warsaw | 0c6563f | 1995-09-14 20:57:02 +0000 | [diff] [blame] | 1023 | (if (< (current-indentation) indent) nil |
| 1024 | (goto-char here) |
| 1025 | (beginning-of-line) |
| 1026 | (delete-horizontal-space) |
| 1027 | (indent-to (- indent outdent)) |
| 1028 | ))))) |
Barry Warsaw | b91b743 | 1995-03-14 15:55:20 +0000 | [diff] [blame] | 1029 | |
| 1030 | |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1031 | ;; Python subprocess utilities and filters |
| 1032 | (defun py-execute-file (proc filename) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1033 | "Send to Python interpreter process PROC \"execfile('FILENAME')\". |
| 1034 | Make that process's buffer visible and force display. Also make |
| 1035 | comint believe the user typed this string so that |
| 1036 | `kill-output-from-shell' does The Right Thing." |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1037 | (let ((curbuf (current-buffer)) |
| 1038 | (procbuf (process-buffer proc)) |
Barry Warsaw | 3c96f6f | 1998-08-20 19:44:51 +0000 | [diff] [blame] | 1039 | ; (comint-scroll-to-bottom-on-output t) |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1040 | (msg (format "## working on region in file %s...\n" filename)) |
Barry Warsaw | 02e5f69 | 1998-09-24 23:48:40 +0000 | [diff] [blame] | 1041 | (cmd (format "execfile(r'%s')\n" filename))) |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1042 | (unwind-protect |
Barry Warsaw | 3c96f6f | 1998-08-20 19:44:51 +0000 | [diff] [blame] | 1043 | (save-excursion |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1044 | (set-buffer procbuf) |
| 1045 | (goto-char (point-max)) |
| 1046 | (move-marker (process-mark proc) (point)) |
| 1047 | (funcall (process-filter proc) proc msg)) |
| 1048 | (set-buffer curbuf)) |
| 1049 | (process-send-string proc cmd))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1050 | |
Barry Warsaw | 3c96f6f | 1998-08-20 19:44:51 +0000 | [diff] [blame] | 1051 | (defun py-comint-output-filter-function (string) |
| 1052 | "Watch output for Python prompt and exec next file waiting in queue. |
| 1053 | This function is appropriate for `comint-output-filter-functions'." |
Barry Warsaw | 014e0e2 | 1998-11-17 19:24:47 +0000 | [diff] [blame] | 1054 | ;; TBD: this should probably use split-string |
Barry Warsaw | 4f94c73 | 1998-09-25 19:40:10 +0000 | [diff] [blame] | 1055 | (when (and (or (string-equal string ">>> ") |
Barry Warsaw | 4f94c73 | 1998-09-25 19:40:10 +0000 | [diff] [blame] | 1056 | (and (>= (length string) 5) |
| 1057 | (string-equal (substring string -5) "\n>>> "))) |
Barry Warsaw | 3c96f6f | 1998-08-20 19:44:51 +0000 | [diff] [blame] | 1058 | py-file-queue) |
| 1059 | (py-safe (delete-file (car py-file-queue))) |
| 1060 | (setq py-file-queue (cdr py-file-queue)) |
| 1061 | (if py-file-queue |
| 1062 | (let ((pyproc (get-buffer-process (current-buffer)))) |
| 1063 | (py-execute-file pyproc (car py-file-queue)))) |
| 1064 | )) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1065 | |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1066 | (defun py-postprocess-output-buffer (buf) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1067 | "Highlight exceptions found in BUF. |
| 1068 | If an exception occurred return t, otherwise return nil. BUF must exist." |
Barry Warsaw | f9b99f4 | 1998-03-26 16:08:59 +0000 | [diff] [blame] | 1069 | (let (line file bol err-p) |
Barry Warsaw | 9981d22 | 1997-12-03 05:25:48 +0000 | [diff] [blame] | 1070 | (save-excursion |
| 1071 | (set-buffer buf) |
| 1072 | (beginning-of-buffer) |
| 1073 | (while (re-search-forward py-traceback-line-re nil t) |
| 1074 | (setq file (match-string 1) |
| 1075 | line (string-to-int (match-string 2)) |
| 1076 | bol (py-point 'bol)) |
Barry Warsaw | f9b99f4 | 1998-03-26 16:08:59 +0000 | [diff] [blame] | 1077 | (py-highlight-line bol (py-point 'eol) file line))) |
| 1078 | (when (and py-jump-on-exception line) |
| 1079 | (beep) |
| 1080 | (py-jump-to-exception file line) |
| 1081 | (setq err-p t)) |
| 1082 | err-p)) |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1083 | |
Barry Warsaw | 9981d22 | 1997-12-03 05:25:48 +0000 | [diff] [blame] | 1084 | |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1085 | |
| 1086 | ;;; Subprocess commands |
| 1087 | |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1088 | ;; only used when (memq 'broken-temp-names py-emacs-features) |
| 1089 | (defvar py-serial-number 0) |
| 1090 | (defvar py-exception-buffer nil) |
| 1091 | (defconst py-output-buffer "*Python Output*") |
Barry Warsaw | a239880 | 1998-04-09 23:28:20 +0000 | [diff] [blame] | 1092 | (make-variable-buffer-local 'py-output-buffer) |
| 1093 | |
| 1094 | ;; for toggling between CPython and JPython |
| 1095 | (defvar py-which-shell py-python-command) |
| 1096 | (defvar py-which-args py-python-command-args) |
| 1097 | (defvar py-which-bufname "Python") |
| 1098 | (make-variable-buffer-local 'py-which-shell) |
| 1099 | (make-variable-buffer-local 'py-which-args) |
| 1100 | (make-variable-buffer-local 'py-which-bufname) |
| 1101 | |
| 1102 | (defun py-toggle-shells (arg) |
| 1103 | "Toggles between the CPython and JPython shells. |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1104 | With positive argument ARG (interactively \\[universal-argument]), |
| 1105 | uses the CPython shell, with negative ARG uses the JPython shell, and |
| 1106 | with a zero argument, toggles the shell." |
Barry Warsaw | a239880 | 1998-04-09 23:28:20 +0000 | [diff] [blame] | 1107 | (interactive "P") |
| 1108 | ;; default is to toggle |
| 1109 | (if (null arg) |
| 1110 | (setq arg 0)) |
| 1111 | ;; toggle if zero |
| 1112 | (if (= arg 0) |
| 1113 | (if (string-equal py-which-bufname "Python") |
| 1114 | (setq arg -1) |
| 1115 | (setq arg 1))) |
| 1116 | (let (msg) |
| 1117 | (cond |
| 1118 | ((< 0 arg) |
| 1119 | ;; set to CPython |
| 1120 | (setq py-which-shell py-python-command |
| 1121 | py-which-args py-python-command-args |
| 1122 | py-which-bufname "Python" |
| 1123 | msg "CPython" |
| 1124 | mode-name "Python")) |
| 1125 | ((> 0 arg) |
| 1126 | (setq py-which-shell py-jpython-command |
| 1127 | py-which-args py-jpython-command-args |
| 1128 | py-which-bufname "JPython" |
| 1129 | msg "JPython" |
| 1130 | mode-name "JPython")) |
| 1131 | ) |
Barry Warsaw | ea609c1 | 1998-04-10 16:08:26 +0000 | [diff] [blame] | 1132 | (message "Using the %s shell" msg) |
Barry Warsaw | a239880 | 1998-04-09 23:28:20 +0000 | [diff] [blame] | 1133 | (setq py-output-buffer (format "*%s Output*" py-which-bufname)))) |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1134 | |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1135 | ;;;###autoload |
| 1136 | (defun py-shell () |
| 1137 | "Start an interactive Python interpreter in another window. |
| 1138 | This is like Shell mode, except that Python is running in the window |
| 1139 | instead of a shell. See the `Interactive Shell' and `Shell Mode' |
| 1140 | sections of the Emacs manual for details, especially for the key |
| 1141 | bindings active in the `*Python*' buffer. |
| 1142 | |
Barry Warsaw | a239880 | 1998-04-09 23:28:20 +0000 | [diff] [blame] | 1143 | Note: You can toggle between using the CPython interpreter and the |
| 1144 | JPython interpreter by hitting \\[py-toggle-shells]. This toggles |
| 1145 | buffer local variables which control whether all your subshell |
| 1146 | interactions happen to the `*JPython*' or `*Python*' buffers (the |
| 1147 | latter is the name used for the CPython buffer). |
| 1148 | |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1149 | Warning: Don't use an interactive Python if you change sys.ps1 or |
| 1150 | sys.ps2 from their default values, or if you're running code that |
| 1151 | prints `>>> ' or `... ' at the start of a line. `python-mode' can't |
| 1152 | distinguish your output from Python's output, and assumes that `>>> ' |
| 1153 | at the start of a line is a prompt from Python. Similarly, the Emacs |
| 1154 | Shell mode code assumes that both `>>> ' and `... ' at the start of a |
| 1155 | line are Python prompts. Bad things can happen if you fool either |
| 1156 | mode. |
| 1157 | |
| 1158 | Warning: If you do any editing *in* the process buffer *while* the |
| 1159 | buffer is accepting output from Python, do NOT attempt to `undo' the |
| 1160 | changes. Some of the output (nowhere near the parts you changed!) may |
| 1161 | be lost if you do. This appears to be an Emacs bug, an unfortunate |
| 1162 | interaction between undo and process filters; the same problem exists in |
| 1163 | non-Python process buffers using the default (Emacs-supplied) process |
| 1164 | filter." |
| 1165 | ;; BAW - should undo be disabled in the python process buffer, if |
| 1166 | ;; this bug still exists? |
| 1167 | (interactive) |
Barry Warsaw | 2518c67 | 1997-11-05 00:51:08 +0000 | [diff] [blame] | 1168 | (switch-to-buffer-other-window |
Barry Warsaw | a239880 | 1998-04-09 23:28:20 +0000 | [diff] [blame] | 1169 | (apply 'make-comint py-which-bufname py-which-shell nil py-which-args)) |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1170 | (make-local-variable 'comint-prompt-regexp) |
Barry Warsaw | ebc7b7a | 1998-05-19 15:01:06 +0000 | [diff] [blame] | 1171 | (setq comint-prompt-regexp "^>>> \\|^[.][.][.] \\|^(pdb) ") |
Barry Warsaw | 3c96f6f | 1998-08-20 19:44:51 +0000 | [diff] [blame] | 1172 | (add-hook 'comint-output-filter-functions 'py-comint-output-filter-function) |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1173 | (set-syntax-table py-mode-syntax-table) |
Barry Warsaw | 6dfbe5d | 1998-08-20 21:51:27 +0000 | [diff] [blame] | 1174 | (use-local-map py-shell-map) |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1175 | ) |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1176 | |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1177 | (defun py-clear-queue () |
| 1178 | "Clear the queue of temporary files waiting to execute." |
| 1179 | (interactive) |
| 1180 | (let ((n (length py-file-queue))) |
| 1181 | (mapcar 'delete-file py-file-queue) |
| 1182 | (setq py-file-queue nil) |
| 1183 | (message "%d pending files de-queued." n))) |
| 1184 | |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 1185 | |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1186 | (defun py-execute-region (start end &optional async) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1187 | "Execute the region in a Python interpreter. |
| 1188 | |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1189 | The region is first copied into a temporary file (in the directory |
| 1190 | `py-temp-directory'). If there is no Python interpreter shell |
| 1191 | running, this file is executed synchronously using |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1192 | `shell-command-on-region'. If the program is long running, use |
| 1193 | \\[universal-argument] to run the command asynchronously in its own |
| 1194 | buffer. |
| 1195 | |
| 1196 | When this function is used programmatically, arguments START and END |
| 1197 | specify the region to execute, and optional third argument ASYNC, if |
| 1198 | non-nil, specifies to run the command asynchronously in its own |
| 1199 | buffer. |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1200 | |
| 1201 | If the Python interpreter shell is running, the region is execfile()'d |
| 1202 | in that shell. If you try to execute regions too quickly, |
| 1203 | `python-mode' will queue them up and execute them one at a time when |
| 1204 | it sees a `>>> ' prompt from Python. Each time this happens, the |
| 1205 | process buffer is popped into a window (if it's not already in some |
| 1206 | window) so you can see it, and a comment of the form |
| 1207 | |
| 1208 | \t## working on region in file <name>... |
| 1209 | |
| 1210 | is inserted at the end. See also the command `py-clear-queue'." |
| 1211 | (interactive "r\nP") |
| 1212 | (or (< start end) |
| 1213 | (error "Region is empty")) |
Barry Warsaw | 014e0e2 | 1998-11-17 19:24:47 +0000 | [diff] [blame] | 1214 | (let* ((proc (get-process py-which-bufname)) |
Barry Warsaw | 5e21cb0 | 1997-11-05 18:41:11 +0000 | [diff] [blame] | 1215 | (temp (if (memq 'broken-temp-names py-emacs-features) |
Barry Warsaw | 1b34424 | 1998-08-07 22:24:16 +0000 | [diff] [blame] | 1216 | (let |
| 1217 | ((sn py-serial-number) |
| 1218 | (pid (and (fboundp 'emacs-pid) (emacs-pid)))) |
| 1219 | (setq py-serial-number (1+ py-serial-number)) |
| 1220 | (if pid |
| 1221 | (format "python-%d-%d" sn pid) |
| 1222 | (format "python-%d" sn))) |
Barry Warsaw | 2f32fbb | 1998-02-25 16:45:43 +0000 | [diff] [blame] | 1223 | (make-temp-name "python-"))) |
| 1224 | (file (expand-file-name temp py-temp-directory))) |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1225 | (write-region start end file nil 'nomsg) |
| 1226 | (cond |
Barry Warsaw | 145ab1c | 1998-05-19 14:49:49 +0000 | [diff] [blame] | 1227 | ;; always run the code in its own asynchronous subprocess |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1228 | (async |
Barry Warsaw | 34d8317 | 1998-11-20 03:04:07 +0000 | [diff] [blame] | 1229 | (let* ((buf (generate-new-buffer-name py-output-buffer)) |
| 1230 | ;; TBD: a horrible hack, but why create new Custom variables? |
| 1231 | (arg (if (string-equal py-which-bufname "Python") |
| 1232 | "-u" ""))) |
| 1233 | (start-process py-which-bufname buf py-which-shell arg file) |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1234 | (pop-to-buffer buf) |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1235 | (py-postprocess-output-buffer buf) |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1236 | )) |
| 1237 | ;; if the Python interpreter shell is running, queue it up for |
| 1238 | ;; execution there. |
| 1239 | (proc |
| 1240 | ;; use the existing python shell |
| 1241 | (if (not py-file-queue) |
| 1242 | (py-execute-file proc file) |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1243 | (message "File %s queued for execution" file)) |
Barry Warsaw | 3c96f6f | 1998-08-20 19:44:51 +0000 | [diff] [blame] | 1244 | (setq py-file-queue (append py-file-queue (list file))) |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1245 | (setq py-exception-buffer (cons file (current-buffer)))) |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1246 | (t |
Barry Warsaw | 34d8317 | 1998-11-20 03:04:07 +0000 | [diff] [blame] | 1247 | ;; TBD: a horrible hack, buy why create new Custom variables? |
| 1248 | (let ((cmd (concat py-which-shell |
| 1249 | (if (string-equal py-which-bufname "JPython") |
| 1250 | " -" "")))) |
| 1251 | ;; otherwise either run it synchronously in a subprocess |
| 1252 | (shell-command-on-region start end cmd py-output-buffer) |
| 1253 | ;; shell-command-on-region kills the output buffer if it never |
| 1254 | ;; existed and there's no output from the command |
| 1255 | (if (not (get-buffer py-output-buffer)) |
| 1256 | (message "No output.") |
| 1257 | (setq py-exception-buffer (current-buffer)) |
| 1258 | (let ((err-p (py-postprocess-output-buffer py-output-buffer))) |
| 1259 | (pop-to-buffer py-output-buffer) |
| 1260 | (if err-p |
| 1261 | (pop-to-buffer py-exception-buffer))) |
| 1262 | ))) |
Barry Warsaw | 512af04 | 1998-03-25 23:27:17 +0000 | [diff] [blame] | 1263 | ))) |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1264 | |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 1265 | |
| 1266 | ;; Code execution commands |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1267 | (defun py-execute-buffer (&optional async) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1268 | "Send the contents of the buffer to a Python interpreter. |
Barry Warsaw | c0ecb53 | 1998-01-20 21:43:34 +0000 | [diff] [blame] | 1269 | If the file local variable `py-master-file' is non-nil, execute the |
| 1270 | named file instead of the buffer's file. |
| 1271 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1272 | If there is a *Python* process buffer it is used. If a clipping |
| 1273 | restriction is in effect, only the accessible portion of the buffer is |
| 1274 | sent. A trailing newline will be supplied if needed. |
| 1275 | |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1276 | See the `\\[py-execute-region]' docs for an account of some |
| 1277 | subtleties, including the use of the optional ASYNC argument." |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1278 | (interactive "P") |
Barry Warsaw | c0ecb53 | 1998-01-20 21:43:34 +0000 | [diff] [blame] | 1279 | (if py-master-file |
| 1280 | (let* ((filename (expand-file-name py-master-file)) |
| 1281 | (buffer (or (get-file-buffer filename) |
| 1282 | (find-file-noselect filename)))) |
| 1283 | (set-buffer buffer))) |
Barry Warsaw | a97a3f3 | 1997-11-04 18:47:06 +0000 | [diff] [blame] | 1284 | (py-execute-region (point-min) (point-max) async)) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1285 | |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 1286 | (defun py-execute-import-or-reload (&optional async) |
| 1287 | "Import the current buffer's file in a Python interpreter. |
| 1288 | |
| 1289 | If the file has already been imported, then do reload instead to get |
Barry Warsaw | 7c29b23 | 1998-07-07 17:45:38 +0000 | [diff] [blame] | 1290 | the latest version. |
| 1291 | |
| 1292 | If the file's name does not end in \".py\", then do execfile instead. |
| 1293 | |
| 1294 | If the current buffer is not visiting a file, do `py-execute-buffer' |
| 1295 | instead. |
| 1296 | |
| 1297 | If the file local variable `py-master-file' is non-nil, import or |
| 1298 | reload the named file instead of the buffer's file. The file may be |
| 1299 | saved based on the value of `py-execute-import-or-reload-save-p'. |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 1300 | |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1301 | See the `\\[py-execute-region]' docs for an account of some |
| 1302 | subtleties, including the use of the optional ASYNC argument. |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 1303 | |
Barry Warsaw | 7c29b23 | 1998-07-07 17:45:38 +0000 | [diff] [blame] | 1304 | This may be preferable to `\\[py-execute-buffer]' because: |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 1305 | |
| 1306 | - Definitions stay in their module rather than appearing at top |
| 1307 | level, where they would clutter the global namespace and not affect |
| 1308 | uses of qualified names (MODULE.NAME). |
| 1309 | |
| 1310 | - The Python debugger gets line number information about the functions." |
| 1311 | (interactive "P") |
| 1312 | ;; Check file local variable py-master-file |
| 1313 | (if py-master-file |
| 1314 | (let* ((filename (expand-file-name py-master-file)) |
| 1315 | (buffer (or (get-file-buffer filename) |
| 1316 | (find-file-noselect filename)))) |
| 1317 | (set-buffer buffer))) |
| 1318 | (let ((file (buffer-file-name (current-buffer)))) |
| 1319 | (if file |
| 1320 | (progn |
Barry Warsaw | 3bfed5b | 1998-05-19 16:25:04 +0000 | [diff] [blame] | 1321 | ;; Maybe save some buffers |
| 1322 | (save-some-buffers (not py-ask-about-save) nil) |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 1323 | (py-execute-string |
| 1324 | (if (string-match "\\.py$" file) |
| 1325 | (let ((f (file-name-sans-extension |
| 1326 | (file-name-nondirectory file)))) |
| 1327 | (format "if globals().has_key('%s'):\n reload(%s)\nelse:\n import %s\n" |
| 1328 | f f f)) |
Barry Warsaw | 02e5f69 | 1998-09-24 23:48:40 +0000 | [diff] [blame] | 1329 | (format "execfile(r'%s')\n" file)) |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 1330 | async)) |
| 1331 | ;; else |
| 1332 | (py-execute-buffer async)))) |
| 1333 | |
| 1334 | |
| 1335 | (defun py-execute-def-or-class (&optional async) |
| 1336 | "Send the current function or class definition to a Python interpreter. |
| 1337 | |
| 1338 | If there is a *Python* process buffer it is used. |
| 1339 | |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1340 | See the `\\[py-execute-region]' docs for an account of some |
| 1341 | subtleties, including the use of the optional ASYNC argument." |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 1342 | (interactive "P") |
| 1343 | (save-excursion |
| 1344 | (py-mark-def-or-class) |
| 1345 | ;; mark is before point |
| 1346 | (py-execute-region (mark) (point) async))) |
| 1347 | |
| 1348 | |
| 1349 | (defun py-execute-string (string &optional async) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1350 | "Send the argument STRING to a Python interpreter. |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 1351 | |
| 1352 | If there is a *Python* process buffer it is used. |
| 1353 | |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1354 | See the `\\[py-execute-region]' docs for an account of some |
| 1355 | subtleties, including the use of the optional ASYNC argument." |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 1356 | (interactive "sExecute Python command: ") |
| 1357 | (save-excursion |
| 1358 | (set-buffer (get-buffer-create |
| 1359 | (generate-new-buffer-name " *Python Command*"))) |
| 1360 | (insert string) |
| 1361 | (py-execute-region (point-min) (point-max) async))) |
| 1362 | |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1363 | |
| 1364 | |
| 1365 | (defun py-jump-to-exception (file line) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1366 | "Jump to the Python code in FILE at LINE." |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1367 | (let ((buffer (cond ((string-equal file "<stdin>") |
Barry Warsaw | ebc7b7a | 1998-05-19 15:01:06 +0000 | [diff] [blame] | 1368 | (if (consp py-exception-buffer) |
| 1369 | (cdr py-exception-buffer) |
| 1370 | py-exception-buffer)) |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1371 | ((and (consp py-exception-buffer) |
| 1372 | (string-equal file (car py-exception-buffer))) |
| 1373 | (cdr py-exception-buffer)) |
| 1374 | ((py-safe (find-file-noselect file))) |
| 1375 | ;; could not figure out what file the exception |
| 1376 | ;; is pointing to, so prompt for it |
| 1377 | (t (find-file (read-file-name "Exception file: " |
| 1378 | nil |
| 1379 | file t)))))) |
| 1380 | (pop-to-buffer buffer) |
Barry Warsaw | ebc7b7a | 1998-05-19 15:01:06 +0000 | [diff] [blame] | 1381 | ;; Force Python mode |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 1382 | (if (not (eq major-mode 'python-mode)) |
Barry Warsaw | ebc7b7a | 1998-05-19 15:01:06 +0000 | [diff] [blame] | 1383 | (python-mode)) |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1384 | (goto-line line) |
| 1385 | (message "Jumping to exception in file %s on line %d" file line))) |
| 1386 | |
| 1387 | (defun py-mouseto-exception (event) |
Barry Warsaw | 12c9294 | 1998-08-10 21:44:37 +0000 | [diff] [blame] | 1388 | "Jump to the code which caused the Python exception at EVENT. |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1389 | EVENT is usually a mouse click." |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1390 | (interactive "e") |
| 1391 | (cond |
| 1392 | ((fboundp 'event-point) |
| 1393 | ;; XEmacs |
| 1394 | (let* ((point (event-point event)) |
| 1395 | (buffer (event-buffer event)) |
| 1396 | (e (and point buffer (extent-at point buffer 'py-exc-info))) |
| 1397 | (info (and e (extent-property e 'py-exc-info)))) |
| 1398 | (message "Event point: %d, info: %s" point info) |
| 1399 | (and info |
| 1400 | (py-jump-to-exception (car info) (cdr info))) |
| 1401 | )) |
| 1402 | ;; Emacs -- Please port this! |
| 1403 | )) |
| 1404 | |
| 1405 | (defun py-goto-exception () |
| 1406 | "Go to the line indicated by the traceback." |
| 1407 | (interactive) |
| 1408 | (let (file line) |
| 1409 | (save-excursion |
| 1410 | (beginning-of-line) |
| 1411 | (if (looking-at py-traceback-line-re) |
| 1412 | (setq file (match-string 1) |
| 1413 | line (string-to-int (match-string 2))))) |
| 1414 | (if (not file) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1415 | (error "Not on a traceback line")) |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1416 | (py-jump-to-exception file line))) |
| 1417 | |
| 1418 | (defun py-find-next-exception (start buffer searchdir errwhere) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1419 | "Find the next Python exception and jump to the code that caused it. |
| 1420 | START is the buffer position in BUFFER from which to begin searching |
| 1421 | for an exception. SEARCHDIR is a function, either |
| 1422 | `re-search-backward' or `re-search-forward' indicating the direction |
| 1423 | to search. ERRWHERE is used in an error message if the limit (top or |
| 1424 | bottom) of the trackback stack is encountered." |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1425 | (let (file line) |
| 1426 | (save-excursion |
| 1427 | (set-buffer buffer) |
| 1428 | (goto-char (py-point start)) |
| 1429 | (if (funcall searchdir py-traceback-line-re nil t) |
| 1430 | (setq file (match-string 1) |
| 1431 | line (string-to-int (match-string 2))))) |
| 1432 | (if (and file line) |
| 1433 | (py-jump-to-exception file line) |
| 1434 | (error "%s of traceback" errwhere)))) |
| 1435 | |
| 1436 | (defun py-down-exception (&optional bottom) |
| 1437 | "Go to the next line down in the traceback. |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1438 | With \\[univeral-argument] (programmatically, optional argument |
| 1439 | BOTTOM), jump to the bottom (innermost) exception in the exception |
| 1440 | stack." |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1441 | (interactive "P") |
| 1442 | (let* ((proc (get-process "Python")) |
| 1443 | (buffer (if proc "*Python*" py-output-buffer))) |
| 1444 | (if bottom |
| 1445 | (py-find-next-exception 'eob buffer 're-search-backward "Bottom") |
| 1446 | (py-find-next-exception 'eol buffer 're-search-forward "Bottom")))) |
| 1447 | |
| 1448 | (defun py-up-exception (&optional top) |
| 1449 | "Go to the previous line up in the traceback. |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1450 | With \\[universal-argument] (programmatically, optional argument TOP) |
| 1451 | jump to the top (outermost) exception in the exception stack." |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1452 | (interactive "P") |
| 1453 | (let* ((proc (get-process "Python")) |
| 1454 | (buffer (if proc "*Python*" py-output-buffer))) |
| 1455 | (if top |
| 1456 | (py-find-next-exception 'bob buffer 're-search-forward "Top") |
Barry Warsaw | ffbc17d | 1997-11-27 20:08:14 +0000 | [diff] [blame] | 1457 | (py-find-next-exception 'bol buffer 're-search-backward "Top")))) |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1458 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1459 | |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 1460 | ;; Electric deletion |
| 1461 | (defun py-electric-backspace (arg) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1462 | "Delete preceding character or levels of indentation. |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 1463 | Deletion is performed by calling the function in `py-backspace-function' |
Barry Warsaw | b053993 | 1996-12-17 22:05:07 +0000 | [diff] [blame] | 1464 | with a single argument (the number of characters to delete). |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1465 | |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1466 | If point is at the leftmost column, delete the preceding newline. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1467 | |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 1468 | Otherwise, if point is at the leftmost non-whitespace character of a |
| 1469 | line that is neither a continuation line nor a non-indenting comment |
| 1470 | line, or if point is at the end of a blank line, this command reduces |
| 1471 | the indentation to match that of the line that opened the current |
| 1472 | block of code. The line that opened the block is displayed in the |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1473 | echo area to help you keep track of where you are. With |
| 1474 | \\[universal-argument] dedents that many blocks (but not past column |
| 1475 | zero). |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 1476 | |
| 1477 | Otherwise the preceding character is deleted, converting a tab to |
| 1478 | spaces if needed so that only a single column position is deleted. |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1479 | \\[universal-argument] specifies how many characters to delete |
| 1480 | (default is 1). |
| 1481 | |
| 1482 | When used programmatically, argument ARG specifies the number of |
| 1483 | blocks to dedent, or the number of characters to delete, as indicated |
| 1484 | above." |
Barry Warsaw | 0397073 | 1996-07-03 23:12:52 +0000 | [diff] [blame] | 1485 | (interactive "*p") |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1486 | (if (or (/= (current-indentation) (current-column)) |
| 1487 | (bolp) |
| 1488 | (py-continuation-line-p) |
Barry Warsaw | 6e527d2 | 1996-08-01 15:57:48 +0000 | [diff] [blame] | 1489 | (not py-honor-comment-indentation) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1490 | (looking-at "#[^ \t\n]")) ; non-indenting # |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 1491 | (funcall py-backspace-function arg) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1492 | ;; else indent the same as the colon line that opened the block |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1493 | ;; force non-blank so py-goto-block-up doesn't ignore it |
| 1494 | (insert-char ?* 1) |
| 1495 | (backward-char) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1496 | (let ((base-indent 0) ; indentation of base line |
| 1497 | (base-text "") ; and text of base line |
| 1498 | (base-found-p nil)) |
Barry Warsaw | 0397073 | 1996-07-03 23:12:52 +0000 | [diff] [blame] | 1499 | (save-excursion |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 1500 | (while (< 0 arg) |
Barry Warsaw | 0397073 | 1996-07-03 23:12:52 +0000 | [diff] [blame] | 1501 | (condition-case nil ; in case no enclosing block |
| 1502 | (progn |
| 1503 | (py-goto-block-up 'no-mark) |
| 1504 | (setq base-indent (current-indentation) |
| 1505 | base-text (py-suck-up-leading-text) |
| 1506 | base-found-p t)) |
| 1507 | (error nil)) |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 1508 | (setq arg (1- arg)))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1509 | (delete-char 1) ; toss the dummy character |
| 1510 | (delete-horizontal-space) |
| 1511 | (indent-to base-indent) |
| 1512 | (if base-found-p |
| 1513 | (message "Closes block: %s" base-text))))) |
| 1514 | |
Barry Warsaw | fc8a01f | 1995-03-09 16:07:29 +0000 | [diff] [blame] | 1515 | |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 1516 | (defun py-electric-delete (arg) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1517 | "Delete preceding or following character or levels of whitespace. |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 1518 | |
| 1519 | The behavior of this function depends on the variable |
| 1520 | `delete-key-deletes-forward'. If this variable is nil (or does not |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1521 | exist, as in older Emacsen and non-XEmacs versions), then this |
| 1522 | function behaves identically to \\[c-electric-backspace]. |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 1523 | |
| 1524 | If `delete-key-deletes-forward' is non-nil and is supported in your |
| 1525 | Emacs, then deletion occurs in the forward direction, by calling the |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1526 | function in `py-delete-function'. |
| 1527 | |
| 1528 | \\[universal-argument] (programmatically, argument ARG) specifies the |
| 1529 | number of characters to delete (default is 1)." |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 1530 | (interactive "*p") |
Barry Warsaw | 1d7b0fa | 1999-01-15 02:12:31 +0000 | [diff] [blame] | 1531 | (if (or (and (fboundp 'delete-forward-p) ;XEmacs 21 |
| 1532 | (delete-forward-p)) |
| 1533 | (and (boundp 'delete-key-deletes-forward) ;XEmacs 20 |
| 1534 | delete-key-deletes-forward)) |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 1535 | (funcall py-delete-function arg) |
Barry Warsaw | 6d48c4a | 1997-11-04 19:21:50 +0000 | [diff] [blame] | 1536 | (py-electric-backspace arg))) |
| 1537 | |
| 1538 | ;; required for pending-del and delsel modes |
| 1539 | (put 'py-electric-backspace 'delete-selection 'supersede) ;delsel |
| 1540 | (put 'py-electric-backspace 'pending-delete 'supersede) ;pending-del |
| 1541 | (put 'py-electric-delete 'delete-selection 'supersede) ;delsel |
| 1542 | (put 'py-electric-delete 'pending-delete 'supersede) ;pending-del |
| 1543 | |
| 1544 | |
| 1545 | |
Barry Warsaw | 7cb505c | 1996-10-23 20:44:59 +0000 | [diff] [blame] | 1546 | (defun py-indent-line (&optional arg) |
| 1547 | "Fix the indentation of the current line according to Python rules. |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1548 | With \\[universal-argument] (programmatically, the optional argument |
| 1549 | ARG non-nil), ignore dedenting rules for block closing statements |
| 1550 | (e.g. return, raise, break, continue, pass) |
Barry Warsaw | 7cb505c | 1996-10-23 20:44:59 +0000 | [diff] [blame] | 1551 | |
| 1552 | This function is normally bound to `indent-line-function' so |
| 1553 | \\[indent-for-tab-command] will call it." |
| 1554 | (interactive "P") |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1555 | (let* ((ci (current-indentation)) |
| 1556 | (move-to-indentation-p (<= (current-column) ci)) |
Barry Warsaw | 7cb505c | 1996-10-23 20:44:59 +0000 | [diff] [blame] | 1557 | (need (py-compute-indentation (not arg)))) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1558 | ;; see if we need to dedent |
Barry Warsaw | 3874a3d | 1995-03-14 22:05:53 +0000 | [diff] [blame] | 1559 | (if (py-outdent-p) |
Barry Warsaw | 0012c1e | 1995-03-14 16:32:55 +0000 | [diff] [blame] | 1560 | (setq need (- need py-indent-offset))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1561 | (if (/= ci need) |
| 1562 | (save-excursion |
| 1563 | (beginning-of-line) |
| 1564 | (delete-horizontal-space) |
| 1565 | (indent-to need))) |
| 1566 | (if move-to-indentation-p (back-to-indentation)))) |
| 1567 | |
| 1568 | (defun py-newline-and-indent () |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1569 | "Strives to act like the Emacs `newline-and-indent'. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1570 | This is just `strives to' because correct indentation can't be computed |
| 1571 | from scratch for Python code. In general, deletes the whitespace before |
| 1572 | point, inserts a newline, and takes an educated guess as to how you want |
| 1573 | the new line indented." |
| 1574 | (interactive) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1575 | (let ((ci (current-indentation))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1576 | (if (< ci (current-column)) ; if point beyond indentation |
| 1577 | (newline-and-indent) |
| 1578 | ;; else try to act like newline-and-indent "normally" acts |
| 1579 | (beginning-of-line) |
| 1580 | (insert-char ?\n 1) |
| 1581 | (move-to-column ci)))) |
| 1582 | |
Barry Warsaw | 7cb505c | 1996-10-23 20:44:59 +0000 | [diff] [blame] | 1583 | (defun py-compute-indentation (honor-block-close-p) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1584 | "Compute Python indentation. |
| 1585 | When HONOR-BLOCK-CLOSE-P is non-nil, statements such as `return', |
| 1586 | `raise', `break', `continue', and `pass' force one level of |
| 1587 | dedenting." |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1588 | (save-excursion |
Barry Warsaw | f64b405 | 1998-02-12 16:52:14 +0000 | [diff] [blame] | 1589 | (beginning-of-line) |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1590 | (let* ((bod (py-point 'bod)) |
Barry Warsaw | 3b3ff4e | 1997-11-26 20:58:48 +0000 | [diff] [blame] | 1591 | (pps (parse-partial-sexp bod (point))) |
Barry Warsaw | 9c1696c | 1998-12-15 04:36:22 +0000 | [diff] [blame] | 1592 | (boipps (parse-partial-sexp bod (py-point 'boi))) |
| 1593 | placeholder) |
Barry Warsaw | 095e9c6 | 1995-09-19 20:01:42 +0000 | [diff] [blame] | 1594 | (cond |
Barry Warsaw | a0ee8cd | 1997-11-26 01:04:44 +0000 | [diff] [blame] | 1595 | ;; are we inside a multi-line string or comment? |
Barry Warsaw | 3b3ff4e | 1997-11-26 20:58:48 +0000 | [diff] [blame] | 1596 | ((or (and (nth 3 pps) (nth 3 boipps)) |
| 1597 | (and (nth 4 pps) (nth 4 boipps))) |
Barry Warsaw | 095e9c6 | 1995-09-19 20:01:42 +0000 | [diff] [blame] | 1598 | (save-excursion |
| 1599 | (if (not py-align-multiline-strings-p) 0 |
| 1600 | ;; skip back over blank & non-indenting comment lines |
| 1601 | ;; note: will skip a blank or non-indenting comment line |
| 1602 | ;; that happens to be a continuation line too |
| 1603 | (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#[ \t\n]\\)" nil 'move) |
| 1604 | (back-to-indentation) |
| 1605 | (current-column)))) |
| 1606 | ;; are we on a continuation line? |
| 1607 | ((py-continuation-line-p) |
| 1608 | (let ((startpos (point)) |
| 1609 | (open-bracket-pos (py-nesting-level)) |
Barry Warsaw | ce60bc7 | 1996-08-01 18:17:14 +0000 | [diff] [blame] | 1610 | endpos searching found state) |
Barry Warsaw | 095e9c6 | 1995-09-19 20:01:42 +0000 | [diff] [blame] | 1611 | (if open-bracket-pos |
| 1612 | (progn |
| 1613 | ;; align with first item in list; else a normal |
| 1614 | ;; indent beyond the line with the open bracket |
| 1615 | (goto-char (1+ open-bracket-pos)) ; just beyond bracket |
| 1616 | ;; is the first list item on the same line? |
| 1617 | (skip-chars-forward " \t") |
| 1618 | (if (null (memq (following-char) '(?\n ?# ?\\))) |
| 1619 | ; yes, so line up with it |
| 1620 | (current-column) |
| 1621 | ;; first list item on another line, or doesn't exist yet |
| 1622 | (forward-line 1) |
| 1623 | (while (and (< (point) startpos) |
| 1624 | (looking-at "[ \t]*[#\n\\\\]")) ; skip noise |
| 1625 | (forward-line 1)) |
Barry Warsaw | 92166d9 | 1998-04-01 21:59:41 +0000 | [diff] [blame] | 1626 | (if (and (< (point) startpos) |
| 1627 | (/= startpos |
| 1628 | (save-excursion |
| 1629 | (goto-char (1+ open-bracket-pos)) |
Barry Warsaw | 77d1fce | 1998-04-16 20:04:59 +0000 | [diff] [blame] | 1630 | (forward-comment (point-max)) |
Barry Warsaw | 92166d9 | 1998-04-01 21:59:41 +0000 | [diff] [blame] | 1631 | (point)))) |
Barry Warsaw | 095e9c6 | 1995-09-19 20:01:42 +0000 | [diff] [blame] | 1632 | ;; again mimic the first list item |
| 1633 | (current-indentation) |
| 1634 | ;; else they're about to enter the first item |
| 1635 | (goto-char open-bracket-pos) |
Barry Warsaw | 9c1696c | 1998-12-15 04:36:22 +0000 | [diff] [blame] | 1636 | (setq placeholder (point)) |
| 1637 | (py-goto-initial-line) |
| 1638 | (py-goto-beginning-of-tqs |
| 1639 | (save-excursion (nth 3 (parse-partial-sexp |
| 1640 | placeholder (point))))) |
Barry Warsaw | 095e9c6 | 1995-09-19 20:01:42 +0000 | [diff] [blame] | 1641 | (+ (current-indentation) py-indent-offset)))) |
| 1642 | |
| 1643 | ;; else on backslash continuation line |
| 1644 | (forward-line -1) |
| 1645 | (if (py-continuation-line-p) ; on at least 3rd line in block |
| 1646 | (current-indentation) ; so just continue the pattern |
| 1647 | ;; else started on 2nd line in block, so indent more. |
| 1648 | ;; if base line is an assignment with a start on a RHS, |
| 1649 | ;; indent to 2 beyond the leftmost "="; else skip first |
| 1650 | ;; chunk of non-whitespace characters on base line, + 1 more |
| 1651 | ;; column |
| 1652 | (end-of-line) |
| 1653 | (setq endpos (point) searching t) |
| 1654 | (back-to-indentation) |
| 1655 | (setq startpos (point)) |
| 1656 | ;; look at all "=" from left to right, stopping at first |
| 1657 | ;; one not nested in a list or string |
| 1658 | (while searching |
| 1659 | (skip-chars-forward "^=" endpos) |
| 1660 | (if (= (point) endpos) |
| 1661 | (setq searching nil) |
| 1662 | (forward-char 1) |
| 1663 | (setq state (parse-partial-sexp startpos (point))) |
| 1664 | (if (and (zerop (car state)) ; not in a bracket |
| 1665 | (null (nth 3 state))) ; & not in a string |
| 1666 | (progn |
| 1667 | (setq searching nil) ; done searching in any case |
| 1668 | (setq found |
| 1669 | (not (or |
| 1670 | (eq (following-char) ?=) |
| 1671 | (memq (char-after (- (point) 2)) |
| 1672 | '(?< ?> ?!))))))))) |
| 1673 | (if (or (not found) ; not an assignment |
| 1674 | (looking-at "[ \t]*\\\\")) ; <=><spaces><backslash> |
| 1675 | (progn |
| 1676 | (goto-char startpos) |
| 1677 | (skip-chars-forward "^ \t\n"))) |
| 1678 | (1+ (current-column)))))) |
| 1679 | |
| 1680 | ;; not on a continuation line |
Barry Warsaw | a789171 | 1996-08-01 15:53:09 +0000 | [diff] [blame] | 1681 | ((bobp) (current-indentation)) |
Barry Warsaw | 095e9c6 | 1995-09-19 20:01:42 +0000 | [diff] [blame] | 1682 | |
Barry Warsaw | a789171 | 1996-08-01 15:53:09 +0000 | [diff] [blame] | 1683 | ;; Dfn: "Indenting comment line". A line containing only a |
| 1684 | ;; comment, but which is treated like a statement for |
| 1685 | ;; indentation calculation purposes. Such lines are only |
| 1686 | ;; treated specially by the mode; they are not treated |
| 1687 | ;; specially by the Python interpreter. |
| 1688 | |
| 1689 | ;; The rules for indenting comment lines are a line where: |
| 1690 | ;; - the first non-whitespace character is `#', and |
| 1691 | ;; - the character following the `#' is whitespace, and |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1692 | ;; - the line is dedented with respect to (i.e. to the left |
Barry Warsaw | a789171 | 1996-08-01 15:53:09 +0000 | [diff] [blame] | 1693 | ;; of) the indentation of the preceding non-blank line. |
| 1694 | |
| 1695 | ;; The first non-blank line following an indenting comment |
| 1696 | ;; line is given the same amount of indentation as the |
| 1697 | ;; indenting comment line. |
| 1698 | |
| 1699 | ;; All other comment-only lines are ignored for indentation |
| 1700 | ;; purposes. |
| 1701 | |
| 1702 | ;; Are we looking at a comment-only line which is *not* an |
Barry Warsaw | 145ab1c | 1998-05-19 14:49:49 +0000 | [diff] [blame] | 1703 | ;; indenting comment line? If so, we assume that it's been |
Barry Warsaw | a789171 | 1996-08-01 15:53:09 +0000 | [diff] [blame] | 1704 | ;; placed at the desired indentation, so leave it alone. |
| 1705 | ;; Indenting comment lines are aligned as statements down |
| 1706 | ;; below. |
| 1707 | ((and (looking-at "[ \t]*#[^ \t\n]") |
| 1708 | ;; NOTE: this test will not be performed in older Emacsen |
| 1709 | (fboundp 'forward-comment) |
| 1710 | (<= (current-indentation) |
| 1711 | (save-excursion |
| 1712 | (forward-comment (- (point-max))) |
| 1713 | (current-indentation)))) |
Barry Warsaw | 095e9c6 | 1995-09-19 20:01:42 +0000 | [diff] [blame] | 1714 | (current-indentation)) |
| 1715 | |
| 1716 | ;; else indentation based on that of the statement that |
| 1717 | ;; precedes us; use the first line of that statement to |
| 1718 | ;; establish the base, in case the user forced a non-std |
| 1719 | ;; indentation for the continuation lines (if any) |
| 1720 | (t |
Barry Warsaw | c01c5c8 | 1995-09-14 18:49:11 +0000 | [diff] [blame] | 1721 | ;; skip back over blank & non-indenting comment lines note: |
| 1722 | ;; will skip a blank or non-indenting comment line that |
Barry Warsaw | fd0fb38 | 1996-03-04 17:15:40 +0000 | [diff] [blame] | 1723 | ;; happens to be a continuation line too. use fast Emacs 19 |
| 1724 | ;; function if it's there. |
Barry Warsaw | 6d62775 | 1996-03-06 18:41:38 +0000 | [diff] [blame] | 1725 | (if (and (eq py-honor-comment-indentation nil) |
Barry Warsaw | 33d6ec0 | 1996-03-05 16:28:07 +0000 | [diff] [blame] | 1726 | (fboundp 'forward-comment)) |
Barry Warsaw | fd0fb38 | 1996-03-04 17:15:40 +0000 | [diff] [blame] | 1727 | (forward-comment (- (point-max))) |
Barry Warsaw | 218eb75 | 1998-09-22 19:51:47 +0000 | [diff] [blame] | 1728 | (let ((prefix-re (concat py-block-comment-prefix "[ \t]*")) |
| 1729 | done) |
Barry Warsaw | 6d62775 | 1996-03-06 18:41:38 +0000 | [diff] [blame] | 1730 | (while (not done) |
Barry Warsaw | 12c9294 | 1998-08-10 21:44:37 +0000 | [diff] [blame] | 1731 | (re-search-backward "^[ \t]*\\([^ \t\n#]\\|#\\)" nil 'move) |
| 1732 | (setq done (or (bobp) |
| 1733 | (and (eq py-honor-comment-indentation t) |
| 1734 | (save-excursion |
| 1735 | (back-to-indentation) |
Barry Warsaw | 218eb75 | 1998-09-22 19:51:47 +0000 | [diff] [blame] | 1736 | (not (looking-at prefix-re)) |
Barry Warsaw | 12c9294 | 1998-08-10 21:44:37 +0000 | [diff] [blame] | 1737 | )) |
| 1738 | (and (not (eq py-honor-comment-indentation t)) |
| 1739 | (save-excursion |
| 1740 | (back-to-indentation) |
| 1741 | (not (zerop (current-column))))) |
| 1742 | )) |
Barry Warsaw | 6d62775 | 1996-03-06 18:41:38 +0000 | [diff] [blame] | 1743 | ))) |
Barry Warsaw | 095e9c6 | 1995-09-19 20:01:42 +0000 | [diff] [blame] | 1744 | ;; if we landed inside a string, go to the beginning of that |
| 1745 | ;; string. this handles triple quoted, multi-line spanning |
| 1746 | ;; strings. |
Barry Warsaw | 9c1696c | 1998-12-15 04:36:22 +0000 | [diff] [blame] | 1747 | (py-goto-beginning-of-tqs (nth 3 (parse-partial-sexp bod (point)))) |
Barry Warsaw | c210e69 | 1998-01-20 22:52:56 +0000 | [diff] [blame] | 1748 | ;; now skip backward over continued lines |
Barry Warsaw | 9c1696c | 1998-12-15 04:36:22 +0000 | [diff] [blame] | 1749 | (setq placeholder (point)) |
Barry Warsaw | 095e9c6 | 1995-09-19 20:01:42 +0000 | [diff] [blame] | 1750 | (py-goto-initial-line) |
Barry Warsaw | 9c1696c | 1998-12-15 04:36:22 +0000 | [diff] [blame] | 1751 | ;; we may *now* have landed in a TQS, so find the beginning of |
| 1752 | ;; this string. |
| 1753 | (py-goto-beginning-of-tqs |
| 1754 | (save-excursion (nth 3 (parse-partial-sexp |
| 1755 | placeholder (point))))) |
Barry Warsaw | f831d81 | 1996-07-31 20:42:59 +0000 | [diff] [blame] | 1756 | (+ (current-indentation) |
| 1757 | (if (py-statement-opens-block-p) |
| 1758 | py-indent-offset |
Barry Warsaw | 7cb505c | 1996-10-23 20:44:59 +0000 | [diff] [blame] | 1759 | (if (and honor-block-close-p (py-statement-closes-block-p)) |
Barry Warsaw | f831d81 | 1996-07-31 20:42:59 +0000 | [diff] [blame] | 1760 | (- py-indent-offset) |
| 1761 | 0))) |
| 1762 | ))))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1763 | |
| 1764 | (defun py-guess-indent-offset (&optional global) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1765 | "Guess a good value for, and change, `py-indent-offset'. |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1766 | |
| 1767 | By default, make a buffer-local copy of `py-indent-offset' with the |
| 1768 | new value, so that other Python buffers are not affected. With |
| 1769 | \\[universal-argument] (programmatically, optional argument GLOBAL), |
| 1770 | change the global value of `py-indent-offset'. This affects all |
| 1771 | Python buffers (that don't have their own buffer-local copy), both |
| 1772 | those currently existing and those created later in the Emacs session. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1773 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1774 | Some people use a different value for `py-indent-offset' than you use. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1775 | There's no excuse for such foolishness, but sometimes you have to deal |
| 1776 | with their ugly code anyway. This function examines the file and sets |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1777 | `py-indent-offset' to what it thinks it was when they created the |
| 1778 | mess. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1779 | |
| 1780 | Specifically, it searches forward from the statement containing point, |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1781 | looking for a line that opens a block of code. `py-indent-offset' is |
| 1782 | set to the difference in indentation between that line and the Python |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1783 | statement following it. If the search doesn't succeed going forward, |
| 1784 | it's tried again going backward." |
| 1785 | (interactive "P") ; raw prefix arg |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1786 | (let (new-value |
| 1787 | (start (point)) |
Barry Warsaw | e908b6b | 1998-03-19 22:48:02 +0000 | [diff] [blame] | 1788 | (restart (point)) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1789 | (found nil) |
| 1790 | colon-indent) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1791 | (py-goto-initial-line) |
| 1792 | (while (not (or found (eobp))) |
Barry Warsaw | e908b6b | 1998-03-19 22:48:02 +0000 | [diff] [blame] | 1793 | (when (and (re-search-forward ":[ \t]*\\($\\|[#\\]\\)" nil 'move) |
| 1794 | (not (py-in-literal restart))) |
| 1795 | (setq restart (point)) |
| 1796 | (py-goto-initial-line) |
| 1797 | (if (py-statement-opens-block-p) |
| 1798 | (setq found t) |
| 1799 | (goto-char restart)))) |
| 1800 | (unless found |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1801 | (goto-char start) |
| 1802 | (py-goto-initial-line) |
| 1803 | (while (not (or found (bobp))) |
Barry Warsaw | e908b6b | 1998-03-19 22:48:02 +0000 | [diff] [blame] | 1804 | (setq found (and |
| 1805 | (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move) |
| 1806 | (or (py-goto-initial-line) t) ; always true -- side effect |
| 1807 | (py-statement-opens-block-p))))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1808 | (setq colon-indent (current-indentation) |
| 1809 | found (and found (zerop (py-next-statement 1))) |
| 1810 | new-value (- (current-indentation) colon-indent)) |
| 1811 | (goto-char start) |
Barry Warsaw | e908b6b | 1998-03-19 22:48:02 +0000 | [diff] [blame] | 1812 | (if (not found) |
| 1813 | (error "Sorry, couldn't guess a value for py-indent-offset") |
| 1814 | (funcall (if global 'kill-local-variable 'make-local-variable) |
| 1815 | 'py-indent-offset) |
| 1816 | (setq py-indent-offset new-value) |
Barry Warsaw | d35c255 | 1998-09-25 00:08:38 +0000 | [diff] [blame] | 1817 | (or noninteractive |
| 1818 | (message "%s value of py-indent-offset set to %d" |
| 1819 | (if global "Global" "Local") |
| 1820 | py-indent-offset))) |
Barry Warsaw | e908b6b | 1998-03-19 22:48:02 +0000 | [diff] [blame] | 1821 | )) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1822 | |
Barry Warsaw | 003932a | 1998-07-07 15:11:24 +0000 | [diff] [blame] | 1823 | (defun py-comment-indent-function () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1824 | "Python version of `comment-indent-function'." |
| 1825 | ;; This is required when filladapt is turned off. Without it, when |
| 1826 | ;; filladapt is not used, comments which start in column zero |
| 1827 | ;; cascade one character to the right |
Barry Warsaw | 003932a | 1998-07-07 15:11:24 +0000 | [diff] [blame] | 1828 | (save-excursion |
| 1829 | (beginning-of-line) |
| 1830 | (let ((eol (py-point 'eol))) |
| 1831 | (and comment-start-skip |
| 1832 | (re-search-forward comment-start-skip eol t) |
| 1833 | (setq eol (match-beginning 0))) |
| 1834 | (goto-char eol) |
| 1835 | (skip-chars-backward " \t") |
| 1836 | (max comment-column (+ (current-column) (if (bolp) 0 1))) |
| 1837 | ))) |
| 1838 | |
Barry Warsaw | f8ddb6a | 1999-01-18 21:49:39 +0000 | [diff] [blame] | 1839 | (defun py-narrow-to-defun (&optional class) |
| 1840 | "Make text outside current defun invisible. |
| 1841 | The defun visible is the one that contains point or follows point. |
| 1842 | Optional CLASS is passed directly to `py-beginning-of-def-or-class'." |
| 1843 | (interactive "P") |
| 1844 | (save-excursion |
| 1845 | (widen) |
| 1846 | (py-end-of-def-or-class class) |
| 1847 | (let ((end (point))) |
| 1848 | (py-beginning-of-def-or-class class) |
| 1849 | (narrow-to-region (point) end)))) |
| 1850 | |
Barry Warsaw | 003932a | 1998-07-07 15:11:24 +0000 | [diff] [blame] | 1851 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1852 | (defun py-shift-region (start end count) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1853 | "Indent lines from START to END by COUNT spaces." |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1854 | (save-excursion |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1855 | (goto-char end) |
| 1856 | (beginning-of-line) |
| 1857 | (setq end (point)) |
| 1858 | (goto-char start) |
| 1859 | (beginning-of-line) |
| 1860 | (setq start (point)) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1861 | (indent-rigidly start end count))) |
| 1862 | |
| 1863 | (defun py-shift-region-left (start end &optional count) |
| 1864 | "Shift region of Python code to the left. |
| 1865 | The lines from the line containing the start of the current region up |
| 1866 | to (but not including) the line containing the end of the region are |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1867 | shifted to the left, by `py-indent-offset' columns. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1868 | |
| 1869 | If a prefix argument is given, the region is instead shifted by that |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1870 | many columns. With no active region, dedent only the current line. |
| 1871 | You cannot dedent the region if any line is already at column zero." |
Barry Warsaw | dea4a29 | 1996-07-03 22:59:12 +0000 | [diff] [blame] | 1872 | (interactive |
| 1873 | (let ((p (point)) |
| 1874 | (m (mark)) |
| 1875 | (arg current-prefix-arg)) |
| 1876 | (if m |
| 1877 | (list (min p m) (max p m) arg) |
| 1878 | (list p (save-excursion (forward-line 1) (point)) arg)))) |
| 1879 | ;; if any line is at column zero, don't shift the region |
| 1880 | (save-excursion |
| 1881 | (goto-char start) |
| 1882 | (while (< (point) end) |
| 1883 | (back-to-indentation) |
Barry Warsaw | 71e315b | 1996-07-23 15:03:16 +0000 | [diff] [blame] | 1884 | (if (and (zerop (current-column)) |
| 1885 | (not (looking-at "\\s *$"))) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1886 | (error "Region is at left edge")) |
Barry Warsaw | dea4a29 | 1996-07-03 22:59:12 +0000 | [diff] [blame] | 1887 | (forward-line 1))) |
| 1888 | (py-shift-region start end (- (prefix-numeric-value |
| 1889 | (or count py-indent-offset)))) |
| 1890 | (py-keep-region-active)) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1891 | |
| 1892 | (defun py-shift-region-right (start end &optional count) |
| 1893 | "Shift region of Python code to the right. |
| 1894 | The lines from the line containing the start of the current region up |
| 1895 | to (but not including) the line containing the end of the region are |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1896 | shifted to the right, by `py-indent-offset' columns. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1897 | |
| 1898 | If a prefix argument is given, the region is instead shifted by that |
Barry Warsaw | dea4a29 | 1996-07-03 22:59:12 +0000 | [diff] [blame] | 1899 | many columns. With no active region, indent only the current line." |
| 1900 | (interactive |
| 1901 | (let ((p (point)) |
| 1902 | (m (mark)) |
| 1903 | (arg current-prefix-arg)) |
| 1904 | (if m |
| 1905 | (list (min p m) (max p m) arg) |
| 1906 | (list p (save-excursion (forward-line 1) (point)) arg)))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1907 | (py-shift-region start end (prefix-numeric-value |
Barry Warsaw | dea4a29 | 1996-07-03 22:59:12 +0000 | [diff] [blame] | 1908 | (or count py-indent-offset))) |
| 1909 | (py-keep-region-active)) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1910 | |
| 1911 | (defun py-indent-region (start end &optional indent-offset) |
| 1912 | "Reindent a region of Python code. |
Barry Warsaw | 867a32a | 1996-03-07 18:30:26 +0000 | [diff] [blame] | 1913 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1914 | The lines from the line containing the start of the current region up |
| 1915 | to (but not including) the line containing the end of the region are |
| 1916 | reindented. If the first line of the region has a non-whitespace |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1917 | character in the first column, the first line is left alone and the |
| 1918 | rest of the region is reindented with respect to it. Else the entire |
Barry Warsaw | 867a32a | 1996-03-07 18:30:26 +0000 | [diff] [blame] | 1919 | region is reindented with respect to the (closest code or indenting |
| 1920 | comment) statement immediately preceding the region. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1921 | |
| 1922 | This is useful when code blocks are moved or yanked, when enclosing |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1923 | control structures are introduced or removed, or to reformat code |
| 1924 | using a new value for the indentation offset. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1925 | |
| 1926 | If a numeric prefix argument is given, it will be used as the value of |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1927 | the indentation offset. Else the value of `py-indent-offset' will be |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1928 | used. |
| 1929 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1930 | Warning: The region must be consistently indented before this function |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1931 | is called! This function does not compute proper indentation from |
| 1932 | scratch (that's impossible in Python), it merely adjusts the existing |
| 1933 | indentation to be correct in context. |
| 1934 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1935 | Warning: This function really has no idea what to do with |
| 1936 | non-indenting comment lines, and shifts them as if they were indenting |
| 1937 | comment lines. Fixing this appears to require telepathy. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1938 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1939 | Special cases: whitespace is deleted from blank lines; continuation |
| 1940 | lines are shifted by the same amount their initial line was shifted, |
| 1941 | in order to preserve their relative indentation with respect to their |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1942 | initial line; and comment lines beginning in column 1 are ignored." |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1943 | (interactive "*r\nP") ; region; raw prefix arg |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1944 | (save-excursion |
| 1945 | (goto-char end) (beginning-of-line) (setq end (point-marker)) |
| 1946 | (goto-char start) (beginning-of-line) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1947 | (let ((py-indent-offset (prefix-numeric-value |
| 1948 | (or indent-offset py-indent-offset))) |
| 1949 | (indents '(-1)) ; stack of active indent levels |
| 1950 | (target-column 0) ; column to which to indent |
| 1951 | (base-shifted-by 0) ; amount last base line was shifted |
| 1952 | (indent-base (if (looking-at "[ \t\n]") |
Barry Warsaw | 7cb505c | 1996-10-23 20:44:59 +0000 | [diff] [blame] | 1953 | (py-compute-indentation t) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1954 | 0)) |
| 1955 | ci) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1956 | (while (< (point) end) |
| 1957 | (setq ci (current-indentation)) |
| 1958 | ;; figure out appropriate target column |
| 1959 | (cond |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1960 | ((or (eq (following-char) ?#) ; comment in column 1 |
| 1961 | (looking-at "[ \t]*$")) ; entirely blank |
| 1962 | (setq target-column 0)) |
| 1963 | ((py-continuation-line-p) ; shift relative to base line |
| 1964 | (setq target-column (+ ci base-shifted-by))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1965 | (t ; new base line |
| 1966 | (if (> ci (car indents)) ; going deeper; push it |
| 1967 | (setq indents (cons ci indents)) |
| 1968 | ;; else we should have seen this indent before |
| 1969 | (setq indents (memq ci indents)) ; pop deeper indents |
| 1970 | (if (null indents) |
| 1971 | (error "Bad indentation in region, at line %d" |
| 1972 | (save-restriction |
| 1973 | (widen) |
| 1974 | (1+ (count-lines 1 (point))))))) |
| 1975 | (setq target-column (+ indent-base |
| 1976 | (* py-indent-offset |
| 1977 | (- (length indents) 2)))) |
| 1978 | (setq base-shifted-by (- target-column ci)))) |
| 1979 | ;; shift as needed |
| 1980 | (if (/= ci target-column) |
| 1981 | (progn |
| 1982 | (delete-horizontal-space) |
| 1983 | (indent-to target-column))) |
| 1984 | (forward-line 1)))) |
| 1985 | (set-marker end nil)) |
| 1986 | |
Barry Warsaw | a789171 | 1996-08-01 15:53:09 +0000 | [diff] [blame] | 1987 | (defun py-comment-region (beg end &optional arg) |
| 1988 | "Like `comment-region' but uses double hash (`#') comment starter." |
| 1989 | (interactive "r\nP") |
Barry Warsaw | 3fcaf61 | 1996-08-01 20:11:51 +0000 | [diff] [blame] | 1990 | (let ((comment-start py-block-comment-prefix)) |
Barry Warsaw | a789171 | 1996-08-01 15:53:09 +0000 | [diff] [blame] | 1991 | (comment-region beg end arg))) |
| 1992 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 1993 | |
| 1994 | ;; Functions for moving point |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 1995 | (defun py-previous-statement (count) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 1996 | "Go to the start of the COUNTth preceding Python statement. |
| 1997 | By default, goes to the previous statement. If there is no such |
| 1998 | statement, goes to the first statement. Return count of statements |
| 1999 | left to move. `Statements' do not include blank, comment, or |
| 2000 | continuation lines." |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2001 | (interactive "p") ; numeric prefix arg |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2002 | (if (< count 0) (py-next-statement (- count)) |
| 2003 | (py-goto-initial-line) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2004 | (let (start) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2005 | (while (and |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2006 | (setq start (point)) ; always true -- side effect |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2007 | (> count 0) |
| 2008 | (zerop (forward-line -1)) |
| 2009 | (py-goto-statement-at-or-above)) |
| 2010 | (setq count (1- count))) |
| 2011 | (if (> count 0) (goto-char start))) |
| 2012 | count)) |
| 2013 | |
| 2014 | (defun py-next-statement (count) |
| 2015 | "Go to the start of next Python statement. |
| 2016 | If the statement at point is the i'th Python statement, goes to the |
| 2017 | start of statement i+COUNT. If there is no such statement, goes to the |
| 2018 | last statement. Returns count of statements left to move. `Statements' |
| 2019 | do not include blank, comment, or continuation lines." |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2020 | (interactive "p") ; numeric prefix arg |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2021 | (if (< count 0) (py-previous-statement (- count)) |
| 2022 | (beginning-of-line) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2023 | (let (start) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2024 | (while (and |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2025 | (setq start (point)) ; always true -- side effect |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2026 | (> count 0) |
| 2027 | (py-goto-statement-below)) |
| 2028 | (setq count (1- count))) |
| 2029 | (if (> count 0) (goto-char start))) |
| 2030 | count)) |
| 2031 | |
| 2032 | (defun py-goto-block-up (&optional nomark) |
| 2033 | "Move up to start of current block. |
| 2034 | Go to the statement that starts the smallest enclosing block; roughly |
| 2035 | speaking, this will be the closest preceding statement that ends with a |
| 2036 | colon and is indented less than the statement you started on. If |
| 2037 | successful, also sets the mark to the starting point. |
| 2038 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2039 | `\\[py-mark-block]' can be used afterward to mark the whole code |
| 2040 | block, if desired. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2041 | |
| 2042 | If called from a program, the mark will not be set if optional argument |
| 2043 | NOMARK is not nil." |
| 2044 | (interactive) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2045 | (let ((start (point)) |
| 2046 | (found nil) |
| 2047 | initial-indent) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2048 | (py-goto-initial-line) |
| 2049 | ;; if on blank or non-indenting comment line, use the preceding stmt |
| 2050 | (if (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)") |
| 2051 | (progn |
| 2052 | (py-goto-statement-at-or-above) |
| 2053 | (setq found (py-statement-opens-block-p)))) |
| 2054 | ;; search back for colon line indented less |
| 2055 | (setq initial-indent (current-indentation)) |
| 2056 | (if (zerop initial-indent) |
| 2057 | ;; force fast exit |
| 2058 | (goto-char (point-min))) |
| 2059 | (while (not (or found (bobp))) |
| 2060 | (setq found |
| 2061 | (and |
| 2062 | (re-search-backward ":[ \t]*\\($\\|[#\\]\\)" nil 'move) |
| 2063 | (or (py-goto-initial-line) t) ; always true -- side effect |
| 2064 | (< (current-indentation) initial-indent) |
| 2065 | (py-statement-opens-block-p)))) |
| 2066 | (if found |
| 2067 | (progn |
| 2068 | (or nomark (push-mark start)) |
| 2069 | (back-to-indentation)) |
| 2070 | (goto-char start) |
| 2071 | (error "Enclosing block not found")))) |
| 2072 | |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2073 | (defun py-beginning-of-def-or-class (&optional class count) |
| 2074 | "Move point to start of `def' or `class'. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2075 | |
| 2076 | Searches back for the closest preceding `def'. If you supply a prefix |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2077 | arg, looks for a `class' instead. The docs below assume the `def' |
| 2078 | case; just substitute `class' for `def' for the other case. |
Barry Warsaw | 7c29b23 | 1998-07-07 17:45:38 +0000 | [diff] [blame] | 2079 | Programmatically, if CLASS is `either', then moves to either `class' |
| 2080 | or `def'. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2081 | |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2082 | When second optional argument is given programmatically, move to the |
| 2083 | COUNTth start of `def'. |
| 2084 | |
| 2085 | If point is in a `def' statement already, and after the `d', simply |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2086 | moves point to the start of the statement. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2087 | |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2088 | Otherwise (i.e. when point is not in a `def' statement, or at or |
| 2089 | before the `d' of a `def' statement), searches for the closest |
| 2090 | preceding `def' statement, and leaves point at its start. If no such |
| 2091 | statement can be found, leaves point at the start of the buffer. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2092 | |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2093 | Returns t iff a `def' statement is found by these rules. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2094 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2095 | Note that doing this command repeatedly will take you closer to the |
| 2096 | start of the buffer each time. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2097 | |
Barry Warsaw | 7c29b23 | 1998-07-07 17:45:38 +0000 | [diff] [blame] | 2098 | To mark the current `def', see `\\[py-mark-def-or-class]'." |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2099 | (interactive "P") ; raw prefix arg |
Barry Warsaw | 6839d3a | 1998-10-28 00:10:45 +0000 | [diff] [blame] | 2100 | (setq count (or count 1)) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2101 | (let ((at-or-before-p (<= (current-column) (current-indentation))) |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2102 | (start-of-line (goto-char (py-point 'bol))) |
| 2103 | (start-of-stmt (goto-char (py-point 'bos))) |
Barry Warsaw | 7c29b23 | 1998-07-07 17:45:38 +0000 | [diff] [blame] | 2104 | (start-re (cond ((eq class 'either) "^[ \t]*\\(class\\|def\\)\\>") |
| 2105 | (class "^[ \t]*class\\>") |
| 2106 | (t "^[ \t]*def\\>"))) |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2107 | ) |
| 2108 | ;; searching backward |
| 2109 | (if (and (< 0 count) |
| 2110 | (or (/= start-of-stmt start-of-line) |
| 2111 | (not at-or-before-p))) |
| 2112 | (end-of-line)) |
| 2113 | ;; search forward |
| 2114 | (if (and (> 0 count) |
| 2115 | (zerop (current-column)) |
| 2116 | (looking-at start-re)) |
| 2117 | (end-of-line)) |
| 2118 | (re-search-backward start-re nil 'move count) |
| 2119 | (goto-char (match-beginning 0)))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2120 | |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2121 | ;; Backwards compatibility |
| 2122 | (defalias 'beginning-of-python-def-or-class 'py-beginning-of-def-or-class) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2123 | |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2124 | (defun py-end-of-def-or-class (&optional class count) |
| 2125 | "Move point beyond end of `def' or `class' body. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2126 | |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2127 | By default, looks for an appropriate `def'. If you supply a prefix |
| 2128 | arg, looks for a `class' instead. The docs below assume the `def' |
| 2129 | case; just substitute `class' for `def' for the other case. |
Barry Warsaw | 7c29b23 | 1998-07-07 17:45:38 +0000 | [diff] [blame] | 2130 | Programmatically, if CLASS is `either', then moves to either `class' |
| 2131 | or `def'. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2132 | |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2133 | When second optional argument is given programmatically, move to the |
| 2134 | COUNTth end of `def'. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2135 | |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2136 | If point is in a `def' statement already, this is the `def' we use. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2137 | |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2138 | Else, if the `def' found by `\\[py-beginning-of-def-or-class]' |
| 2139 | contains the statement you started on, that's the `def' we use. |
| 2140 | |
| 2141 | Otherwise, we search forward for the closest following `def', and use that. |
| 2142 | |
| 2143 | If a `def' can be found by these rules, point is moved to the start of |
| 2144 | the line immediately following the `def' block, and the position of the |
| 2145 | start of the `def' is returned. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2146 | |
| 2147 | Else point is moved to the end of the buffer, and nil is returned. |
| 2148 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2149 | Note that doing this command repeatedly will take you closer to the |
| 2150 | end of the buffer each time. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2151 | |
Barry Warsaw | 7c29b23 | 1998-07-07 17:45:38 +0000 | [diff] [blame] | 2152 | To mark the current `def', see `\\[py-mark-def-or-class]'." |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2153 | (interactive "P") ; raw prefix arg |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2154 | (if (and count (/= count 1)) |
| 2155 | (py-beginning-of-def-or-class (- 1 count))) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2156 | (let ((start (progn (py-goto-initial-line) (point))) |
Barry Warsaw | 7c29b23 | 1998-07-07 17:45:38 +0000 | [diff] [blame] | 2157 | (which (cond ((eq class 'either) "\\(class\\|def\\)") |
| 2158 | (class "class") |
| 2159 | (t "def"))) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2160 | (state 'not-found)) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2161 | ;; move point to start of appropriate def/class |
| 2162 | (if (looking-at (concat "[ \t]*" which "\\>")) ; already on one |
| 2163 | (setq state 'at-beginning) |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2164 | ;; else see if py-beginning-of-def-or-class hits container |
| 2165 | (if (and (py-beginning-of-def-or-class class) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2166 | (progn (py-goto-beyond-block) |
| 2167 | (> (point) start))) |
| 2168 | (setq state 'at-end) |
| 2169 | ;; else search forward |
| 2170 | (goto-char start) |
| 2171 | (if (re-search-forward (concat "^[ \t]*" which "\\>") nil 'move) |
| 2172 | (progn (setq state 'at-beginning) |
| 2173 | (beginning-of-line))))) |
| 2174 | (cond |
| 2175 | ((eq state 'at-beginning) (py-goto-beyond-block) t) |
| 2176 | ((eq state 'at-end) t) |
| 2177 | ((eq state 'not-found) nil) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2178 | (t (error "Internal error in `py-end-of-def-or-class'"))))) |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2179 | |
| 2180 | ;; Backwards compabitility |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 2181 | (defalias 'end-of-python-def-or-class 'py-end-of-def-or-class) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2182 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2183 | |
| 2184 | ;; Functions for marking regions |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2185 | (defun py-mark-block (&optional extend just-move) |
| 2186 | "Mark following block of lines. With prefix arg, mark structure. |
| 2187 | Easier to use than explain. It sets the region to an `interesting' |
| 2188 | block of succeeding lines. If point is on a blank line, it goes down to |
| 2189 | the next non-blank line. That will be the start of the region. The end |
| 2190 | of the region depends on the kind of line at the start: |
| 2191 | |
| 2192 | - If a comment, the region will include all succeeding comment lines up |
| 2193 | to (but not including) the next non-comment line (if any). |
| 2194 | |
| 2195 | - Else if a prefix arg is given, and the line begins one of these |
| 2196 | structures: |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2197 | |
| 2198 | if elif else try except finally for while def class |
| 2199 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2200 | the region will be set to the body of the structure, including |
| 2201 | following blocks that `belong' to it, but excluding trailing blank |
| 2202 | and comment lines. E.g., if on a `try' statement, the `try' block |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2203 | and all (if any) of the following `except' and `finally' blocks |
| 2204 | that belong to the `try' structure will be in the region. Ditto |
| 2205 | for if/elif/else, for/else and while/else structures, and (a bit |
| 2206 | degenerate, since they're always one-block structures) def and |
| 2207 | class blocks. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2208 | |
| 2209 | - Else if no prefix argument is given, and the line begins a Python |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2210 | block (see list above), and the block is not a `one-liner' (i.e., |
| 2211 | the statement ends with a colon, not with code), the region will |
| 2212 | include all succeeding lines up to (but not including) the next |
| 2213 | code statement (if any) that's indented no more than the starting |
| 2214 | line, except that trailing blank and comment lines are excluded. |
| 2215 | E.g., if the starting line begins a multi-statement `def' |
| 2216 | structure, the region will be set to the full function definition, |
| 2217 | but without any trailing `noise' lines. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2218 | |
| 2219 | - Else the region will include all succeeding lines up to (but not |
| 2220 | including) the next blank line, or code or indenting-comment line |
| 2221 | indented strictly less than the starting line. Trailing indenting |
| 2222 | comment lines are included in this case, but not trailing blank |
| 2223 | lines. |
| 2224 | |
| 2225 | A msg identifying the location of the mark is displayed in the echo |
| 2226 | area; or do `\\[exchange-point-and-mark]' to flip down to the end. |
| 2227 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2228 | If called from a program, optional argument EXTEND plays the role of |
| 2229 | the prefix arg, and if optional argument JUST-MOVE is not nil, just |
| 2230 | moves to the end of the block (& does not set mark or display a msg)." |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2231 | (interactive "P") ; raw prefix arg |
| 2232 | (py-goto-initial-line) |
| 2233 | ;; skip over blank lines |
| 2234 | (while (and |
| 2235 | (looking-at "[ \t]*$") ; while blank line |
| 2236 | (not (eobp))) ; & somewhere to go |
| 2237 | (forward-line 1)) |
| 2238 | (if (eobp) |
| 2239 | (error "Hit end of buffer without finding a non-blank stmt")) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2240 | (let ((initial-pos (point)) |
| 2241 | (initial-indent (current-indentation)) |
| 2242 | last-pos ; position of last stmt in region |
| 2243 | (followers |
| 2244 | '((if elif else) (elif elif else) (else) |
| 2245 | (try except finally) (except except) (finally) |
| 2246 | (for else) (while else) |
| 2247 | (def) (class) ) ) |
| 2248 | first-symbol next-symbol) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2249 | |
| 2250 | (cond |
| 2251 | ;; if comment line, suck up the following comment lines |
| 2252 | ((looking-at "[ \t]*#") |
| 2253 | (re-search-forward "^[ \t]*[^ \t#]" nil 'move) ; look for non-comment |
| 2254 | (re-search-backward "^[ \t]*#") ; and back to last comment in block |
| 2255 | (setq last-pos (point))) |
| 2256 | |
| 2257 | ;; else if line is a block line and EXTEND given, suck up |
| 2258 | ;; the whole structure |
| 2259 | ((and extend |
| 2260 | (setq first-symbol (py-suck-up-first-keyword) ) |
| 2261 | (assq first-symbol followers)) |
| 2262 | (while (and |
| 2263 | (or (py-goto-beyond-block) t) ; side effect |
| 2264 | (forward-line -1) ; side effect |
| 2265 | (setq last-pos (point)) ; side effect |
| 2266 | (py-goto-statement-below) |
| 2267 | (= (current-indentation) initial-indent) |
| 2268 | (setq next-symbol (py-suck-up-first-keyword)) |
| 2269 | (memq next-symbol (cdr (assq first-symbol followers)))) |
| 2270 | (setq first-symbol next-symbol))) |
| 2271 | |
| 2272 | ;; else if line *opens* a block, search for next stmt indented <= |
| 2273 | ((py-statement-opens-block-p) |
| 2274 | (while (and |
| 2275 | (setq last-pos (point)) ; always true -- side effect |
| 2276 | (py-goto-statement-below) |
| 2277 | (> (current-indentation) initial-indent)) |
| 2278 | nil)) |
| 2279 | |
| 2280 | ;; else plain code line; stop at next blank line, or stmt or |
| 2281 | ;; indenting comment line indented < |
| 2282 | (t |
| 2283 | (while (and |
| 2284 | (setq last-pos (point)) ; always true -- side effect |
| 2285 | (or (py-goto-beyond-final-line) t) |
| 2286 | (not (looking-at "[ \t]*$")) ; stop at blank line |
| 2287 | (or |
| 2288 | (>= (current-indentation) initial-indent) |
| 2289 | (looking-at "[ \t]*#[^ \t\n]"))) ; ignore non-indenting # |
| 2290 | nil))) |
| 2291 | |
| 2292 | ;; skip to end of last stmt |
| 2293 | (goto-char last-pos) |
| 2294 | (py-goto-beyond-final-line) |
| 2295 | |
| 2296 | ;; set mark & display |
| 2297 | (if just-move |
| 2298 | () ; just return |
| 2299 | (push-mark (point) 'no-msg) |
| 2300 | (forward-line -1) |
| 2301 | (message "Mark set after: %s" (py-suck-up-leading-text)) |
| 2302 | (goto-char initial-pos)))) |
| 2303 | |
Barry Warsaw | 2518c67 | 1997-11-05 00:51:08 +0000 | [diff] [blame] | 2304 | (defun py-mark-def-or-class (&optional class) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2305 | "Set region to body of def (or class, with prefix arg) enclosing point. |
| 2306 | Pushes the current mark, then point, on the mark ring (all language |
| 2307 | modes do this, but although it's handy it's never documented ...). |
| 2308 | |
| 2309 | In most Emacs language modes, this function bears at least a |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2310 | hallucinogenic resemblance to `\\[py-end-of-def-or-class]' and |
| 2311 | `\\[py-beginning-of-def-or-class]'. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2312 | |
| 2313 | And in earlier versions of Python mode, all 3 were tightly connected. |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2314 | Turned out that was more confusing than useful: the `goto start' and |
| 2315 | `goto end' commands are usually used to search through a file, and |
| 2316 | people expect them to act a lot like `search backward' and `search |
| 2317 | forward' string-search commands. But because Python `def' and `class' |
| 2318 | can nest to arbitrary levels, finding the smallest def containing |
| 2319 | point cannot be done via a simple backward search: the def containing |
| 2320 | point may not be the closest preceding def, or even the closest |
| 2321 | preceding def that's indented less. The fancy algorithm required is |
| 2322 | appropriate for the usual uses of this `mark' command, but not for the |
| 2323 | `goto' variations. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2324 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2325 | So the def marked by this command may not be the one either of the |
| 2326 | `goto' commands find: If point is on a blank or non-indenting comment |
| 2327 | line, moves back to start of the closest preceding code statement or |
| 2328 | indenting comment line. If this is a `def' statement, that's the def |
| 2329 | we use. Else searches for the smallest enclosing `def' block and uses |
| 2330 | that. Else signals an error. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2331 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2332 | When an enclosing def is found: The mark is left immediately beyond |
| 2333 | the last line of the def block. Point is left at the start of the |
| 2334 | def, except that: if the def is preceded by a number of comment lines |
| 2335 | followed by (at most) one optional blank line, point is left at the |
| 2336 | start of the comments; else if the def is preceded by a blank line, |
| 2337 | point is left at its start. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2338 | |
| 2339 | The intent is to mark the containing def/class and its associated |
| 2340 | documentation, to make moving and duplicating functions and classes |
| 2341 | pleasant." |
| 2342 | (interactive "P") ; raw prefix arg |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2343 | (let ((start (point)) |
Barry Warsaw | 7c29b23 | 1998-07-07 17:45:38 +0000 | [diff] [blame] | 2344 | (which (cond ((eq class 'either) "\\(class\\|def\\)") |
| 2345 | (class "class") |
| 2346 | (t "def")))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2347 | (push-mark start) |
| 2348 | (if (not (py-go-up-tree-to-keyword which)) |
| 2349 | (progn (goto-char start) |
Barry Warsaw | 7c29b23 | 1998-07-07 17:45:38 +0000 | [diff] [blame] | 2350 | (error "Enclosing %s not found" |
| 2351 | (if (eq class 'either) |
| 2352 | "def or class" |
| 2353 | which))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2354 | ;; else enclosing def/class found |
| 2355 | (setq start (point)) |
| 2356 | (py-goto-beyond-block) |
| 2357 | (push-mark (point)) |
| 2358 | (goto-char start) |
| 2359 | (if (zerop (forward-line -1)) ; if there is a preceding line |
| 2360 | (progn |
| 2361 | (if (looking-at "[ \t]*$") ; it's blank |
| 2362 | (setq start (point)) ; so reset start point |
| 2363 | (goto-char start)) ; else try again |
| 2364 | (if (zerop (forward-line -1)) |
| 2365 | (if (looking-at "[ \t]*#") ; a comment |
| 2366 | ;; look back for non-comment line |
| 2367 | ;; tricky: note that the regexp matches a blank |
| 2368 | ;; line, cuz \n is in the 2nd character class |
| 2369 | (and |
| 2370 | (re-search-backward "^[ \t]*[^ \t#]" nil 'move) |
| 2371 | (forward-line 1)) |
| 2372 | ;; no comment, so go back |
Barry Warsaw | 4da6bd5 | 1997-11-26 06:00:26 +0000 | [diff] [blame] | 2373 | (goto-char start))))))) |
| 2374 | (exchange-point-and-mark) |
| 2375 | (py-keep-region-active)) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2376 | |
Barry Warsaw | 9e5a9c8 | 1996-07-24 18:26:53 +0000 | [diff] [blame] | 2377 | ;; ripped from cc-mode |
| 2378 | (defun py-forward-into-nomenclature (&optional arg) |
| 2379 | "Move forward to end of a nomenclature section or word. |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2380 | With \\[universal-argument] (programmatically, optional argument ARG), |
| 2381 | do it that many times. |
Barry Warsaw | 9e5a9c8 | 1996-07-24 18:26:53 +0000 | [diff] [blame] | 2382 | |
| 2383 | A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores." |
| 2384 | (interactive "p") |
| 2385 | (let ((case-fold-search nil)) |
| 2386 | (if (> arg 0) |
Barry Warsaw | c5a8cbd | 1996-08-05 21:53:02 +0000 | [diff] [blame] | 2387 | (re-search-forward |
| 2388 | "\\(\\W\\|[_]\\)*\\([A-Z]*[a-z0-9]*\\)" |
| 2389 | (point-max) t arg) |
Barry Warsaw | 9e5a9c8 | 1996-07-24 18:26:53 +0000 | [diff] [blame] | 2390 | (while (and (< arg 0) |
| 2391 | (re-search-backward |
Barry Warsaw | c5a8cbd | 1996-08-05 21:53:02 +0000 | [diff] [blame] | 2392 | "\\(\\W\\|[a-z0-9]\\)[A-Z]+\\|\\(\\W\\|[_]\\)\\w+" |
Barry Warsaw | 9e5a9c8 | 1996-07-24 18:26:53 +0000 | [diff] [blame] | 2393 | (point-min) 0)) |
| 2394 | (forward-char 1) |
| 2395 | (setq arg (1+ arg))))) |
| 2396 | (py-keep-region-active)) |
| 2397 | |
| 2398 | (defun py-backward-into-nomenclature (&optional arg) |
| 2399 | "Move backward to beginning of a nomenclature section or word. |
| 2400 | With optional ARG, move that many times. If ARG is negative, move |
| 2401 | forward. |
| 2402 | |
| 2403 | A `nomenclature' is a fancy way of saying AWordWithMixedCaseNotUnderscores." |
| 2404 | (interactive "p") |
| 2405 | (py-forward-into-nomenclature (- arg)) |
| 2406 | (py-keep-region-active)) |
| 2407 | |
| 2408 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2409 | |
| 2410 | ;; Documentation functions |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2411 | |
| 2412 | ;; dump the long form of the mode blurb; does the usual doc escapes, |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2413 | ;; plus lines of the form ^[vc]:name$ to suck variable & command docs |
| 2414 | ;; out of the right places, along with the keys they're on & current |
| 2415 | ;; values |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2416 | (defun py-dump-help-string (str) |
| 2417 | (with-output-to-temp-buffer "*Help*" |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2418 | (let ((locals (buffer-local-variables)) |
| 2419 | funckind funcname func funcdoc |
| 2420 | (start 0) mstart end |
| 2421 | keys ) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2422 | (while (string-match "^%\\([vc]\\):\\(.+\\)\n" str start) |
| 2423 | (setq mstart (match-beginning 0) end (match-end 0) |
| 2424 | funckind (substring str (match-beginning 1) (match-end 1)) |
| 2425 | funcname (substring str (match-beginning 2) (match-end 2)) |
| 2426 | func (intern funcname)) |
| 2427 | (princ (substitute-command-keys (substring str start mstart))) |
| 2428 | (cond |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2429 | ((equal funckind "c") ; command |
| 2430 | (setq funcdoc (documentation func) |
| 2431 | keys (concat |
| 2432 | "Key(s): " |
| 2433 | (mapconcat 'key-description |
| 2434 | (where-is-internal func py-mode-map) |
| 2435 | ", ")))) |
| 2436 | ((equal funckind "v") ; variable |
Barry Warsaw | 604cefa | 1996-09-03 18:17:04 +0000 | [diff] [blame] | 2437 | (setq funcdoc (documentation-property func 'variable-documentation) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2438 | keys (if (assq func locals) |
| 2439 | (concat |
| 2440 | "Local/Global values: " |
| 2441 | (prin1-to-string (symbol-value func)) |
| 2442 | " / " |
| 2443 | (prin1-to-string (default-value func))) |
| 2444 | (concat |
| 2445 | "Value: " |
| 2446 | (prin1-to-string (symbol-value func)))))) |
| 2447 | (t ; unexpected |
| 2448 | (error "Error in py-dump-help-string, tag `%s'" funckind))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2449 | (princ (format "\n-> %s:\t%s\t%s\n\n" |
| 2450 | (if (equal funckind "c") "Command" "Variable") |
| 2451 | funcname keys)) |
| 2452 | (princ funcdoc) |
| 2453 | (terpri) |
| 2454 | (setq start end)) |
| 2455 | (princ (substitute-command-keys (substring str start)))) |
| 2456 | (print-help-return-message))) |
| 2457 | |
| 2458 | (defun py-describe-mode () |
| 2459 | "Dump long form of Python-mode docs." |
| 2460 | (interactive) |
| 2461 | (py-dump-help-string "Major mode for editing Python files. |
| 2462 | Knows about Python indentation, tokens, comments and continuation lines. |
| 2463 | Paragraphs are separated by blank lines only. |
| 2464 | |
| 2465 | Major sections below begin with the string `@'; specific function and |
| 2466 | variable docs begin with `->'. |
| 2467 | |
| 2468 | @EXECUTING PYTHON CODE |
| 2469 | |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 2470 | \\[py-execute-import-or-reload]\timports or reloads the file in the Python interpreter |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2471 | \\[py-execute-buffer]\tsends the entire buffer to the Python interpreter |
| 2472 | \\[py-execute-region]\tsends the current region |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 2473 | \\[py-execute-def-or-class]\tsends the current function or class definition |
| 2474 | \\[py-execute-string]\tsends an arbitrary string |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2475 | \\[py-shell]\tstarts a Python interpreter window; this will be used by |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 2476 | \tsubsequent Python execution commands |
| 2477 | %c:py-execute-import-or-reload |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2478 | %c:py-execute-buffer |
| 2479 | %c:py-execute-region |
Barry Warsaw | 820273d | 1998-05-19 15:54:45 +0000 | [diff] [blame] | 2480 | %c:py-execute-def-or-class |
| 2481 | %c:py-execute-string |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2482 | %c:py-shell |
| 2483 | |
| 2484 | @VARIABLES |
| 2485 | |
| 2486 | py-indent-offset\tindentation increment |
Barry Warsaw | 42f707f | 1996-07-29 21:05:05 +0000 | [diff] [blame] | 2487 | py-block-comment-prefix\tcomment string used by comment-region |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2488 | |
| 2489 | py-python-command\tshell command to invoke Python interpreter |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2490 | py-temp-directory\tdirectory used for temp files (if needed) |
| 2491 | |
| 2492 | py-beep-if-tab-change\tring the bell if tab-width is changed |
| 2493 | %v:py-indent-offset |
| 2494 | %v:py-block-comment-prefix |
| 2495 | %v:py-python-command |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2496 | %v:py-temp-directory |
| 2497 | %v:py-beep-if-tab-change |
| 2498 | |
| 2499 | @KINDS OF LINES |
| 2500 | |
| 2501 | Each physical line in the file is either a `continuation line' (the |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2502 | preceding line ends with a backslash that's not part of a comment, or |
| 2503 | the paren/bracket/brace nesting level at the start of the line is |
| 2504 | non-zero, or both) or an `initial line' (everything else). |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2505 | |
| 2506 | An initial line is in turn a `blank line' (contains nothing except |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2507 | possibly blanks or tabs), a `comment line' (leftmost non-blank |
| 2508 | character is `#'), or a `code line' (everything else). |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2509 | |
| 2510 | Comment Lines |
| 2511 | |
| 2512 | Although all comment lines are treated alike by Python, Python mode |
| 2513 | recognizes two kinds that act differently with respect to indentation. |
| 2514 | |
| 2515 | An `indenting comment line' is a comment line with a blank, tab or |
| 2516 | nothing after the initial `#'. The indentation commands (see below) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2517 | treat these exactly as if they were code lines: a line following an |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2518 | indenting comment line will be indented like the comment line. All |
| 2519 | other comment lines (those with a non-whitespace character immediately |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2520 | following the initial `#') are `non-indenting comment lines', and |
| 2521 | their indentation is ignored by the indentation commands. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2522 | |
| 2523 | Indenting comment lines are by far the usual case, and should be used |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2524 | whenever possible. Non-indenting comment lines are useful in cases |
| 2525 | like these: |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2526 | |
| 2527 | \ta = b # a very wordy single-line comment that ends up being |
| 2528 | \t #... continued onto another line |
| 2529 | |
| 2530 | \tif a == b: |
| 2531 | ##\t\tprint 'panic!' # old code we've `commented out' |
| 2532 | \t\treturn a |
| 2533 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2534 | Since the `#...' and `##' comment lines have a non-whitespace |
| 2535 | character following the initial `#', Python mode ignores them when |
| 2536 | computing the proper indentation for the next line. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2537 | |
| 2538 | Continuation Lines and Statements |
| 2539 | |
| 2540 | The Python-mode commands generally work on statements instead of on |
| 2541 | individual lines, where a `statement' is a comment or blank line, or a |
| 2542 | code line and all of its following continuation lines (if any) |
| 2543 | considered as a single logical unit. The commands in this mode |
| 2544 | generally (when it makes sense) automatically move to the start of the |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2545 | statement containing point, even if point happens to be in the middle |
| 2546 | of some continuation line. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2547 | |
| 2548 | |
| 2549 | @INDENTATION |
| 2550 | |
| 2551 | Primarily for entering new code: |
| 2552 | \t\\[indent-for-tab-command]\t indent line appropriately |
| 2553 | \t\\[py-newline-and-indent]\t insert newline, then indent |
Barry Warsaw | 27ee115 | 1997-12-03 05:03:44 +0000 | [diff] [blame] | 2554 | \t\\[py-electric-backspace]\t reduce indentation, or delete single character |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2555 | |
| 2556 | Primarily for reindenting existing code: |
| 2557 | \t\\[py-guess-indent-offset]\t guess py-indent-offset from file content; change locally |
| 2558 | \t\\[universal-argument] \\[py-guess-indent-offset]\t ditto, but change globally |
| 2559 | |
| 2560 | \t\\[py-indent-region]\t reindent region to match its context |
| 2561 | \t\\[py-shift-region-left]\t shift region left by py-indent-offset |
| 2562 | \t\\[py-shift-region-right]\t shift region right by py-indent-offset |
| 2563 | |
| 2564 | Unlike most programming languages, Python uses indentation, and only |
| 2565 | indentation, to specify block structure. Hence the indentation supplied |
| 2566 | automatically by Python-mode is just an educated guess: only you know |
| 2567 | the block structure you intend, so only you can supply correct |
| 2568 | indentation. |
| 2569 | |
| 2570 | The \\[indent-for-tab-command] and \\[py-newline-and-indent] keys try to suggest plausible indentation, based on |
| 2571 | the indentation of preceding statements. E.g., assuming |
| 2572 | py-indent-offset is 4, after you enter |
| 2573 | \tif a > 0: \\[py-newline-and-indent] |
| 2574 | the cursor will be moved to the position of the `_' (_ is not a |
| 2575 | character in the file, it's just used here to indicate the location of |
| 2576 | the cursor): |
| 2577 | \tif a > 0: |
| 2578 | \t _ |
| 2579 | If you then enter `c = d' \\[py-newline-and-indent], the cursor will move |
| 2580 | to |
| 2581 | \tif a > 0: |
| 2582 | \t c = d |
| 2583 | \t _ |
| 2584 | Python-mode cannot know whether that's what you intended, or whether |
| 2585 | \tif a > 0: |
| 2586 | \t c = d |
| 2587 | \t_ |
| 2588 | was your intent. In general, Python-mode either reproduces the |
| 2589 | indentation of the (closest code or indenting-comment) preceding |
| 2590 | statement, or adds an extra py-indent-offset blanks if the preceding |
| 2591 | statement has `:' as its last significant (non-whitespace and non- |
| 2592 | comment) character. If the suggested indentation is too much, use |
Barry Warsaw | 27ee115 | 1997-12-03 05:03:44 +0000 | [diff] [blame] | 2593 | \\[py-electric-backspace] to reduce it. |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2594 | |
| 2595 | Continuation lines are given extra indentation. If you don't like the |
| 2596 | suggested indentation, change it to something you do like, and Python- |
| 2597 | mode will strive to indent later lines of the statement in the same way. |
| 2598 | |
| 2599 | If a line is a continuation line by virtue of being in an unclosed |
| 2600 | paren/bracket/brace structure (`list', for short), the suggested |
| 2601 | indentation depends on whether the current line contains the first item |
| 2602 | in the list. If it does, it's indented py-indent-offset columns beyond |
| 2603 | the indentation of the line containing the open bracket. If you don't |
| 2604 | like that, change it by hand. The remaining items in the list will mimic |
| 2605 | whatever indentation you give to the first item. |
| 2606 | |
| 2607 | If a line is a continuation line because the line preceding it ends with |
| 2608 | a backslash, the third and following lines of the statement inherit their |
| 2609 | indentation from the line preceding them. The indentation of the second |
| 2610 | line in the statement depends on the form of the first (base) line: if |
| 2611 | the base line is an assignment statement with anything more interesting |
| 2612 | than the backslash following the leftmost assigning `=', the second line |
| 2613 | is indented two columns beyond that `='. Else it's indented to two |
| 2614 | columns beyond the leftmost solid chunk of non-whitespace characters on |
| 2615 | the base line. |
| 2616 | |
| 2617 | Warning: indent-region should not normally be used! It calls \\[indent-for-tab-command] |
| 2618 | repeatedly, and as explained above, \\[indent-for-tab-command] can't guess the block |
| 2619 | structure you intend. |
| 2620 | %c:indent-for-tab-command |
| 2621 | %c:py-newline-and-indent |
Barry Warsaw | 27ee115 | 1997-12-03 05:03:44 +0000 | [diff] [blame] | 2622 | %c:py-electric-backspace |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2623 | |
| 2624 | |
| 2625 | The next function may be handy when editing code you didn't write: |
| 2626 | %c:py-guess-indent-offset |
| 2627 | |
| 2628 | |
| 2629 | The remaining `indent' functions apply to a region of Python code. They |
| 2630 | assume the block structure (equals indentation, in Python) of the region |
| 2631 | is correct, and alter the indentation in various ways while preserving |
| 2632 | the block structure: |
| 2633 | %c:py-indent-region |
| 2634 | %c:py-shift-region-left |
| 2635 | %c:py-shift-region-right |
| 2636 | |
| 2637 | @MARKING & MANIPULATING REGIONS OF CODE |
| 2638 | |
| 2639 | \\[py-mark-block]\t mark block of lines |
Barry Warsaw | 2518c67 | 1997-11-05 00:51:08 +0000 | [diff] [blame] | 2640 | \\[py-mark-def-or-class]\t mark smallest enclosing def |
| 2641 | \\[universal-argument] \\[py-mark-def-or-class]\t mark smallest enclosing class |
Barry Warsaw | 42f707f | 1996-07-29 21:05:05 +0000 | [diff] [blame] | 2642 | \\[comment-region]\t comment out region of code |
| 2643 | \\[universal-argument] \\[comment-region]\t uncomment region of code |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2644 | %c:py-mark-block |
Barry Warsaw | 2518c67 | 1997-11-05 00:51:08 +0000 | [diff] [blame] | 2645 | %c:py-mark-def-or-class |
Barry Warsaw | 42f707f | 1996-07-29 21:05:05 +0000 | [diff] [blame] | 2646 | %c:comment-region |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2647 | |
| 2648 | @MOVING POINT |
| 2649 | |
| 2650 | \\[py-previous-statement]\t move to statement preceding point |
| 2651 | \\[py-next-statement]\t move to statement following point |
| 2652 | \\[py-goto-block-up]\t move up to start of current block |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2653 | \\[py-beginning-of-def-or-class]\t move to start of def |
| 2654 | \\[universal-argument] \\[py-beginning-of-def-or-class]\t move to start of class |
| 2655 | \\[py-end-of-def-or-class]\t move to end of def |
| 2656 | \\[universal-argument] \\[py-end-of-def-or-class]\t move to end of class |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2657 | |
| 2658 | The first two move to one statement beyond the statement that contains |
| 2659 | point. A numeric prefix argument tells them to move that many |
| 2660 | statements instead. Blank lines, comment lines, and continuation lines |
| 2661 | do not count as `statements' for these commands. So, e.g., you can go |
| 2662 | to the first code statement in a file by entering |
| 2663 | \t\\[beginning-of-buffer]\t to move to the top of the file |
| 2664 | \t\\[py-next-statement]\t to skip over initial comments and blank lines |
| 2665 | Or do `\\[py-previous-statement]' with a huge prefix argument. |
| 2666 | %c:py-previous-statement |
| 2667 | %c:py-next-statement |
| 2668 | %c:py-goto-block-up |
Barry Warsaw | ab0e86c | 1998-05-19 15:31:46 +0000 | [diff] [blame] | 2669 | %c:py-beginning-of-def-or-class |
| 2670 | %c:py-end-of-def-or-class |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2671 | |
| 2672 | @LITTLE-KNOWN EMACS COMMANDS PARTICULARLY USEFUL IN PYTHON MODE |
| 2673 | |
| 2674 | `\\[indent-new-comment-line]' is handy for entering a multi-line comment. |
| 2675 | |
| 2676 | `\\[set-selective-display]' with a `small' prefix arg is ideally suited for viewing the |
| 2677 | overall class and def structure of a module. |
| 2678 | |
| 2679 | `\\[back-to-indentation]' moves point to a line's first non-blank character. |
| 2680 | |
| 2681 | `\\[indent-relative]' is handy for creating odd indentation. |
| 2682 | |
| 2683 | @OTHER EMACS HINTS |
| 2684 | |
| 2685 | If you don't like the default value of a variable, change its value to |
| 2686 | whatever you do like by putting a `setq' line in your .emacs file. |
| 2687 | E.g., to set the indentation increment to 4, put this line in your |
| 2688 | .emacs: |
| 2689 | \t(setq py-indent-offset 4) |
| 2690 | To see the value of a variable, do `\\[describe-variable]' and enter the variable |
| 2691 | name at the prompt. |
| 2692 | |
| 2693 | When entering a key sequence like `C-c C-n', it is not necessary to |
| 2694 | release the CONTROL key after doing the `C-c' part -- it suffices to |
| 2695 | press the CONTROL key, press and release `c' (while still holding down |
| 2696 | CONTROL), press and release `n' (while still holding down CONTROL), & |
| 2697 | then release CONTROL. |
| 2698 | |
| 2699 | Entering Python mode calls with no arguments the value of the variable |
| 2700 | `python-mode-hook', if that value exists and is not nil; for backward |
| 2701 | compatibility it also tries `py-mode-hook'; see the `Hooks' section of |
| 2702 | the Elisp manual for details. |
| 2703 | |
| 2704 | Obscure: When python-mode is first loaded, it looks for all bindings |
| 2705 | to newline-and-indent in the global keymap, and shadows them with |
| 2706 | local bindings to py-newline-and-indent.")) |
| 2707 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2708 | |
| 2709 | ;; Helper functions |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2710 | (defvar py-parse-state-re |
| 2711 | (concat |
| 2712 | "^[ \t]*\\(if\\|elif\\|else\\|while\\|def\\|class\\)\\>" |
| 2713 | "\\|" |
| 2714 | "^[^ #\t\n]")) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2715 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2716 | (defun py-parse-state () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2717 | "Return the parse state at point (see `parse-partial-sexp' docs)." |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2718 | (save-excursion |
Barry Warsaw | 43ecf8e | 1996-04-06 00:00:19 +0000 | [diff] [blame] | 2719 | (let ((here (point)) |
Barry Warsaw | 742a511 | 1998-03-13 17:29:15 +0000 | [diff] [blame] | 2720 | pps done) |
Barry Warsaw | 43ecf8e | 1996-04-06 00:00:19 +0000 | [diff] [blame] | 2721 | (while (not done) |
| 2722 | ;; back up to the first preceding line (if any; else start of |
| 2723 | ;; buffer) that begins with a popular Python keyword, or a |
| 2724 | ;; non- whitespace and non-comment character. These are good |
| 2725 | ;; places to start parsing to see whether where we started is |
| 2726 | ;; at a non-zero nesting level. It may be slow for people who |
| 2727 | ;; write huge code blocks or huge lists ... tough beans. |
| 2728 | (re-search-backward py-parse-state-re nil 'move) |
| 2729 | (beginning-of-line) |
Barry Warsaw | f64b405 | 1998-02-12 16:52:14 +0000 | [diff] [blame] | 2730 | ;; In XEmacs, we have a much better way to test for whether |
| 2731 | ;; we're in a triple-quoted string or not. Emacs does not |
Barry Warsaw | 145ab1c | 1998-05-19 14:49:49 +0000 | [diff] [blame] | 2732 | ;; have this built-in function, which is its loss because |
Barry Warsaw | f64b405 | 1998-02-12 16:52:14 +0000 | [diff] [blame] | 2733 | ;; without scanning from the beginning of the buffer, there's |
| 2734 | ;; no accurate way to determine this otherwise. |
| 2735 | (if (not (fboundp 'buffer-syntactic-context)) |
| 2736 | ;; Emacs |
Barry Warsaw | 585f733 | 1998-04-01 21:13:51 +0000 | [diff] [blame] | 2737 | (progn |
| 2738 | (save-excursion (setq pps (parse-partial-sexp (point) here))) |
Barry Warsaw | f64b405 | 1998-02-12 16:52:14 +0000 | [diff] [blame] | 2739 | ;; make sure we don't land inside a triple-quoted string |
Barry Warsaw | 742a511 | 1998-03-13 17:29:15 +0000 | [diff] [blame] | 2740 | (setq done (or (not (nth 3 pps)) |
| 2741 | (bobp)))) |
Barry Warsaw | f64b405 | 1998-02-12 16:52:14 +0000 | [diff] [blame] | 2742 | ;; XEmacs |
| 2743 | (setq done (or (not (buffer-syntactic-context)) |
| 2744 | (bobp))) |
| 2745 | (when done |
| 2746 | (setq pps (parse-partial-sexp (point) here))) |
| 2747 | )) |
Barry Warsaw | 43ecf8e | 1996-04-06 00:00:19 +0000 | [diff] [blame] | 2748 | pps))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2749 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2750 | (defun py-nesting-level () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2751 | "Return the buffer position of the last unclosed enclosing list. |
| 2752 | If nesting level is zero, return nil." |
Barry Warsaw | f64b405 | 1998-02-12 16:52:14 +0000 | [diff] [blame] | 2753 | (let ((status (py-parse-state))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2754 | (if (zerop (car status)) |
| 2755 | nil ; not in a nest |
| 2756 | (car (cdr status))))) ; char# of open bracket |
| 2757 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2758 | (defun py-backslash-continuation-line-p () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2759 | "Return t iff preceding line ends with backslash that is not in a comment." |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2760 | (save-excursion |
| 2761 | (beginning-of-line) |
| 2762 | (and |
| 2763 | ;; use a cheap test first to avoid the regexp if possible |
| 2764 | ;; use 'eq' because char-after may return nil |
| 2765 | (eq (char-after (- (point) 2)) ?\\ ) |
| 2766 | ;; make sure; since eq test passed, there is a preceding line |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2767 | (forward-line -1) ; always true -- side effect |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2768 | (looking-at py-continued-re)))) |
| 2769 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2770 | (defun py-continuation-line-p () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2771 | "Return t iff current line is a continuation line." |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2772 | (save-excursion |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2773 | (beginning-of-line) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2774 | (or (py-backslash-continuation-line-p) |
| 2775 | (py-nesting-level)))) |
| 2776 | |
Barry Warsaw | 9c1696c | 1998-12-15 04:36:22 +0000 | [diff] [blame] | 2777 | (defun py-goto-beginning-of-tqs (delim) |
| 2778 | "Go to the beginning of the triple quoted string we find ourselves in. |
| 2779 | DELIM is the TQS string delimiter character we're searching backwards |
| 2780 | for." |
| 2781 | (let ((skip (and delim (make-string 1 delim)))) |
| 2782 | (when skip |
| 2783 | (save-excursion |
| 2784 | (py-safe (search-backward skip)) |
| 2785 | (if (and (eq (char-before) delim) |
| 2786 | (eq (char-before (1- (point))) delim)) |
| 2787 | (setq skip (make-string 3 delim)))) |
| 2788 | ;; we're looking at a triple-quoted string |
| 2789 | (py-safe (search-backward skip))))) |
| 2790 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2791 | (defun py-goto-initial-line () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2792 | "Go to the initial line of the current statement. |
| 2793 | Usually this is the line we're on, but if we're on the 2nd or |
| 2794 | following lines of a continuation block, we need to go up to the first |
| 2795 | line of the block." |
| 2796 | ;; Tricky: We want to avoid quadratic-time behavior for long |
| 2797 | ;; continued blocks, whether of the backslash or open-bracket |
| 2798 | ;; varieties, or a mix of the two. The following manages to do that |
| 2799 | ;; in the usual cases. |
| 2800 | ;; |
| 2801 | ;; Also, if we're sitting inside a triple quoted string, this will |
| 2802 | ;; drop us at the line that begins the string. |
Barry Warsaw | 9ec9fbc | 1998-01-21 05:15:57 +0000 | [diff] [blame] | 2803 | (let (open-bracket-pos) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2804 | (while (py-continuation-line-p) |
| 2805 | (beginning-of-line) |
| 2806 | (if (py-backslash-continuation-line-p) |
| 2807 | (while (py-backslash-continuation-line-p) |
| 2808 | (forward-line -1)) |
| 2809 | ;; else zip out of nested brackets/braces/parens |
| 2810 | (while (setq open-bracket-pos (py-nesting-level)) |
| 2811 | (goto-char open-bracket-pos))))) |
| 2812 | (beginning-of-line)) |
| 2813 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2814 | (defun py-goto-beyond-final-line () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2815 | "Go to the point just beyond the fine line of the current statement. |
| 2816 | Usually this is the start of the next line, but if this is a |
| 2817 | multi-line statement we need to skip over the continuation lines." |
| 2818 | ;; Tricky: Again we need to be clever to avoid quadratic time |
| 2819 | ;; behavior. |
| 2820 | ;; |
| 2821 | ;; XXX: Not quite the right solution, but deals with multi-line doc |
| 2822 | ;; strings |
Barry Warsaw | 751f493 | 1998-05-19 16:06:21 +0000 | [diff] [blame] | 2823 | (if (looking-at (concat "[ \t]*\\(" py-stringlit-re "\\)")) |
| 2824 | (goto-char (match-end 0))) |
| 2825 | ;; |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2826 | (forward-line 1) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2827 | (let (state) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2828 | (while (and (py-continuation-line-p) |
| 2829 | (not (eobp))) |
| 2830 | ;; skip over the backslash flavor |
| 2831 | (while (and (py-backslash-continuation-line-p) |
| 2832 | (not (eobp))) |
| 2833 | (forward-line 1)) |
| 2834 | ;; if in nest, zip to the end of the nest |
| 2835 | (setq state (py-parse-state)) |
| 2836 | (if (and (not (zerop (car state))) |
| 2837 | (not (eobp))) |
| 2838 | (progn |
Barry Warsaw | affc0ca | 1997-11-03 16:59:38 +0000 | [diff] [blame] | 2839 | (parse-partial-sexp (point) (point-max) 0 nil state) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2840 | (forward-line 1)))))) |
| 2841 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2842 | (defun py-statement-opens-block-p () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2843 | "Return t iff the current statement opens a block. |
| 2844 | I.e., iff it ends with a colon that is not in a comment. Point should |
| 2845 | be at the start of a statement." |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2846 | (save-excursion |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2847 | (let ((start (point)) |
| 2848 | (finish (progn (py-goto-beyond-final-line) (1- (point)))) |
| 2849 | (searching t) |
| 2850 | (answer nil) |
| 2851 | state) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2852 | (goto-char start) |
| 2853 | (while searching |
| 2854 | ;; look for a colon with nothing after it except whitespace, and |
| 2855 | ;; maybe a comment |
| 2856 | (if (re-search-forward ":\\([ \t]\\|\\\\\n\\)*\\(#.*\\)?$" |
| 2857 | finish t) |
| 2858 | (if (eq (point) finish) ; note: no `else' clause; just |
| 2859 | ; keep searching if we're not at |
| 2860 | ; the end yet |
| 2861 | ;; sure looks like it opens a block -- but it might |
| 2862 | ;; be in a comment |
| 2863 | (progn |
| 2864 | (setq searching nil) ; search is done either way |
| 2865 | (setq state (parse-partial-sexp start |
| 2866 | (match-beginning 0))) |
| 2867 | (setq answer (not (nth 4 state))))) |
| 2868 | ;; search failed: couldn't find another interesting colon |
| 2869 | (setq searching nil))) |
| 2870 | answer))) |
| 2871 | |
Barry Warsaw | f831d81 | 1996-07-31 20:42:59 +0000 | [diff] [blame] | 2872 | (defun py-statement-closes-block-p () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2873 | "Return t iff the current statement closes a block. |
| 2874 | I.e., if the line starts with `return', `raise', `break', `continue', |
| 2875 | and `pass'. This doesn't catch embedded statements." |
Barry Warsaw | f831d81 | 1996-07-31 20:42:59 +0000 | [diff] [blame] | 2876 | (let ((here (point))) |
| 2877 | (back-to-indentation) |
| 2878 | (prog1 |
Barry Warsaw | affc0ca | 1997-11-03 16:59:38 +0000 | [diff] [blame] | 2879 | (looking-at (concat py-block-closing-keywords-re "\\>")) |
Barry Warsaw | f831d81 | 1996-07-31 20:42:59 +0000 | [diff] [blame] | 2880 | (goto-char here)))) |
| 2881 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2882 | (defun py-goto-beyond-block () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2883 | "Go to point just beyond the final line of block begun by the current line. |
| 2884 | This is the same as where `py-goto-beyond-final-line' goes unless |
| 2885 | we're on colon line, in which case we go to the end of the block. |
| 2886 | Assumes point is at the beginning of the line." |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2887 | (if (py-statement-opens-block-p) |
| 2888 | (py-mark-block nil 'just-move) |
| 2889 | (py-goto-beyond-final-line))) |
| 2890 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2891 | (defun py-goto-statement-at-or-above () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2892 | "Go to the start of the first statement at or preceding point. |
| 2893 | Return t if there is such a statement, otherwise nil. `Statement' |
| 2894 | does not include blank lines, comments, or continuation lines." |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2895 | (py-goto-initial-line) |
| 2896 | (if (looking-at py-blank-or-comment-re) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2897 | ;; skip back over blank & comment lines |
| 2898 | ;; note: will skip a blank or comment line that happens to be |
| 2899 | ;; a continuation line too |
| 2900 | (if (re-search-backward "^[ \t]*[^ \t#\n]" nil t) |
| 2901 | (progn (py-goto-initial-line) t) |
| 2902 | nil) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2903 | t)) |
| 2904 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2905 | (defun py-goto-statement-below () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2906 | "Go to start of the first statement following the statement containing point. |
| 2907 | Return t if there is such a statement, otherwise nil. `Statement' |
| 2908 | does not include blank lines, comments, or continuation lines." |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2909 | (beginning-of-line) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2910 | (let ((start (point))) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2911 | (py-goto-beyond-final-line) |
| 2912 | (while (and |
| 2913 | (looking-at py-blank-or-comment-re) |
| 2914 | (not (eobp))) |
| 2915 | (forward-line 1)) |
| 2916 | (if (eobp) |
| 2917 | (progn (goto-char start) nil) |
| 2918 | t))) |
| 2919 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2920 | (defun py-go-up-tree-to-keyword (key) |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2921 | "Go to begining of statement starting with KEY, at or preceding point. |
| 2922 | |
| 2923 | KEY is a regular expression describing a Python keyword. Skip blank |
| 2924 | lines and non-indenting comments. If the statement found starts with |
| 2925 | KEY, then stop, otherwise go back to first enclosing block starting |
| 2926 | with KEY. If successful, leave point at the start of the KEY line and |
| 2927 | return t. Otherwise, leav point at an undefined place and return nil." |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2928 | ;; skip blanks and non-indenting # |
| 2929 | (py-goto-initial-line) |
| 2930 | (while (and |
| 2931 | (looking-at "[ \t]*\\($\\|#[^ \t\n]\\)") |
| 2932 | (zerop (forward-line -1))) ; go back |
| 2933 | nil) |
| 2934 | (py-goto-initial-line) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2935 | (let* ((re (concat "[ \t]*" key "\\b")) |
| 2936 | (case-fold-search nil) ; let* so looking-at sees this |
| 2937 | (found (looking-at re)) |
| 2938 | (dead nil)) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2939 | (while (not (or found dead)) |
| 2940 | (condition-case nil ; in case no enclosing block |
| 2941 | (py-goto-block-up 'no-mark) |
| 2942 | (error (setq dead t))) |
| 2943 | (or dead (setq found (looking-at re)))) |
| 2944 | (beginning-of-line) |
| 2945 | found)) |
| 2946 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2947 | (defun py-suck-up-leading-text () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2948 | "Return string in buffer from start of indentation to end of line. |
| 2949 | Prefix with \"...\" if leading whitespace was skipped." |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2950 | (save-excursion |
| 2951 | (back-to-indentation) |
| 2952 | (concat |
| 2953 | (if (bolp) "" "...") |
| 2954 | (buffer-substring (point) (progn (end-of-line) (point)))))) |
| 2955 | |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2956 | (defun py-suck-up-first-keyword () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2957 | "Return first keyword on the line as a Lisp symbol. |
| 2958 | `Keyword' is defined (essentially) as the regular expression |
| 2959 | ([a-z]+). Returns nil if none was found." |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2960 | (let ((case-fold-search nil)) |
Barry Warsaw | 7ae7768 | 1994-12-12 20:38:05 +0000 | [diff] [blame] | 2961 | (if (looking-at "[ \t]*\\([a-z]+\\)\\b") |
| 2962 | (intern (buffer-substring (match-beginning 1) (match-end 1))) |
| 2963 | nil))) |
| 2964 | |
Barry Warsaw | b3e81d5 | 1996-09-04 15:12:42 +0000 | [diff] [blame] | 2965 | (defun py-current-defun () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2966 | "Python value for `add-log-current-defun-function'. |
| 2967 | This tells add-log.el how to find the current function/method/variable." |
Barry Warsaw | b3e81d5 | 1996-09-04 15:12:42 +0000 | [diff] [blame] | 2968 | (save-excursion |
| 2969 | (if (re-search-backward py-defun-start-re nil t) |
| 2970 | (or (match-string 3) |
| 2971 | (let ((method (match-string 2))) |
| 2972 | (if (and (not (zerop (length (match-string 1)))) |
| 2973 | (re-search-backward py-class-start-re nil t)) |
| 2974 | (concat (match-string 1) "." method) |
| 2975 | method))) |
| 2976 | nil))) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2977 | |
| 2978 | |
Barry Warsaw | fec75d6 | 1995-07-05 23:26:15 +0000 | [diff] [blame] | 2979 | (defconst py-help-address "python-mode@python.org" |
Barry Warsaw | 850437a | 1995-03-08 21:50:28 +0000 | [diff] [blame] | 2980 | "Address accepting submission of bug reports.") |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 2981 | |
Barry Warsaw | 850437a | 1995-03-08 21:50:28 +0000 | [diff] [blame] | 2982 | (defun py-version () |
| 2983 | "Echo the current version of `python-mode' in the minibuffer." |
| 2984 | (interactive) |
| 2985 | (message "Using `python-mode' version %s" py-version) |
| 2986 | (py-keep-region-active)) |
| 2987 | |
| 2988 | ;; only works under Emacs 19 |
| 2989 | ;(eval-when-compile |
| 2990 | ; (require 'reporter)) |
| 2991 | |
| 2992 | (defun py-submit-bug-report (enhancement-p) |
| 2993 | "Submit via mail a bug report on `python-mode'. |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2994 | With \\[universal-argument] (programmatically, argument ENHANCEMENT-P |
| 2995 | non-nil) just submit an enhancement request." |
Barry Warsaw | 850437a | 1995-03-08 21:50:28 +0000 | [diff] [blame] | 2996 | (interactive |
| 2997 | (list (not (y-or-n-p |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 2998 | "Is this a bug report (hit `n' to send other comments)? ")))) |
Barry Warsaw | b5e0ecb | 1995-03-14 18:32:54 +0000 | [diff] [blame] | 2999 | (let ((reporter-prompt-for-summary-p (if enhancement-p |
| 3000 | "(Very) brief summary: " |
| 3001 | t))) |
Barry Warsaw | 850437a | 1995-03-08 21:50:28 +0000 | [diff] [blame] | 3002 | (require 'reporter) |
| 3003 | (reporter-submit-bug-report |
| 3004 | py-help-address ;address |
Barry Warsaw | b5e0ecb | 1995-03-14 18:32:54 +0000 | [diff] [blame] | 3005 | (concat "python-mode " py-version) ;pkgname |
Barry Warsaw | 850437a | 1995-03-08 21:50:28 +0000 | [diff] [blame] | 3006 | ;; varlist |
| 3007 | (if enhancement-p nil |
| 3008 | '(py-python-command |
| 3009 | py-indent-offset |
| 3010 | py-block-comment-prefix |
Barry Warsaw | 850437a | 1995-03-08 21:50:28 +0000 | [diff] [blame] | 3011 | py-temp-directory |
| 3012 | py-beep-if-tab-change)) |
| 3013 | nil ;pre-hooks |
| 3014 | nil ;post-hooks |
| 3015 | "Dear Barry,") ;salutation |
| 3016 | (if enhancement-p nil |
| 3017 | (set-mark (point)) |
| 3018 | (insert |
| 3019 | "Please replace this text with a sufficiently large code sample\n\ |
| 3020 | and an exact recipe so that I can reproduce your problem. Failure\n\ |
| 3021 | to do so may mean a greater delay in fixing your bug.\n\n") |
| 3022 | (exchange-point-and-mark) |
| 3023 | (py-keep-region-active)))) |
| 3024 | |
| 3025 | |
Barry Warsaw | 4738478 | 1997-11-26 05:27:45 +0000 | [diff] [blame] | 3026 | (defun py-kill-emacs-hook () |
Barry Warsaw | 41a05c7 | 1998-08-10 16:33:12 +0000 | [diff] [blame] | 3027 | "Delete files in `py-file-queue'. |
| 3028 | These are Python temporary files awaiting execution." |
Barry Warsaw | 4738478 | 1997-11-26 05:27:45 +0000 | [diff] [blame] | 3029 | (mapcar #'(lambda (filename) |
| 3030 | (py-safe (delete-file filename))) |
| 3031 | py-file-queue)) |
| 3032 | |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 3033 | ;; arrange to kill temp files when Emacs exists |
Barry Warsaw | c72c11c | 1997-08-09 06:42:08 +0000 | [diff] [blame] | 3034 | (add-hook 'kill-emacs-hook 'py-kill-emacs-hook) |
Barry Warsaw | 7b0f568 | 1995-03-08 21:33:04 +0000 | [diff] [blame] | 3035 | |
| 3036 | |
| 3037 | |
| 3038 | (provide 'python-mode) |
| 3039 | ;;; python-mode.el ends here |