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