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