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