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