Fixed indentation case for after beginning of block
[bpt/emacs.git] / lisp / progmodes / python.el
CommitLineData
33d0aec1 1;;; python.el --- Python's flying circus support for Emacs
45c138ac 2
e2d8d479 3;; Copyright (C) 2010, 2011 Free Software Foundation, Inc.
45c138ac
FEG
4
5;; Author: Fabián E. Gallina <fabian@anue.biz>
b7f13559
FEG
6;; URL: https://github.com/fgallina/python.el
7;; Version: 0.23.1
45c138ac
FEG
8;; Maintainer: FSF
9;; Created: Jul 2010
10;; Keywords: languages
11
12;; This file is NOT part of GNU Emacs.
13
14;; python.el is free software: you can redistribute it and/or modify
15;; it under the terms of the GNU General Public License as published by
16;; the Free Software Foundation, either version 3 of the License, or
17;; (at your option) any later version.
18
19;; python.el is distributed in the hope that it will be useful,
20;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22;; GNU General Public License for more details.
23
24;; You should have received a copy of the GNU General Public License
25;; along with python.el. If not, see <http://www.gnu.org/licenses/>.
26
27;;; Commentary:
28
29;; Major mode for editing Python files with some fontification and
30;; indentation bits extracted from original Dave Love's python.el
31;; found in GNU/Emacs.
32
33;; While it probably has less features than Dave Love's python.el and
34;; PSF's python-mode.el it provides the main stuff you'll need while
35;; keeping it simple :)
36
37;; Implements Syntax highlighting, Indentation, Movement, Shell
64348c32
FEG
38;; interaction, Shell completion, Shell virtualenv support, Pdb
39;; tracking, Symbol completion, Skeletons, FFAP, Code Check, Eldoc,
40;; imenu.
45c138ac
FEG
41
42;; Syntax highlighting: Fontification of code is provided and supports
43;; python's triple quoted strings properly.
44
45;; Indentation: Automatic indentation with indentation cycling is
46;; provided, it allows you to navigate different available levels of
67845102
FEG
47;; indentation by hitting <tab> several times. Also when inserting a
48;; colon the `python-indent-electric-colon' command is invoked and
49;; causes the current line to be dedented automatically if needed.
45c138ac
FEG
50
51;; Movement: `beginning-of-defun' and `end-of-defun' functions are
4cafacb5
FEG
52;; properly implemented. Also there are specialized
53;; `forward-sentence' and `backward-sentence' replacements
54;; (`python-nav-forward-sentence', `python-nav-backward-sentence'
55;; respectively). Extra functions `python-nav-sentence-start' and
56;; `python-nav-sentence-end' are included to move to the beginning and
57;; to the end of a setence while taking care of multiline definitions.
45c138ac
FEG
58
59;; Shell interaction: is provided and allows you easily execute any
60;; block of code of your current buffer in an inferior Python process.
61
62;; Shell completion: hitting tab will try to complete the current
4e531f7a 63;; word. Shell completion is implemented in a manner that if you
45c138ac
FEG
64;; change the `python-shell-interpreter' to any other (for example
65;; IPython) it should be easy to integrate another way to calculate
57808175 66;; completions. You just need to specify your custom
45c138ac 67;; `python-shell-completion-setup-code' and
4cafacb5 68;; `python-shell-completion-string-code'.
62feb915
FEG
69
70;; Here is a complete example of the settings you would use for
71;; iPython
72
73;; (setq
74;; python-shell-interpreter "ipython"
75;; python-shell-interpreter-args ""
76;; python-shell-prompt-regexp "In \\[[0-9]+\\]: "
77;; python-shell-prompt-output-regexp "Out\\[[0-9]+\\]: "
78;; python-shell-completion-setup-code ""
79;; python-shell-completion-string-code
80;; "';'.join(__IP.complete('''%s'''))\n")
45c138ac 81
099bf010
FEG
82;; Please note that the default completion system depends on the
83;; readline module, so if you are using some Operating System that
84;; bundles Python without it (like Windows) just install the
85;; pyreadline from http://ipython.scipy.org/moin/PyReadline/Intro and
86;; you should be good to go.
87
64348c32
FEG
88;; Shell virtualenv support: The shell also contains support for
89;; virtualenvs and other special environment modifications thanks to
66bbb27f
FEG
90;; `python-shell-process-environment' and `python-shell-exec-path'.
91;; These two variables allows you to modify execution paths and
307bd2e8 92;; environment variables to make easy for you to setup virtualenv rules
64348c32 93;; or behavior modifications when running shells. Here is an example
66bbb27f
FEG
94;; of how to make shell processes to be run using the /path/to/env/
95;; virtualenv:
96
97;; (setq python-shell-process-environment
98;; (list
99;; (format "PATH=%s" (mapconcat
100;; 'identity
101;; (reverse
102;; (cons (getenv "PATH")
103;; '("/path/to/env/bin/")))
104;; ":"))
105;; "VIRTUAL_ENV=/path/to/env/"))
106;; (python-shell-exec-path . ("/path/to/env/bin/"))
107
64348c32
FEG
108;; Since the above is cumbersome and can be programatically
109;; calculated, the variable `python-shell-virtualenv-path' is
110;; provided. When this variable is set with the path of the
111;; virtualenv to use, `process-environment' and `exec-path' get proper
112;; values in order to run shells inside the specified virtualenv. So
113;; the following will achieve the same as the previous example:
114
115;; (setq python-shell-virtualenv-path "/path/to/env/")
116
45c138ac
FEG
117;; Pdb tracking: when you execute a block of code that contains some
118;; call to pdb (or ipdb) it will prompt the block of code and will
119;; follow the execution of pdb marking the current line with an arrow.
120
4e531f7a 121;; Symbol completion: you can complete the symbol at point. It uses
45c138ac
FEG
122;; the shell completion in background so you should run
123;; `python-shell-send-buffer' from time to time to get better results.
124
e2803784
FEG
125;; Skeletons: 6 skeletons are provided for simple inserting of class,
126;; def, for, if, try and while. These skeletons are integrated with
127;; dabbrev. If you have `dabbrev-mode' activated and
128;; `python-skeleton-autoinsert' is set to t, then whenever you type
129;; the name of any of those defined and hit SPC, they will be
130;; automatically expanded.
131
2947016a
FEG
132;; FFAP: You can find the filename for a given module when using ffap
133;; out of the box. This feature needs an inferior python shell
134;; running.
135
2d63ad56
FEG
136;; Code check: Check the current file for errors with `python-check'
137;; using the program defined in `python-check-command'.
8b3e0e76 138
45c138ac 139;; Eldoc: returns documentation for object at point by using the
4e531f7a 140;; inferior python subprocess to inspect its documentation. As you
45c138ac
FEG
141;; might guessed you should run `python-shell-send-buffer' from time
142;; to time to get better results too.
143
4cafacb5
FEG
144;; imenu: This mode supports imenu. It builds a plain or tree menu
145;; depending on the value of `python-imenu-make-tree'. Also you can
fc2dc7df
FEG
146;; customize if menu items should include its type using
147;; `python-imenu-include-defun-type'.
148
57808175
FEG
149;; If you used python-mode.el you probably will miss auto-indentation
150;; when inserting newlines. To achieve the same behavior you have
151;; two options:
152
153;; 1) Use GNU/Emacs' standard binding for `newline-and-indent': C-j.
154
155;; 2) Add the following hook in your .emacs:
156
157;; (add-hook 'python-mode-hook
158;; #'(lambda ()
159;; (define-key python-mode-map "\C-m" 'newline-and-indent)))
160
161;; I'd recommend the first one since you'll get the same behavior for
162;; all modes out-of-the-box.
163
45c138ac
FEG
164;;; Installation:
165
166;; Add this to your .emacs:
167
168;; (add-to-list 'load-path "/folder/containing/file")
169;; (require 'python)
170
171;;; TODO:
172
45c138ac
FEG
173;;; Code:
174
45c138ac 175(require 'ansi-color)
73ed6836 176(require 'comint)
45c138ac
FEG
177
178(eval-when-compile
73ed6836
FEG
179 (require 'cl)
180 ;; Avoid compiler warnings
181 (defvar view-return-to-alist)
182 (defvar compilation-error-regexp-alist)
183 (defvar outline-heading-end-regexp))
45c138ac
FEG
184
185(autoload 'comint-mode "comint")
186
187;;;###autoload
188(add-to-list 'auto-mode-alist (cons (purecopy "\\.py\\'") 'python-mode))
189;;;###autoload
190(add-to-list 'interpreter-mode-alist (cons (purecopy "python") 'python-mode))
191
192(defgroup python nil
193 "Python Language's flying circus support for Emacs."
194 :group 'languages
195 :version "23.2"
196 :link '(emacs-commentary-link "python"))
197
198\f
199;;; Bindings
200
201(defvar python-mode-map
202 (let ((map (make-sparse-keymap)))
9fff1858
FEG
203 ;; Movement
204 (substitute-key-definition 'backward-sentence
205 'python-nav-backward-sentence
206 map global-map)
207 (substitute-key-definition 'forward-sentence
208 'python-nav-forward-sentence
209 map global-map)
45c138ac
FEG
210 ;; Indent specific
211 (define-key map "\177" 'python-indent-dedent-line-backspace)
212 (define-key map (kbd "<backtab>") 'python-indent-dedent-line)
213 (define-key map "\C-c<" 'python-indent-shift-left)
214 (define-key map "\C-c>" 'python-indent-shift-right)
ffdb56c3 215 (define-key map ":" 'python-indent-electric-colon)
e2803784
FEG
216 ;; Skeletons
217 (define-key map "\C-c\C-tc" 'python-skeleton-class)
218 (define-key map "\C-c\C-td" 'python-skeleton-def)
219 (define-key map "\C-c\C-tf" 'python-skeleton-for)
220 (define-key map "\C-c\C-ti" 'python-skeleton-if)
221 (define-key map "\C-c\C-tt" 'python-skeleton-try)
222 (define-key map "\C-c\C-tw" 'python-skeleton-while)
45c138ac
FEG
223 ;; Shell interaction
224 (define-key map "\C-c\C-s" 'python-shell-send-string)
225 (define-key map "\C-c\C-r" 'python-shell-send-region)
226 (define-key map "\C-\M-x" 'python-shell-send-defun)
227 (define-key map "\C-c\C-c" 'python-shell-send-buffer)
228 (define-key map "\C-c\C-l" 'python-shell-send-file)
229 (define-key map "\C-c\C-z" 'python-shell-switch-to-shell)
8b3e0e76
FEG
230 ;; Some util commands
231 (define-key map "\C-c\C-v" 'python-check)
78334b43 232 (define-key map "\C-c\C-f" 'python-eldoc-at-point)
45c138ac
FEG
233 ;; Utilities
234 (substitute-key-definition 'complete-symbol 'completion-at-point
235 map global-map)
236 (easy-menu-define python-menu map "Python Mode menu"
237 `("Python"
238 :help "Python-specific Features"
239 ["Shift region left" python-indent-shift-left :active mark-active
240 :help "Shift region left by a single indentation step"]
241 ["Shift region right" python-indent-shift-right :active mark-active
242 :help "Shift region right by a single indentation step"]
243 "-"
244 ["Mark def/class" mark-defun
245 :help "Mark outermost definition around point"]
246 "-"
247 ["Start of def/class" beginning-of-defun
248 :help "Go to start of outermost definition around point"]
45c138ac
FEG
249 ["End of def/class" end-of-defun
250 :help "Go to end of definition around point"]
251 "-"
e2803784
FEG
252 ("Skeletons")
253 "-"
45c138ac
FEG
254 ["Start interpreter" run-python
255 :help "Run inferior Python process in a separate buffer"]
256 ["Switch to shell" python-shell-switch-to-shell
257 :help "Switch to running inferior Python process"]
258 ["Eval string" python-shell-send-string
259 :help "Eval string in inferior Python session"]
260 ["Eval buffer" python-shell-send-buffer
261 :help "Eval buffer in inferior Python session"]
262 ["Eval region" python-shell-send-region
263 :help "Eval region in inferior Python session"]
264 ["Eval defun" python-shell-send-defun
265 :help "Eval defun in inferior Python session"]
266 ["Eval file" python-shell-send-file
267 :help "Eval file in inferior Python session"]
268 ["Debugger" pdb :help "Run pdb under GUD"]
269 "-"
8b3e0e76
FEG
270 ["Check file" python-check
271 :help "Check file for errors"]
78334b43
FEG
272 ["Help on symbol" python-eldoc-at-point
273 :help "Get help on symbol at point"]
45c138ac
FEG
274 ["Complete symbol" completion-at-point
275 :help "Complete symbol before point"]))
276 map)
277 "Keymap for `python-mode'.")
278
279\f
280;;; Python specialized rx
281
73ed6836
FEG
282(eval-when-compile
283 (defconst python-rx-constituents
284 (list
285 `(block-start . ,(rx symbol-start
286 (or "def" "class" "if" "elif" "else" "try"
287 "except" "finally" "for" "while" "with")
288 symbol-end))
0567effb
FEG
289 `(decorator . ,(rx line-start (* space) ?@ (any letter ?_)
290 (* (any word ?_))))
73ed6836 291 `(defun . ,(rx symbol-start (or "def" "class") symbol-end))
0567effb 292 `(symbol-name . ,(rx (any letter ?_) (* (any word ?_))))
73ed6836
FEG
293 `(open-paren . ,(rx (or "{" "[" "(")))
294 `(close-paren . ,(rx (or "}" "]" ")")))
295 `(simple-operator . ,(rx (any ?+ ?- ?/ ?& ?^ ?~ ?| ?* ?< ?> ?= ?%)))
296 `(not-simple-operator . ,(rx (not (any ?+ ?- ?/ ?& ?^ ?~ ?| ?* ?< ?> ?= ?%))))
297 `(operator . ,(rx (or "+" "-" "/" "&" "^" "~" "|" "*" "<" ">"
298 "=" "%" "**" "//" "<<" ">>" "<=" "!="
299 "==" ">=" "is" "not")))
300 `(assignment-operator . ,(rx (or "=" "+=" "-=" "*=" "/=" "//=" "%=" "**="
e2d8d479
FEG
301 ">>=" "<<=" "&=" "^=" "|="))))
302 "Additional Python specific sexps for `python-rx'"))
45c138ac
FEG
303
304(defmacro python-rx (&rest regexps)
4cafacb5 305 "Python mode specialized rx macro which supports common python named REGEXPS."
45c138ac
FEG
306 (let ((rx-constituents (append python-rx-constituents rx-constituents)))
307 (cond ((null regexps)
308 (error "No regexp"))
309 ((cdr regexps)
310 (rx-to-string `(and ,@regexps) t))
311 (t
312 (rx-to-string (car regexps) t)))))
313
314\f
315;;; Font-lock and syntax
316
317(defvar python-font-lock-keywords
318 ;; Keywords
319 `(,(rx symbol-start
320 (or "and" "del" "from" "not" "while" "as" "elif" "global" "or" "with"
321 "assert" "else" "if" "pass" "yield" "break" "except" "import"
322 "print" "class" "exec" "in" "raise" "continue" "finally" "is"
323 "return" "def" "for" "lambda" "try" "self")
324 symbol-end)
325 ;; functions
326 (,(rx symbol-start "def" (1+ space) (group (1+ (or word ?_))))
327 (1 font-lock-function-name-face))
328 ;; classes
329 (,(rx symbol-start "class" (1+ space) (group (1+ (or word ?_))))
330 (1 font-lock-type-face))
331 ;; Constants
c61d750e
FEG
332 (,(rx symbol-start
333 ;; copyright, license, credits, quit, exit are added by the
334 ;; site module and since they are not intended to be used in
335 ;; programs they are not added here either.
336 (or "None" "True" "False" "Ellipsis" "__debug__" "NotImplemented")
337 symbol-end) . font-lock-constant-face)
45c138ac
FEG
338 ;; Decorators.
339 (,(rx line-start (* (any " \t")) (group "@" (1+ (or word ?_))
340 (0+ "." (1+ (or word ?_)))))
341 (1 font-lock-type-face))
342 ;; Builtin Exceptions
343 (,(rx symbol-start
344 (or "ArithmeticError" "AssertionError" "AttributeError"
345 "BaseException" "BufferError" "BytesWarning" "DeprecationWarning"
346 "EOFError" "EnvironmentError" "Exception" "FloatingPointError"
347 "FutureWarning" "GeneratorExit" "IOError" "ImportError"
348 "ImportWarning" "IndentationError" "IndexError" "KeyError"
349 "KeyboardInterrupt" "LookupError" "MemoryError" "NameError"
c61d750e 350 "NotImplementedError" "OSError" "OverflowError"
45c138ac
FEG
351 "PendingDeprecationWarning" "ReferenceError" "RuntimeError"
352 "RuntimeWarning" "StandardError" "StopIteration" "SyntaxError"
353 "SyntaxWarning" "SystemError" "SystemExit" "TabError" "TypeError"
354 "UnboundLocalError" "UnicodeDecodeError" "UnicodeEncodeError"
355 "UnicodeError" "UnicodeTranslateError" "UnicodeWarning"
356 "UserWarning" "ValueError" "Warning" "ZeroDivisionError")
357 symbol-end) . font-lock-type-face)
358 ;; Builtins
9438f1ef
FEG
359 (,(rx symbol-start
360 (or "_" "__doc__" "__import__" "__name__" "__package__" "abs" "all"
361 "any" "apply" "basestring" "bin" "bool" "buffer" "bytearray"
362 "bytes" "callable" "chr" "classmethod" "cmp" "coerce" "compile"
363 "complex" "delattr" "dict" "dir" "divmod" "enumerate" "eval"
364 "execfile" "file" "filter" "float" "format" "frozenset"
365 "getattr" "globals" "hasattr" "hash" "help" "hex" "id" "input"
366 "int" "intern" "isinstance" "issubclass" "iter" "len" "list"
367 "locals" "long" "map" "max" "min" "next" "object" "oct" "open"
368 "ord" "pow" "print" "property" "range" "raw_input" "reduce"
369 "reload" "repr" "reversed" "round" "set" "setattr" "slice"
370 "sorted" "staticmethod" "str" "sum" "super" "tuple" "type"
371 "unichr" "unicode" "vars" "xrange" "zip")
372 symbol-end) . font-lock-builtin-face)
45c138ac
FEG
373 ;; asignations
374 ;; support for a = b = c = 5
375 (,(lambda (limit)
d8e594db
FEG
376 (let ((re (python-rx (group (+ (any word ?. ?_)))
377 (? ?\[ (+ (not (any ?\]))) ?\]) (* space)
45c138ac
FEG
378 assignment-operator)))
379 (when (re-search-forward re limit t)
14a78495 380 (while (and (python-info-ppss-context 'paren)
45c138ac 381 (re-search-forward re limit t)))
14a78495 382 (if (and (not (python-info-ppss-context 'paren))
534e2438 383 (not (equal (char-after (point-marker)) ?=)))
45c138ac
FEG
384 t
385 (set-match-data nil)))))
386 (1 font-lock-variable-name-face nil nil))
387 ;; support for a, b, c = (1, 2, 3)
388 (,(lambda (limit)
389 (let ((re (python-rx (group (+ (any word ?. ?_))) (* space)
390 (* ?, (* space) (+ (any word ?. ?_)) (* space))
391 ?, (* space) (+ (any word ?. ?_)) (* space)
392 assignment-operator)))
393 (when (and (re-search-forward re limit t)
394 (goto-char (nth 3 (match-data))))
14a78495 395 (while (and (python-info-ppss-context 'paren)
45c138ac
FEG
396 (re-search-forward re limit t))
397 (goto-char (nth 3 (match-data))))
14a78495 398 (if (not (python-info-ppss-context 'paren))
45c138ac
FEG
399 t
400 (set-match-data nil)))))
401 (1 font-lock-variable-name-face nil nil))))
402
45c138ac 403(defconst python-font-lock-syntactic-keywords
ecf24fd7
FEG
404 ;; Make outer chars of matching triple-quote sequences into generic
405 ;; string delimiters. Fixme: Is there a better way?
45c138ac 406 ;; First avoid a sequence preceded by an odd number of backslashes.
ecf24fd7
FEG
407 `((,(concat "\\(?:\\([RUru]\\)[Rr]?\\|^\\|[^\\]\\(?:\\\\.\\)*\\)" ;Prefix.
408 "\\(?:\\('\\)'\\('\\)\\|\\(?2:\"\\)\"\\(?3:\"\\)\\)")
409 (3 (python-quote-syntax)))))
410
411(defun python-quote-syntax ()
45c138ac
FEG
412 "Put `syntax-table' property correctly on triple quote.
413Used for syntactic keywords. N is the match number (1, 2 or 3)."
414 ;; Given a triple quote, we have to check the context to know
415 ;; whether this is an opening or closing triple or whether it's
416 ;; quoted anyhow, and should be ignored. (For that we need to do
417 ;; the same job as `syntax-ppss' to be correct and it seems to be OK
418 ;; to use it here despite initial worries.) We also have to sort
419 ;; out a possible prefix -- well, we don't _have_ to, but I think it
420 ;; should be treated as part of the string.
421
422 ;; Test cases:
423 ;; ur"""ar""" x='"' # """
424 ;; x = ''' """ ' a
425 ;; '''
426 ;; x '"""' x """ \"""" x
427 (save-excursion
428 (goto-char (match-beginning 0))
ecf24fd7
FEG
429 (let ((syntax (save-match-data (syntax-ppss))))
430 (cond
431 ((eq t (nth 3 syntax)) ; after unclosed fence
432 ;; Consider property for the last char if in a fenced string.
433 (goto-char (nth 8 syntax)) ; fence position
434 (skip-chars-forward "uUrR") ; skip any prefix
435 ;; Is it a matching sequence?
436 (if (eq (char-after) (char-after (match-beginning 2)))
437 (put-text-property (match-beginning 3) (match-end 3)
438 'syntax-table (string-to-syntax "|"))))
439 ((match-end 1)
440 ;; Consider property for initial char, accounting for prefixes.
441 (put-text-property (match-beginning 1) (match-end 1)
442 'syntax-table (string-to-syntax "|")))
443 (t
444 ;; Consider property for initial char, accounting for prefixes.
445 (put-text-property (match-beginning 2) (match-end 2)
446 'syntax-table (string-to-syntax "|"))))
447 )))
45c138ac
FEG
448
449(defvar python-mode-syntax-table
450 (let ((table (make-syntax-table)))
451 ;; Give punctuation syntax to ASCII that normally has symbol
452 ;; syntax or has word syntax and isn't a letter.
453 (let ((symbol (string-to-syntax "_"))
454 (sst (standard-syntax-table)))
455 (dotimes (i 128)
456 (unless (= i ?_)
457 (if (equal symbol (aref sst i))
458 (modify-syntax-entry i "." table)))))
459 (modify-syntax-entry ?$ "." table)
460 (modify-syntax-entry ?% "." table)
461 ;; exceptions
462 (modify-syntax-entry ?# "<" table)
463 (modify-syntax-entry ?\n ">" table)
464 (modify-syntax-entry ?' "\"" table)
465 (modify-syntax-entry ?` "$" table)
466 table)
467 "Syntax table for Python files.")
468
469(defvar python-dotty-syntax-table
470 (let ((table (make-syntax-table python-mode-syntax-table)))
471 (modify-syntax-entry ?. "w" table)
472 (modify-syntax-entry ?_ "w" table)
473 table)
474 "Dotty syntax table for Python files.
475It makes underscores and dots word constituent chars.")
476
477\f
478;;; Indentation
479
480(defcustom python-indent-offset 4
481 "Default indentation offset for Python."
482 :group 'python
483 :type 'integer
484 :safe 'integerp)
485
486(defcustom python-indent-guess-indent-offset t
487 "Non-nil tells Python mode to guess `python-indent-offset' value."
488 :type 'boolean
0f55249e
FEG
489 :group 'python
490 :safe 'booleanp)
45c138ac
FEG
491
492(defvar python-indent-current-level 0
493 "Current indentation level `python-indent-line-function' is using.")
494
495(defvar python-indent-levels '(0)
496 "Levels of indentation available for `python-indent-line-function'.")
497
498(defvar python-indent-dedenters '("else" "elif" "except" "finally")
499 "List of words that should be dedented.
500These make `python-indent-calculate-indentation' subtract the value of
501`python-indent-offset'.")
502
503(defun python-indent-guess-indent-offset ()
954aa7bd 504 "Guess and set `python-indent-offset' for the current buffer."
bbac1eb8
FEG
505 (save-excursion
506 (save-restriction
507 (widen)
508 (goto-char (point-min))
509 (let ((found-block))
510 (while (and (not found-block)
511 (re-search-forward
512 (python-rx line-start block-start) nil t))
14a78495
FEG
513 (when (and (not (python-info-ppss-context 'string))
514 (not (python-info-ppss-context 'comment))
bbac1eb8
FEG
515 (progn
516 (goto-char (line-end-position))
589cefd7 517 (forward-comment -9999)
bbac1eb8
FEG
518 (eq ?: (char-before))))
519 (setq found-block t)))
520 (if (not found-block)
521 (message "Can't guess python-indent-offset, using defaults: %s"
522 python-indent-offset)
523 (while (and (progn
524 (goto-char (line-end-position))
525 (python-info-continuation-line-p))
526 (not (eobp)))
527 (forward-line 1))
528 (forward-line 1)
589cefd7 529 (forward-comment 9999)
14d9f80c
FEG
530 (let ((indent-offset (current-indentation)))
531 (when (> indent-offset 0)
532 (setq python-indent-offset indent-offset))))))))
45c138ac 533
e2d8d479
FEG
534(defun python-indent-context ()
535 "Get information on indentation context.
536Context information is returned with a cons with the form:
537 \(STATUS . START)
45c138ac
FEG
538
539Where status can be any of the following symbols:
45c138ac
FEG
540 * inside-paren: If point in between (), {} or []
541 * inside-string: If point is inside a string
542 * after-backslash: Previous line ends in a backslash
543 * after-beginning-of-block: Point is after beginning of block
544 * after-line: Point is after normal line
545 * no-indent: Point is at beginning of buffer or other special case
45c138ac
FEG
546START is the buffer position where the sexp starts."
547 (save-restriction
548 (widen)
549 (let ((ppss (save-excursion (beginning-of-line) (syntax-ppss)))
550 (start))
551 (cons
552 (cond
69bab1de 553 ;; Beginning of buffer
19b122e4
FEG
554 ((save-excursion
555 (goto-char (line-beginning-position))
556 (bobp))
69bab1de 557 'no-indent)
45c138ac 558 ;; Inside a paren
14a78495 559 ((setq start (python-info-ppss-context 'paren ppss))
45c138ac
FEG
560 'inside-paren)
561 ;; Inside string
14a78495 562 ((setq start (python-info-ppss-context 'string ppss))
45c138ac
FEG
563 'inside-string)
564 ;; After backslash
14a78495
FEG
565 ((setq start (when (not (or (python-info-ppss-context 'string ppss)
566 (python-info-ppss-context 'comment ppss)))
45c138ac
FEG
567 (let ((line-beg-pos (line-beginning-position)))
568 (when (eq ?\\ (char-before (1- line-beg-pos)))
569 (- line-beg-pos 2)))))
570 'after-backslash)
571 ;; After beginning of block
572 ((setq start (save-excursion
573 (let ((block-regexp (python-rx block-start))
574 (block-start-line-end ":[[:space:]]*$"))
575 (back-to-indentation)
257b0017 576 (forward-comment -9999)
45c138ac
FEG
577 (back-to-indentation)
578 (when (or (python-info-continuation-line-p)
579 (and (not (looking-at block-regexp))
580 (save-excursion
581 (re-search-forward
582 block-start-line-end
583 (line-end-position) t))))
584 (while (and (forward-line -1)
585 (python-info-continuation-line-p)
586 (not (bobp))))
fad22dec 587 (back-to-indentation)
45c138ac
FEG
588 (when (not (looking-at block-regexp))
589 (forward-line 1)))
590 (back-to-indentation)
591 (when (and (looking-at block-regexp)
592 (or (re-search-forward
593 block-start-line-end
594 (line-end-position) t)
fad22dec
FEG
595 (save-excursion
596 (goto-char (line-end-position))
597 (python-info-continuation-line-p))))
45c138ac
FEG
598 (point-marker)))))
599 'after-beginning-of-block)
600 ;; After normal line
601 ((setq start (save-excursion
257b0017
FEG
602 (back-to-indentation)
603 (forward-comment -9999)
3697b531 604 (python-nav-sentence-start)
45c138ac
FEG
605 (point-marker)))
606 'after-line)
607 ;; Do not indent
608 (t 'no-indent))
609 start))))
610
611(defun python-indent-calculate-indentation ()
612 "Calculate correct indentation offset for the current line."
613 (let* ((indentation-context (python-indent-context))
614 (context-status (car indentation-context))
615 (context-start (cdr indentation-context)))
616 (save-restriction
617 (widen)
618 (save-excursion
619 (case context-status
620 ('no-indent 0)
621 ('after-beginning-of-block
622 (goto-char context-start)
623 (+ (current-indentation) python-indent-offset))
624 ('after-line
625 (-
626 (save-excursion
627 (goto-char context-start)
628 (current-indentation))
629 (if (progn
630 (back-to-indentation)
631 (looking-at (regexp-opt python-indent-dedenters)))
632 python-indent-offset
633 0)))
634 ('inside-string
635 (goto-char context-start)
636 (current-indentation))
637 ('after-backslash
638 (let* ((block-continuation
639 (save-excursion
640 (forward-line -1)
641 (python-info-block-continuation-line-p)))
642 (assignment-continuation
643 (save-excursion
644 (forward-line -1)
645 (python-info-assignment-continuation-line-p)))
9f1537ef
FEG
646 (dot-continuation
647 (save-excursion
648 (back-to-indentation)
649 (when (looking-at "\\.")
650 (forward-line -1)
107c2439
FEG
651 (goto-char (line-end-position))
652 (while (and (re-search-backward "\\." (line-beginning-position) t)
653 (or (python-info-ppss-context 'comment)
654 (python-info-ppss-context 'string)
655 (python-info-ppss-context 'paren))))
656 (if (and (looking-at "\\.")
657 (not (or (python-info-ppss-context 'comment)
658 (python-info-ppss-context 'string)
659 (python-info-ppss-context 'paren))))
660 (current-column)
661 (+ (current-indentation) python-indent-offset)))))
662 (indentation (cond
663 (dot-continuation
664 dot-continuation)
665 (block-continuation
666 (goto-char block-continuation)
667 (re-search-forward
668 (python-rx block-start (* space))
669 (line-end-position) t)
670 (current-column))
671 (assignment-continuation
672 (goto-char assignment-continuation)
673 (re-search-forward
674 (python-rx simple-operator)
675 (line-end-position) t)
676 (forward-char 1)
677 (re-search-forward
678 (python-rx (* space))
679 (line-end-position) t)
680 (current-column))
681 (t
682 (goto-char context-start)
9787f829
FEG
683 (if (not
684 (save-excursion
685 (back-to-indentation)
686 (looking-at
687 "\\(?:return\\|from\\|import\\)\s+")))
107c2439
FEG
688 (current-indentation)
689 (+ (current-indentation)
9787f829
FEG
690 (length
691 (match-string-no-properties 0))))))))
45c138ac
FEG
692 indentation))
693 ('inside-paren
17d13b85 694 (or (save-excursion
f8994527 695 (skip-syntax-forward "\s" (line-end-position))
f9471190
FEG
696 (when (and (looking-at (regexp-opt '(")" "]" "}")))
697 (not (forward-char 1))
698 (not (python-info-ppss-context 'paren)))
17d13b85
FEG
699 (goto-char context-start)
700 (back-to-indentation)
701 (current-column)))
702 (-
703 (save-excursion
704 (goto-char context-start)
705 (forward-char)
706 (save-restriction
707 (narrow-to-region
708 (line-beginning-position)
709 (line-end-position))
589cefd7 710 (forward-comment 9999))
17d13b85
FEG
711 (if (looking-at "$")
712 (+ (current-indentation) python-indent-offset)
589cefd7 713 (forward-comment 9999)
17d13b85
FEG
714 (current-column)))
715 (if (progn
716 (back-to-indentation)
717 (looking-at (regexp-opt '(")" "]" "}"))))
718 python-indent-offset
719 0)))))))))
45c138ac
FEG
720
721(defun python-indent-calculate-levels ()
722 "Calculate `python-indent-levels' and reset `python-indent-current-level'."
723 (let* ((indentation (python-indent-calculate-indentation))
724 (remainder (% indentation python-indent-offset))
725 (steps (/ (- indentation remainder) python-indent-offset)))
65e4f764 726 (setq python-indent-levels (list 0))
45c138ac 727 (dotimes (step steps)
65e4f764 728 (push (* python-indent-offset (1+ step)) python-indent-levels))
45c138ac 729 (when (not (eq 0 remainder))
65e4f764 730 (push (+ (* python-indent-offset steps) remainder) python-indent-levels))
45c138ac
FEG
731 (setq python-indent-levels (nreverse python-indent-levels))
732 (setq python-indent-current-level (1- (length python-indent-levels)))))
733
734(defun python-indent-toggle-levels ()
735 "Toggle `python-indent-current-level' over `python-indent-levels'."
736 (setq python-indent-current-level (1- python-indent-current-level))
737 (when (< python-indent-current-level 0)
738 (setq python-indent-current-level (1- (length python-indent-levels)))))
739
740(defun python-indent-line (&optional force-toggle)
741 "Internal implementation of `python-indent-line-function'.
45c138ac
FEG
742Uses the offset calculated in
743`python-indent-calculate-indentation' and available levels
e2d8d479
FEG
744indicated by the variable `python-indent-levels' to set the
745current indentation.
45c138ac
FEG
746
747When the variable `last-command' is equal to
e2d8d479
FEG
748`indent-for-tab-command' or FORCE-TOGGLE is non-nil it cycles
749levels indicated in the variable `python-indent-levels' by
750setting the current level in the variable
751`python-indent-current-level'.
45c138ac
FEG
752
753When the variable `last-command' is not equal to
e2d8d479
FEG
754`indent-for-tab-command' and FORCE-TOGGLE is nil it calculates
755possible indentation levels and saves it in the variable
756`python-indent-levels'. Afterwards it sets the variable
757`python-indent-current-level' correctly so offset is equal
758to (`nth' `python-indent-current-level' `python-indent-levels')"
45c138ac
FEG
759 (if (or (and (eq this-command 'indent-for-tab-command)
760 (eq last-command this-command))
761 force-toggle)
86f1889a
FEG
762 (if (not (equal python-indent-levels '(0)))
763 (python-indent-toggle-levels)
764 (python-indent-calculate-levels))
45c138ac
FEG
765 (python-indent-calculate-levels))
766 (beginning-of-line)
767 (delete-horizontal-space)
768 (indent-to (nth python-indent-current-level python-indent-levels))
769 (save-restriction
770 (widen)
771 (let ((closing-block-point (python-info-closing-block)))
772 (when closing-block-point
773 (message "Closes %s" (buffer-substring
774 closing-block-point
775 (save-excursion
776 (goto-char closing-block-point)
777 (line-end-position))))))))
778
779(defun python-indent-line-function ()
780 "`indent-line-function' for Python mode.
e2d8d479 781See `python-indent-line' for details."
45c138ac
FEG
782 (python-indent-line))
783
784(defun python-indent-dedent-line ()
e2d8d479 785 "De-indent current line."
45c138ac 786 (interactive "*")
14a78495
FEG
787 (when (and (not (or (python-info-ppss-context 'string)
788 (python-info-ppss-context 'comment)))
45c138ac
FEG
789 (<= (point-marker) (save-excursion
790 (back-to-indentation)
791 (point-marker)))
792 (> (current-column) 0))
793 (python-indent-line t)
794 t))
795
796(defun python-indent-dedent-line-backspace (arg)
e2d8d479 797 "De-indent current line.
45c138ac 798Argument ARG is passed to `backward-delete-char-untabify' when
e2d8d479 799point is not in between the indentation."
45c138ac
FEG
800 (interactive "*p")
801 (when (not (python-indent-dedent-line))
802 (backward-delete-char-untabify arg)))
183f9296 803(put 'python-indent-dedent-line-backspace 'delete-selection 'supersede)
45c138ac
FEG
804
805(defun python-indent-region (start end)
806 "Indent a python region automagically.
807
808Called from a program, START and END specify the region to indent."
cb42456f
FEG
809 (let ((deactivate-mark nil))
810 (save-excursion
811 (goto-char end)
812 (setq end (point-marker))
813 (goto-char start)
814 (or (bolp) (forward-line 1))
815 (while (< (point) end)
816 (or (and (bolp) (eolp))
817 (let (word)
818 (forward-line -1)
819 (back-to-indentation)
820 (setq word (current-word))
821 (forward-line 1)
822 (when word
823 (beginning-of-line)
824 (delete-horizontal-space)
825 (indent-to (python-indent-calculate-indentation)))))
826 (forward-line 1))
827 (move-marker end nil))))
45c138ac
FEG
828
829(defun python-indent-shift-left (start end &optional count)
830 "Shift lines contained in region START END by COUNT columns to the left.
e2d8d479
FEG
831COUNT defaults to `python-indent-offset'. If region isn't
832active, the current line is shifted. The shifted region includes
833the lines in which START and END lie. An error is signaled if
834any lines in the region are indented less than COUNT columns."
45c138ac
FEG
835 (interactive
836 (if mark-active
837 (list (region-beginning) (region-end) current-prefix-arg)
838 (list (line-beginning-position) (line-end-position) current-prefix-arg)))
839 (if count
840 (setq count (prefix-numeric-value count))
841 (setq count python-indent-offset))
842 (when (> count 0)
cb42456f
FEG
843 (let ((deactivate-mark nil))
844 (save-excursion
845 (goto-char start)
846 (while (< (point) end)
847 (if (and (< (current-indentation) count)
848 (not (looking-at "[ \t]*$")))
849 (error "Can't shift all lines enough"))
850 (forward-line))
851 (indent-rigidly start end (- count))))))
45c138ac
FEG
852
853(add-to-list 'debug-ignored-errors "^Can't shift all lines enough")
854
855(defun python-indent-shift-right (start end &optional count)
856 "Shift lines contained in region START END by COUNT columns to the left.
e2d8d479
FEG
857COUNT defaults to `python-indent-offset'. If region isn't
858active, the current line is shifted. The shifted region includes
859the lines in which START and END lie."
45c138ac
FEG
860 (interactive
861 (if mark-active
862 (list (region-beginning) (region-end) current-prefix-arg)
863 (list (line-beginning-position) (line-end-position) current-prefix-arg)))
cb42456f
FEG
864 (let ((deactivate-mark nil))
865 (if count
866 (setq count (prefix-numeric-value count))
867 (setq count python-indent-offset))
868 (indent-rigidly start end count)))
45c138ac 869
ffdb56c3 870(defun python-indent-electric-colon (arg)
e2d8d479
FEG
871 "Insert a colon and maybe de-indent the current line.
872With numeric ARG, just insert that many colons. With
873\\[universal-argument], just insert a single colon."
ffdb56c3
FEG
874 (interactive "*P")
875 (self-insert-command (if (not (integerp arg)) 1 arg))
c43cd8b1
FEG
876 (when (and (not arg)
877 (eolp)
878 (not (equal ?: (char-after (- (point-marker) 2))))
879 (not (or (python-info-ppss-context 'string)
880 (python-info-ppss-context 'comment))))
881 (let ((indentation (current-indentation))
882 (calculated-indentation (python-indent-calculate-indentation)))
883 (when (> indentation calculated-indentation)
884 (save-excursion
885 (indent-line-to calculated-indentation)
886 (when (not (python-info-closing-block))
887 (indent-line-to indentation)))))))
ffdb56c3
FEG
888(put 'python-indent-electric-colon 'delete-selection t)
889
45c138ac
FEG
890\f
891;;; Navigation
892
0567effb 893(defvar python-nav-beginning-of-defun-regexp
af5c1beb
FEG
894 (python-rx line-start (* space) defun (+ space) (group symbol-name))
895 "Regular expresion matching beginning of class or function.
fc2dc7df
FEG
896The name of the defun should be grouped so it can be retrieved
897via `match-string'.")
45c138ac 898
6b432853 899(defun python-nav-beginning-of-defun (&optional nodecorators)
053a6c72 900 "Move point to `beginning-of-defun'.
6b432853
FEG
901When NODECORATORS is non-nil decorators are not included. This
902is the main part of`python-beginning-of-defun-function'
74d7b605 903implementation. Return non-nil if point is moved to the
fc2dc7df 904`beginning-of-defun'."
0567effb
FEG
905 (let ((indent-pos (save-excursion
906 (back-to-indentation)
907 (point-marker)))
74d7b605 908 (found)
0567effb
FEG
909 (include-decorators
910 (lambda ()
6b432853
FEG
911 (when (not nodecorators)
912 (when (save-excursion
913 (forward-line -1)
914 (looking-at (python-rx decorator)))
915 (while (and (not (bobp))
916 (forward-line -1)
917 (looking-at (python-rx decorator))))
918 (when (not (bobp)) (forward-line 1)))))))
0567effb
FEG
919 (if (and (> (point) indent-pos)
920 (save-excursion
921 (goto-char (line-beginning-position))
922 (looking-at python-nav-beginning-of-defun-regexp)))
45c138ac 923 (progn
0567effb 924 (goto-char (line-beginning-position))
74d7b605
FEG
925 (funcall include-decorators)
926 (setq found t))
0567effb 927 (goto-char (line-beginning-position))
74d7b605
FEG
928 (when (re-search-backward python-nav-beginning-of-defun-regexp nil t)
929 (setq found t))
0567effb 930 (goto-char (or (python-info-ppss-context 'string) (point)))
74d7b605
FEG
931 (funcall include-decorators))
932 found))
0567effb 933
6b432853 934(defun python-beginning-of-defun-function (&optional arg nodecorators)
0567effb
FEG
935 "Move point to the beginning of def or class.
936With positive ARG move that number of functions forward. With
6b432853 937negative do the same but backwards. When NODECORATORS is non-nil
74d7b605 938decorators are not included. Return non-nil if point is moved to the
fc2dc7df 939`beginning-of-defun'."
0567effb
FEG
940 (when (or (null arg) (= arg 0)) (setq arg 1))
941 (if (> arg 0)
74d7b605
FEG
942 (dotimes (i arg (python-nav-beginning-of-defun nodecorators)))
943 (let ((found))
944 (dotimes (i (- arg) found)
945 (python-end-of-defun-function)
589cefd7 946 (forward-comment 9999)
74d7b605
FEG
947 (goto-char (line-end-position))
948 (when (not (eobp))
949 (setq found
950 (python-nav-beginning-of-defun nodecorators)))))))
45c138ac
FEG
951
952(defun python-end-of-defun-function ()
953 "Move point to the end of def or class.
954Returns nil if point is not in a def or class."
0567effb
FEG
955 (interactive)
956 (let ((beg-defun-indent)
957 (decorator-regexp "[[:space:]]*@"))
958 (when (looking-at decorator-regexp)
959 (while (and (not (eobp))
960 (forward-line 1)
961 (looking-at decorator-regexp))))
962 (when (not (looking-at python-nav-beginning-of-defun-regexp))
963 (python-beginning-of-defun-function))
964 (setq beg-defun-indent (current-indentation))
965 (forward-line 1)
966 (while (and (forward-line 1)
967 (not (eobp))
968 (or (not (current-word))
969 (> (current-indentation) beg-defun-indent))))
589cefd7 970 (forward-comment 9999)
0567effb 971 (goto-char (line-beginning-position))))
45c138ac 972
3697b531
FEG
973(defun python-nav-sentence-start ()
974 "Move to start of current sentence."
975 (interactive "^")
976 (while (and (not (back-to-indentation))
977 (not (bobp))
978 (when (or
979 (save-excursion
980 (forward-line -1)
981 (python-info-line-ends-backslash-p))
9fff1858 982 (python-info-ppss-context 'string)
3697b531
FEG
983 (python-info-ppss-context 'paren))
984 (forward-line -1)))))
985
986(defun python-nav-sentence-end ()
987 "Move to end of current sentence."
988 (interactive "^")
989 (while (and (goto-char (line-end-position))
990 (not (eobp))
991 (when (or
992 (python-info-line-ends-backslash-p)
9fff1858 993 (python-info-ppss-context 'string)
3697b531
FEG
994 (python-info-ppss-context 'paren))
995 (forward-line 1)))))
996
9fff1858 997(defun python-nav-backward-sentence (&optional arg)
4cafacb5 998 "Move backward to start of sentence. With ARG, do it arg times.
9fff1858
FEG
999See `python-nav-forward-sentence' for more information."
1000 (interactive "^p")
1001 (or arg (setq arg 1))
1002 (python-nav-forward-sentence (- arg)))
1003
1004(defun python-nav-forward-sentence (&optional arg)
4cafacb5 1005 "Move forward to next end of sentence. With ARG, repeat.
9fff1858
FEG
1006With negative argument, move backward repeatedly to start of sentence."
1007 (interactive "^p")
1008 (or arg (setq arg 1))
1009 (while (> arg 0)
1010 (forward-comment 9999)
1011 (python-nav-sentence-end)
1012 (forward-line 1)
1013 (setq arg (1- arg)))
1014 (while (< arg 0)
1015 (python-nav-sentence-end)
1016 (forward-comment -9999)
1017 (python-nav-sentence-start)
1018 (forward-line -1)
1019 (setq arg (1+ arg))))
1020
45c138ac
FEG
1021\f
1022;;; Shell integration
1023
0f55249e
FEG
1024(defcustom python-shell-buffer-name "Python"
1025 "Default buffer name for Python interpreter."
1026 :type 'string
1027 :group 'python
1028 :safe 'stringp)
45c138ac
FEG
1029
1030(defcustom python-shell-interpreter "python"
1031 "Default Python interpreter for shell."
45c138ac 1032 :type 'string
c0428ba0 1033 :group 'python
45c138ac
FEG
1034 :safe 'stringp)
1035
0f55249e
FEG
1036(defcustom python-shell-internal-buffer-name "Python Internal"
1037 "Default buffer name for the Internal Python interpreter."
1038 :type 'string
1039 :group 'python
1040 :safe 'stringp)
1fe1b5aa 1041
45c138ac
FEG
1042(defcustom python-shell-interpreter-args "-i"
1043 "Default arguments for the Python interpreter."
45c138ac 1044 :type 'string
c0428ba0 1045 :group 'python
45c138ac
FEG
1046 :safe 'stringp)
1047
1048(defcustom python-shell-prompt-regexp ">>> "
e2d8d479
FEG
1049 "Regular Expression matching top\-level input prompt of python shell.
1050It should not contain a caret (^) at the beginning."
45c138ac
FEG
1051 :type 'string
1052 :group 'python
1053 :safe 'stringp)
1054
1055(defcustom python-shell-prompt-block-regexp "[.][.][.] "
e2d8d479
FEG
1056 "Regular Expression matching block input prompt of python shell.
1057It should not contain a caret (^) at the beginning."
45c138ac
FEG
1058 :type 'string
1059 :group 'python
1060 :safe 'stringp)
1061
0f55249e 1062(defcustom python-shell-prompt-output-regexp ""
e2d8d479
FEG
1063 "Regular Expression matching output prompt of python shell.
1064It should not contain a caret (^) at the beginning."
62feb915
FEG
1065 :type 'string
1066 :group 'python
1067 :safe 'stringp)
1068
45c138ac 1069(defcustom python-shell-prompt-pdb-regexp "[(<]*[Ii]?[Pp]db[>)]+ "
e2d8d479
FEG
1070 "Regular Expression matching pdb input prompt of python shell.
1071It should not contain a caret (^) at the beginning."
45c138ac
FEG
1072 :type 'string
1073 :group 'python
1074 :safe 'stringp)
1075
30e429dd
FEG
1076(defcustom python-shell-send-setup-max-wait 5
1077 "Seconds to wait for process output before code setup.
1078If output is received before the especified time then control is
1079returned in that moment and not after waiting."
0f55249e 1080 :type 'integer
30e429dd 1081 :group 'python
0f55249e 1082 :safe 'integerp)
30e429dd 1083
66bbb27f 1084(defcustom python-shell-process-environment nil
307bd2e8
FEG
1085 "List of environment variables for Python shell.
1086This variable follows the same rules as `process-environment'
66bbb27f
FEG
1087since it merges with it before the process creation routines are
1088called. When this variable is nil, the Python shell is run with
307bd2e8 1089the default `process-environment'."
66bbb27f
FEG
1090 :type '(repeat string)
1091 :group 'python
1092 :safe 'listp)
1093
1094(defcustom python-shell-exec-path nil
1095 "List of path to search for binaries.
1096This variable follows the same rules as `exec-path' since it
1097merges with it before the process creation routines are called.
1098When this variable is nil, the Python shell is run with the
1099default `exec-path'."
1100 :type '(repeat string)
1101 :group 'python
1102 :safe 'listp)
1103
64348c32
FEG
1104(defcustom python-shell-virtualenv-path nil
1105 "Path to virtualenv root.
1106This variable, when set to a string, makes the values stored in
1107`python-shell-process-environment' and `python-shell-exec-path'
1108to be modified properly so shells are started with the specified
1109virtualenv."
1110 :type 'string
1111 :group 'python
1112 :safe 'stringp)
1113
c0428ba0
FEG
1114(defcustom python-shell-setup-codes '(python-shell-completion-setup-code
1115 python-ffap-setup-code
1116 python-eldoc-setup-code)
1117 "List of code run by `python-shell-send-setup-codes'.
e2d8d479 1118Each variable can contain either a simple string with the code to
c0428ba0
FEG
1119execute or a cons with the form (CODE . DESCRIPTION), where CODE
1120is a string with the code to execute and DESCRIPTION is the
1121description of it."
1122 :type '(repeat symbol)
1123 :group 'python
1124 :safe 'listp)
1125
45c138ac
FEG
1126(defcustom python-shell-compilation-regexp-alist
1127 `((,(rx line-start (1+ (any " \t")) "File \""
1128 (group (1+ (not (any "\"<")))) ; avoid `<stdin>' &c
1129 "\", line " (group (1+ digit)))
1130 1 2)
1131 (,(rx " in file " (group (1+ not-newline)) " on line "
1132 (group (1+ digit)))
1133 1 2)
1134 (,(rx line-start "> " (group (1+ (not (any "(\"<"))))
1135 "(" (group (1+ digit)) ")" (1+ (not (any "("))) "()")
1136 1 2))
1137 "`compilation-error-regexp-alist' for inferior Python."
1138 :type '(alist string)
1139 :group 'python)
1140
1141(defun python-shell-get-process-name (dedicated)
1142 "Calculate the appropiate process name for inferior Python process.
45c138ac
FEG
1143If DEDICATED is t and the variable `buffer-file-name' is non-nil
1144returns a string with the form
1145`python-shell-buffer-name'[variable `buffer-file-name'] else
e2d8d479
FEG
1146returns the value of `python-shell-buffer-name'. After
1147calculating the process name adds the buffer name for the process
1148in the `same-window-buffer-names' list."
45c138ac
FEG
1149 (let ((process-name
1150 (if (and dedicated
1151 buffer-file-name)
1152 (format "%s[%s]" python-shell-buffer-name buffer-file-name)
1153 (format "%s" python-shell-buffer-name))))
1154 (add-to-list 'same-window-buffer-names (purecopy
1155 (format "*%s*" process-name)))
1156 process-name))
1157
1fe1b5aa
FEG
1158(defun python-shell-internal-get-process-name ()
1159 "Calculate the appropiate process name for Internal Python process.
1160The name is calculated from `python-shell-global-buffer-name' and
1161a hash of all relevant global shell settings in order to ensure
1162uniqueness for different types of configurations."
1163 (format "%s [%s]"
1164 python-shell-internal-buffer-name
1165 (md5
1166 (concat
1167 (python-shell-parse-command)
1168 (mapconcat #'symbol-value python-shell-setup-codes "")
1169 (mapconcat #'indentity python-shell-process-environment "")
64348c32 1170 (or python-shell-virtualenv-path "")
1fe1b5aa
FEG
1171 (mapconcat #'indentity python-shell-exec-path "")))))
1172
45c138ac 1173(defun python-shell-parse-command ()
e2d8d479 1174 "Calculate the string used to execute the inferior Python process."
45c138ac
FEG
1175 (format "%s %s" python-shell-interpreter python-shell-interpreter-args))
1176
307bd2e8
FEG
1177(defun python-shell-calculate-process-environment ()
1178 "Calculate process environment given `python-shell-virtualenv-path'."
64348c32
FEG
1179 (let ((env (python-util-merge 'list python-shell-process-environment
1180 process-environment 'string=))
1181 (virtualenv (if python-shell-virtualenv-path
1182 (directory-file-name python-shell-virtualenv-path)
1183 nil)))
1184 (if (not virtualenv)
1185 env
1186 (dolist (envvar env)
1187 (let* ((split (split-string envvar "=" t))
1188 (name (nth 0 split))
1189 (value (nth 1 split)))
1190 (when (not (string= name "PYTHONHOME"))
1191 (when (string= name "PATH")
1192 (setq value (format "%s/bin:%s" virtualenv value)))
1193 (setq env (cons (format "%s=%s" name value) env)))))
1194 (cons (format "VIRTUAL_ENV=%s" virtualenv) env))))
1195
1196(defun python-shell-calculate-exec-path ()
1197 "Calculate exec path given `python-shell-virtualenv-path'."
1198 (let ((path (python-util-merge 'list python-shell-exec-path
1199 exec-path 'string=)))
1200 (if (not python-shell-virtualenv-path)
1201 path
1202 (cons (format "%s/bin"
1203 (directory-file-name python-shell-virtualenv-path))
1204 path))))
1205
45c138ac
FEG
1206(defun python-comint-output-filter-function (output)
1207 "Hook run after content is put into comint buffer.
1208OUTPUT is a string with the contents of the buffer."
1209 (ansi-color-filter-apply output))
1210
1211(defvar inferior-python-mode-current-file nil
1212 "Current file from which a region was sent.")
1213(make-variable-buffer-local 'inferior-python-mode-current-file)
1214
45c138ac 1215(define-derived-mode inferior-python-mode comint-mode "Inferior Python"
62feb915 1216 "Major mode for Python inferior process.
e2d8d479
FEG
1217Runs a Python interpreter as a subprocess of Emacs, with Python
1218I/O through an Emacs buffer. Variables
1219`python-shell-interpreter' and `python-shell-interpreter-args'
1220controls which Python interpreter is run. Variables
1221`python-shell-prompt-regexp',
1222`python-shell-prompt-output-regexp',
1223`python-shell-prompt-block-regexp',
1224`python-shell-completion-setup-code',
1225`python-shell-completion-string-code', `python-eldoc-setup-code',
1226`python-eldoc-string-code', `python-ffap-setup-code' and
1227`python-ffap-string-code' can customize this mode for different
1228Python interpreters.
1229
1230You can also add additional setup code to be run at
1231initialization of the interpreter via `python-shell-setup-codes'
1232variable.
1233
1234\(Type \\[describe-mode] in the process buffer for a list of commands.)"
45c138ac
FEG
1235 (set-syntax-table python-mode-syntax-table)
1236 (setq mode-line-process '(":%s"))
1237 (setq comint-prompt-regexp (format "^\\(?:%s\\|%s\\|%s\\)"
1238 python-shell-prompt-regexp
1239 python-shell-prompt-block-regexp
1240 python-shell-prompt-pdb-regexp))
1241 (make-local-variable 'comint-output-filter-functions)
1242 (add-hook 'comint-output-filter-functions
1243 'python-comint-output-filter-function)
1244 (add-hook 'comint-output-filter-functions
1245 'python-pdbtrack-comint-output-filter-function)
1246 (set (make-local-variable 'compilation-error-regexp-alist)
1247 python-shell-compilation-regexp-alist)
ed0eb594
FEG
1248 (define-key inferior-python-mode-map [remap complete-symbol]
1249 'completion-at-point)
1250 (add-hook 'completion-at-point-functions
1251 'python-shell-completion-complete-at-point nil 'local)
62feb915
FEG
1252 (add-to-list (make-local-variable 'comint-dynamic-complete-functions)
1253 'python-shell-completion-complete-at-point)
1254 (define-key inferior-python-mode-map (kbd "<tab>")
1255 'python-shell-completion-complete-or-indent)
45c138ac
FEG
1256 (compilation-shell-minor-mode 1))
1257
96eeb83a 1258(defun python-shell-make-comint (cmd proc-name &optional pop)
77afb61a 1259 "Create a python shell comint buffer.
96eeb83a 1260CMD is the python command to be executed and PROC-NAME is the
77afb61a 1261process name the comint buffer will get. After the comint buffer
96eeb83a
FEG
1262is created the `inferior-python-mode' is activated. If POP is
1263non-nil the buffer is shown."
77afb61a
FEG
1264 (save-excursion
1265 (let* ((proc-buffer-name (format "*%s*" proc-name))
307bd2e8 1266 (process-environment (python-shell-calculate-process-environment))
77afb61a
FEG
1267 (exec-path (python-shell-calculate-exec-path)))
1268 (when (not (comint-check-proc proc-buffer-name))
96eeb83a
FEG
1269 (let* ((cmdlist (split-string-and-unquote cmd))
1270 (buffer (apply 'make-comint proc-name (car cmdlist) nil
1271 (cdr cmdlist)))
d2190c57 1272 (current-buffer (current-buffer)))
96eeb83a
FEG
1273 (with-current-buffer buffer
1274 (inferior-python-mode)
fbc39529 1275 (python-util-clone-local-variables current-buffer))))
96eeb83a
FEG
1276 (when pop
1277 (pop-to-buffer proc-buffer-name)))))
77afb61a 1278
45c138ac
FEG
1279(defun run-python (dedicated cmd)
1280 "Run an inferior Python process.
e2d8d479
FEG
1281Input and output via buffer named after
1282`python-shell-buffer-name'. If there is a process already
1283running in that buffer, just switch to it.
1284With argument, allows you to define DEDICATED, so a dedicated
1285process for the current buffer is open, and define CMD so you can
1286edit the command used to call the interpreter (default is value
1287of `python-shell-interpreter' and arguments defined in
1288`python-shell-interpreter-args'). Runs the hook
1289`inferior-python-mode-hook' (after the `comint-mode-hook' is
1290run).
1291\(Type \\[describe-mode] in the process buffer for a list of commands.)"
45c138ac
FEG
1292 (interactive
1293 (if current-prefix-arg
1294 (list
1295 (y-or-n-p "Make dedicated process? ")
1296 (read-string "Run Python: " (python-shell-parse-command)))
1297 (list nil (python-shell-parse-command))))
96eeb83a 1298 (python-shell-make-comint cmd (python-shell-get-process-name dedicated) t)
45c138ac
FEG
1299 dedicated)
1300
1fe1b5aa
FEG
1301(defun run-python-internal ()
1302 "Run an inferior Internal Python process.
1303Input and output via buffer named after
1304`python-shell-internal-buffer-name' and what
1305`python-shell-internal-get-process-name' returns. This new kind
1306of shell is intended to be used for generic communication related
1307to defined configurations. The main difference with global or
1308dedicated shells is that these ones are attached to a
1309configuration, not a buffer. This means that can be used for
1310example to retrieve the sys.path and other stuff, without messing
1311with user shells. Runs the hook
1312`inferior-python-mode-hook' (after the `comint-mode-hook' is
1313run). \(Type \\[describe-mode] in the process buffer for a list
1314of commands.)"
1315 (interactive)
77afb61a
FEG
1316 (python-shell-make-comint
1317 (python-shell-parse-command)
1318 (python-shell-internal-get-process-name)))
1fe1b5aa 1319
45c138ac
FEG
1320(defun python-shell-get-process ()
1321 "Get inferior Python process for current buffer and return it."
1322 (let* ((dedicated-proc-name (python-shell-get-process-name t))
1323 (dedicated-proc-buffer-name (format "*%s*" dedicated-proc-name))
1324 (global-proc-name (python-shell-get-process-name nil))
1325 (global-proc-buffer-name (format "*%s*" global-proc-name))
1326 (dedicated-running (comint-check-proc dedicated-proc-buffer-name))
1327 (global-running (comint-check-proc global-proc-buffer-name)))
1328 ;; Always prefer dedicated
1329 (get-buffer-process (or (and dedicated-running dedicated-proc-buffer-name)
1330 (and global-running global-proc-buffer-name)))))
1331
1332(defun python-shell-get-or-create-process ()
1333 "Get or create an inferior Python process for current buffer and return it."
79dafa51
FEG
1334 (let* ((old-buffer (current-buffer))
1335 (dedicated-proc-name (python-shell-get-process-name t))
45c138ac
FEG
1336 (dedicated-proc-buffer-name (format "*%s*" dedicated-proc-name))
1337 (global-proc-name (python-shell-get-process-name nil))
1338 (global-proc-buffer-name (format "*%s*" global-proc-name))
1339 (dedicated-running (comint-check-proc dedicated-proc-buffer-name))
1340 (global-running (comint-check-proc global-proc-buffer-name))
1341 (current-prefix-arg 4))
1342 (when (and (not dedicated-running) (not global-running))
1343 (if (call-interactively 'run-python)
1344 (setq dedicated-running t)
1345 (setq global-running t)))
1346 ;; Always prefer dedicated
79dafa51 1347 (switch-to-buffer old-buffer)
45c138ac
FEG
1348 (get-buffer-process (if dedicated-running
1349 dedicated-proc-buffer-name
1350 global-proc-buffer-name))))
1351
1fe1b5aa
FEG
1352(defun python-shell-internal-get-or-create-process ()
1353 "Get or create an inferior Internal Python process."
1354 (let* ((proc-name (python-shell-internal-get-process-name))
1355 (proc-buffer-name (format "*%s*" proc-name)))
1356 (run-python-internal)
1357 (get-buffer-process proc-buffer-name)))
1358
9ce938be
FEG
1359(defun python-shell-send-string (string &optional process msg)
1360 "Send STRING to inferior Python PROCESS.
1361When MSG is non-nil messages the first line of STRING."
45c138ac 1362 (interactive "sPython command: ")
9ce938be
FEG
1363 (let ((process (or process (python-shell-get-or-create-process)))
1364 (lines (split-string string "\n" t)))
1365 (when msg
1366 (message (format "Sent: %s..." (nth 0 lines))))
1367 (if (> (length lines) 1)
1368 (let* ((temp-file-name (make-temp-file "py"))
1369 (file-name (or (buffer-file-name) temp-file-name)))
1370 (with-temp-file temp-file-name
1371 (insert string)
1372 (delete-trailing-whitespace))
1373 (python-shell-send-file file-name process temp-file-name))
1374 (comint-send-string process string)
1375 (when (or (not (string-match "\n$" string))
1376 (string-match "\n[ \t].*\n?$" string))
1377 (comint-send-string process "\n")))))
1378
1379(defun python-shell-send-string-no-output (string &optional process msg)
1380 "Send STRING to PROCESS and inhibit output.
e2d8d479
FEG
1381When MSG is non-nil messages the first line of STRING. Return
1382the output."
9ce938be
FEG
1383 (let* ((output-buffer)
1384 (process (or process (python-shell-get-or-create-process)))
1385 (comint-preoutput-filter-functions
1386 (append comint-preoutput-filter-functions
1387 '(ansi-color-filter-apply
1388 (lambda (string)
1389 (setq output-buffer (concat output-buffer string))
1390 "")))))
1391 (python-shell-send-string string process msg)
1392 (accept-process-output process)
62feb915
FEG
1393 ;; Cleanup output prompt regexp
1394 (when (and (not (string= "" output-buffer))
1395 (> (length python-shell-prompt-output-regexp) 0))
1396 (setq output-buffer
1397 (with-temp-buffer
2db30ac5 1398 (insert output-buffer)
62feb915 1399 (goto-char (point-min))
589cefd7 1400 (forward-comment 9999)
62feb915
FEG
1401 (buffer-substring-no-properties
1402 (or
1403 (and (looking-at python-shell-prompt-output-regexp)
1404 (re-search-forward
1405 python-shell-prompt-output-regexp nil t 1))
1406 (point-marker))
1407 (point-max)))))
9ce938be
FEG
1408 (mapconcat
1409 (lambda (string) string)
1410 (butlast (split-string output-buffer "\n")) "\n")))
45c138ac 1411
1fe1b5aa
FEG
1412(defun python-shell-internal-send-string (string)
1413 "Send STRING to the Internal Python interpreter.
1414Returns the output. See `python-shell-send-string-no-output'."
1415 (python-shell-send-string-no-output
1416 ;; Makes this function compatible with the old
1417 ;; python-send-receive. (At least for CEDET).
1418 (replace-regexp-in-string "_emacs_out +" "" string)
1419 (python-shell-internal-get-or-create-process) nil))
1420
1421(define-obsolete-function-alias
1422 'python-send-receive 'python-shell-internal-send-string "23.3"
1423 "Send STRING to inferior Python (if any) and return result.
1424The result is what follows `_emacs_out' in the output.
1425This is a no-op if `python-check-comint-prompt' returns nil.")
1426
45c138ac
FEG
1427(defun python-shell-send-region (start end)
1428 "Send the region delimited by START and END to inferior Python process."
1429 (interactive "r")
9ce938be
FEG
1430 (let ((deactivate-mark nil))
1431 (python-shell-send-string (buffer-substring start end) nil t)))
45c138ac
FEG
1432
1433(defun python-shell-send-buffer ()
1434 "Send the entire buffer to inferior Python process."
1435 (interactive)
1436 (save-restriction
1437 (widen)
1438 (python-shell-send-region (point-min) (point-max))))
1439
1440(defun python-shell-send-defun (arg)
2ed294c5 1441 "Send the current defun to inferior Python process.
45c138ac
FEG
1442When argument ARG is non-nil sends the innermost defun."
1443 (interactive "P")
1444 (save-excursion
2ed294c5
FEG
1445 (python-shell-send-region
1446 (progn
1447 (or (python-beginning-of-defun-function)
1448 (progn (beginning-of-line) (point-marker))))
1449 (progn
1450 (or (python-end-of-defun-function)
1451 (progn (end-of-line) (point-marker)))))))
45c138ac 1452
d439cda5
FEG
1453(defun python-shell-send-file (file-name &optional process temp-file-name)
1454 "Send FILE-NAME to inferior Python PROCESS.
1455If TEMP-FILE-NAME is passed then that file is used for processing
1456instead, while internally the shell will continue to use
1457FILE-NAME."
45c138ac 1458 (interactive "fFile to send: ")
9ce938be
FEG
1459 (let* ((process (or process (python-shell-get-or-create-process)))
1460 (temp-file-name (when temp-file-name
1461 (expand-file-name temp-file-name)))
1462 (file-name (or (expand-file-name file-name) temp-file-name)))
1463 (when (not file-name)
1464 (error "If FILE-NAME is nil then TEMP-FILE-NAME must be non-nil"))
d439cda5 1465 (with-current-buffer (process-buffer process)
24b68537
FEG
1466 (setq inferior-python-mode-current-file
1467 (convert-standard-filename file-name)))
13d914ed 1468 (python-shell-send-string
b962ebad 1469 (format
d439cda5
FEG
1470 (concat "__pyfile = open('''%s''');"
1471 "exec(compile(__pyfile.read(), '''%s''', 'exec'));"
1472 "__pyfile.close()")
1473 (or temp-file-name file-name) file-name)
13d914ed 1474 process)))
45c138ac
FEG
1475
1476(defun python-shell-switch-to-shell ()
1477 "Switch to inferior Python process buffer."
1478 (interactive)
1479 (pop-to-buffer (process-buffer (python-shell-get-or-create-process)) t))
1480
c0428ba0
FEG
1481(defun python-shell-send-setup-code ()
1482 "Send all setup code for shell.
1483This function takes the list of setup code to send from the
1484`python-shell-setup-codes' list."
1485 (let ((msg "Sent %s")
1486 (process (get-buffer-process (current-buffer))))
30e429dd 1487 (accept-process-output process python-shell-send-setup-max-wait)
c0428ba0
FEG
1488 (dolist (code python-shell-setup-codes)
1489 (when code
1490 (when (consp code)
1491 (setq msg (cdr code)))
1492 (message (format msg code))
1493 (python-shell-send-string-no-output
1494 (symbol-value code) process)))))
1495
1496(add-hook 'inferior-python-mode-hook
1497 #'python-shell-send-setup-code)
1498
45c138ac
FEG
1499\f
1500;;; Shell completion
1501
0f55249e 1502(defcustom python-shell-completion-setup-code
45c138ac
FEG
1503 "try:
1504 import readline
1505except ImportError:
1506 def __COMPLETER_all_completions(text): []
1507else:
1508 import rlcompleter
1509 readline.set_completer(rlcompleter.Completer().complete)
1510 def __COMPLETER_all_completions(text):
1511 import sys
1512 completions = []
1513 try:
1514 i = 0
1515 while True:
1516 res = readline.get_completer()(text, i)
1517 if not res: break
1518 i += 1
1519 completions.append(res)
1520 except NameError:
1521 pass
1522 return completions"
0f55249e
FEG
1523 "Code used to setup completion in inferior Python processes."
1524 :type 'string
1525 :group 'python
1526 :safe 'stringp)
45c138ac 1527
0f55249e 1528(defcustom python-shell-completion-string-code
45c138ac 1529 "';'.join(__COMPLETER_all_completions('''%s'''))\n"
0f55249e
FEG
1530 "Python code used to get a string of completions separated by semicolons."
1531 :type 'string
1532 :group 'python
1533 :safe 'stringp)
45c138ac 1534
075a0f61
FEG
1535(defun python-shell-completion--get-completions (input process)
1536 "Retrieve available completions for INPUT using PROCESS."
1537 (with-current-buffer (process-buffer process)
62feb915
FEG
1538 (let ((completions (python-shell-send-string-no-output
1539 (format python-shell-completion-string-code input)
1540 process)))
1541 (when (> (length completions) 2)
1542 (split-string completions "^'\\|^\"\\|;\\|'$\\|\"$" t)))))
075a0f61
FEG
1543
1544(defun python-shell-completion--get-completion (input completions)
1545 "Get completion for INPUT using COMPLETIONS."
1546 (let ((completion (when completions
1547 (try-completion input completions))))
1548 (cond ((eq completion t)
1549 input)
1550 ((null completion)
1551 (message "Can't find completion for \"%s\"" input)
1552 (ding)
1553 input)
1554 ((not (string= input completion))
1555 completion)
1556 (t
1557 (message "Making completion list...")
1558 (with-output-to-temp-buffer "*Python Completions*"
1559 (display-completion-list
1560 (all-completions input completions)))
1561 input))))
1562
45c138ac
FEG
1563(defun python-shell-completion-complete-at-point ()
1564 "Perform completion at point in inferior Python process."
1565 (interactive)
3d6913c7
FEG
1566 (with-syntax-table python-dotty-syntax-table
1567 (when (and comint-last-prompt-overlay
1568 (> (point-marker) (overlay-end comint-last-prompt-overlay)))
1569 (let* ((process (get-buffer-process (current-buffer)))
075a0f61
FEG
1570 (input (substring-no-properties
1571 (or (comint-word (current-word)) "") nil nil)))
1572 (delete-char (- (length input)))
1573 (insert
1574 (python-shell-completion--get-completion
1575 input (python-shell-completion--get-completions input process)))))))
45c138ac 1576
45c138ac
FEG
1577(defun python-shell-completion-complete-or-indent ()
1578 "Complete or indent depending on the context.
e2d8d479
FEG
1579If content before pointer is all whitespace indent. If not try
1580to complete."
45c138ac
FEG
1581 (interactive)
1582 (if (string-match "^[[:space:]]*$"
1583 (buffer-substring (comint-line-beginning-position)
1584 (point-marker)))
1585 (indent-for-tab-command)
1586 (comint-dynamic-complete)))
1587
45c138ac
FEG
1588\f
1589;;; PDB Track integration
1590
0f55249e 1591(defcustom python-pdbtrack-stacktrace-info-regexp
45c138ac 1592 "> %s(\\([0-9]+\\))\\([?a-zA-Z0-9_<>]+\\)()"
e2d8d479 1593 "Regular Expression matching stacktrace information.
0f55249e 1594Used to extract the current line and module being inspected. The
e2d8d479
FEG
1595regexp should not start with a caret (^) and can contain a string
1596placeholder (\%s) which is replaced with the filename beign
1597inspected (so other files in the debugging process are not
0f55249e
FEG
1598opened)"
1599 :type 'string
1600 :group 'python
1601 :safe 'stringp)
45c138ac
FEG
1602
1603(defvar python-pdbtrack-tracking-buffers '()
1604 "Alist containing elements of form (#<buffer> . #<buffer>).
1605The car of each element of the alist is the tracking buffer and
1606the cdr is the tracked buffer.")
1607
1608(defun python-pdbtrack-get-or-add-tracking-buffers ()
1609 "Get/Add a tracked buffer for the current buffer.
1610Internally it uses the `python-pdbtrack-tracking-buffers' alist.
1611Returns a cons with the form:
1612 * (#<tracking buffer> . #< tracked buffer>)."
1613 (or
1614 (assq (current-buffer) python-pdbtrack-tracking-buffers)
1615 (let* ((file (with-current-buffer (current-buffer)
d439cda5 1616 inferior-python-mode-current-file))
45c138ac
FEG
1617 (tracking-buffers
1618 `(,(current-buffer) .
1619 ,(or (get-file-buffer file)
1620 (find-file-noselect file)))))
1621 (set-buffer (cdr tracking-buffers))
1622 (python-mode)
1623 (set-buffer (car tracking-buffers))
1624 (setq python-pdbtrack-tracking-buffers
1625 (cons tracking-buffers python-pdbtrack-tracking-buffers))
1626 tracking-buffers)))
1627
1628(defun python-pdbtrack-comint-output-filter-function (output)
1629 "Move overlay arrow to current pdb line in tracked buffer.
1630Argument OUTPUT is a string with the output from the comint process."
1631 (when (not (string= output ""))
1632 (let ((full-output (ansi-color-filter-apply
1633 (buffer-substring comint-last-input-end
1634 (point-max)))))
1635 (if (string-match python-shell-prompt-pdb-regexp full-output)
1636 (let* ((tracking-buffers (python-pdbtrack-get-or-add-tracking-buffers))
1637 (line-num
1638 (save-excursion
1639 (string-match
1640 (format python-pdbtrack-stacktrace-info-regexp
1641 (regexp-quote
d439cda5 1642 inferior-python-mode-current-file))
45c138ac
FEG
1643 full-output)
1644 (string-to-number (or (match-string-no-properties 1 full-output) ""))))
1645 (tracked-buffer-window (get-buffer-window (cdr tracking-buffers)))
1646 (tracked-buffer-line-pos))
1647 (when line-num
1648 (with-current-buffer (cdr tracking-buffers)
1649 (set (make-local-variable 'overlay-arrow-string) "=>")
1650 (set (make-local-variable 'overlay-arrow-position) (make-marker))
1651 (setq tracked-buffer-line-pos (progn
1652 (goto-char (point-min))
1653 (forward-line (1- line-num))
1654 (point-marker)))
1655 (when tracked-buffer-window
1656 (set-window-point tracked-buffer-window tracked-buffer-line-pos))
1657 (set-marker overlay-arrow-position tracked-buffer-line-pos)))
1658 (pop-to-buffer (cdr tracking-buffers))
1659 (switch-to-buffer-other-window (car tracking-buffers)))
1660 (let ((tracking-buffers (assq (current-buffer)
1661 python-pdbtrack-tracking-buffers)))
1662 (when tracking-buffers
1663 (if inferior-python-mode-current-file
1664 (with-current-buffer (cdr tracking-buffers)
1665 (set-marker overlay-arrow-position nil))
1666 (kill-buffer (cdr tracking-buffers)))
1667 (setq python-pdbtrack-tracking-buffers
1668 (assq-delete-all (current-buffer)
1669 python-pdbtrack-tracking-buffers)))))))
1670 output)
1671
1672\f
1673;;; Symbol completion
1674
1675(defun python-completion-complete-at-point ()
1676 "Complete current symbol at point.
1677For this to work the best as possible you should call
1678`python-shell-send-buffer' from time to time so context in
1679inferior python process is updated properly."
1680 (interactive)
1681 (let ((process (python-shell-get-process)))
1682 (if (not process)
4e531f7a 1683 (error "Completion needs an inferior Python process running")
075a0f61
FEG
1684 (with-syntax-table python-dotty-syntax-table
1685 (let* ((input (substring-no-properties
1686 (or (comint-word (current-word)) "") nil nil))
1687 (completions (python-shell-completion--get-completions
1688 input process)))
1689 (delete-char (- (length input)))
1690 (insert
1691 (python-shell-completion--get-completion
1692 input completions)))))))
45c138ac
FEG
1693
1694(add-to-list 'debug-ignored-errors "^Completion needs an inferior Python process running.")
1695
1696\f
1697;;; Fill paragraph
1698
c2cb97ae
FEG
1699(defcustom python-fill-comment-function 'python-fill-comment
1700 "Function to fill comments.
1701This is the function used by `python-fill-paragraph-function' to
1702fill comments."
1703 :type 'symbol
1704 :group 'python
1705 :safe 'symbolp)
1706
1707(defcustom python-fill-string-function 'python-fill-string
1708 "Function to fill strings.
1709This is the function used by `python-fill-paragraph-function' to
1710fill strings."
1711 :type 'symbol
1712 :group 'python
1713 :safe 'symbolp)
1714
1715(defcustom python-fill-decorator-function 'python-fill-decorator
1716 "Function to fill decorators.
1717This is the function used by `python-fill-paragraph-function' to
1718fill decorators."
1719 :type 'symbol
1720 :group 'python
1721 :safe 'symbolp)
1722
1723(defcustom python-fill-paren-function 'python-fill-paren
1724 "Function to fill parens.
1725This is the function used by `python-fill-paragraph-function' to
1726fill parens."
1727 :type 'symbol
1728 :group 'python
1729 :safe 'symbolp)
1730
45c138ac
FEG
1731(defun python-fill-paragraph-function (&optional justify)
1732 "`fill-paragraph-function' handling multi-line strings and possibly comments.
1733If any of the current line is in or at the end of a multi-line string,
1734fill the string or the paragraph of it that point is in, preserving
4e531f7a
FEG
1735the string's indentation.
1736Optional argument JUSTIFY defines if the paragraph should be justified."
45c138ac
FEG
1737 (interactive "P")
1738 (save-excursion
1739 (back-to-indentation)
1740 (cond
1741 ;; Comments
c2cb97ae
FEG
1742 ((funcall python-fill-comment-function justify))
1743 ;; Strings/Docstrings
45c138ac 1744 ((save-excursion (skip-chars-forward "\"'uUrR")
14a78495 1745 (python-info-ppss-context 'string))
c2cb97ae 1746 (funcall python-fill-string-function justify))
45c138ac
FEG
1747 ;; Decorators
1748 ((equal (char-after (save-excursion
1749 (back-to-indentation)
c2cb97ae
FEG
1750 (point-marker))) ?@)
1751 (funcall python-fill-decorator-function justify))
45c138ac 1752 ;; Parens
14a78495 1753 ((or (python-info-ppss-context 'paren)
45c138ac
FEG
1754 (looking-at (python-rx open-paren))
1755 (save-excursion
1756 (skip-syntax-forward "^(" (line-end-position))
1757 (looking-at (python-rx open-paren))))
c2cb97ae 1758 (funcall python-fill-paren-function justify))
45c138ac
FEG
1759 (t t))))
1760
c2cb97ae 1761(defun python-fill-comment (&optional justify)
053a6c72
FEG
1762 "Comment fill function for `python-fill-paragraph-function'.
1763JUSTIFY should be used (if applicable) as in `fill-paragraph'."
c2cb97ae
FEG
1764 (fill-comment-paragraph justify))
1765
1766(defun python-fill-string (&optional justify)
053a6c72
FEG
1767 "String fill function for `python-fill-paragraph-function'.
1768JUSTIFY should be used (if applicable) as in `fill-paragraph'."
c2cb97ae
FEG
1769 (let ((marker (point-marker))
1770 (string-start-marker
1771 (progn
1772 (skip-chars-forward "\"'uUrR")
1773 (goto-char (python-info-ppss-context 'string))
1774 (skip-chars-forward "\"'uUrR")
1775 (point-marker)))
1776 (reg-start (line-beginning-position))
1777 (string-end-marker
1778 (progn
1779 (while (python-info-ppss-context 'string)
1780 (goto-char (1+ (point-marker))))
1781 (skip-chars-backward "\"'")
1782 (point-marker)))
1783 (reg-end (line-end-position))
1784 (fill-paragraph-function))
1785 (save-restriction
1786 (narrow-to-region reg-start reg-end)
1787 (save-excursion
1788 (goto-char string-start-marker)
1789 (delete-region (point-marker) (progn
1790 (skip-syntax-forward "> ")
1791 (point-marker)))
1792 (goto-char string-end-marker)
1793 (delete-region (point-marker) (progn
1794 (skip-syntax-backward "> ")
1795 (point-marker)))
1796 (save-excursion
1797 (goto-char marker)
1798 (fill-paragraph justify))
1799 ;; If there is a newline in the docstring lets put triple
1800 ;; quote in it's own line to follow pep 8
1801 (when (save-excursion
1802 (re-search-backward "\n" string-start-marker t))
1803 (newline)
1804 (newline-and-indent))
1805 (fill-paragraph justify)))) t)
1806
1807(defun python-fill-decorator (&optional justify)
053a6c72
FEG
1808 "Decorator fill function for `python-fill-paragraph-function'.
1809JUSTIFY should be used (if applicable) as in `fill-paragraph'."
c2cb97ae
FEG
1810 t)
1811
1812(defun python-fill-paren (&optional justify)
053a6c72
FEG
1813 "Paren fill function for `python-fill-paragraph-function'.
1814JUSTIFY should be used (if applicable) as in `fill-paragraph'."
c2cb97ae
FEG
1815 (save-restriction
1816 (narrow-to-region (progn
1817 (while (python-info-ppss-context 'paren)
1818 (goto-char (1- (point-marker))))
1819 (point-marker)
1820 (line-beginning-position))
1821 (progn
1822 (when (not (python-info-ppss-context 'paren))
1823 (end-of-line)
1824 (when (not (python-info-ppss-context 'paren))
1825 (skip-syntax-backward "^)")))
1826 (while (python-info-ppss-context 'paren)
1827 (goto-char (1+ (point-marker))))
1828 (point-marker)))
1829 (let ((paragraph-start "\f\\|[ \t]*$")
1830 (paragraph-separate ",")
1831 (fill-paragraph-function))
1832 (goto-char (point-min))
1833 (fill-paragraph justify))
1834 (while (not (eobp))
1835 (forward-line 1)
1836 (python-indent-line)
1837 (goto-char (line-end-position)))) t)
1838
45c138ac 1839\f
e2803784
FEG
1840;;; Skeletons
1841
1842(defcustom python-skeleton-autoinsert nil
1843 "Non-nil means template skeletons will be automagically inserted.
1844This happens when pressing \"if<SPACE>\", for example, to prompt for
1845the if condition."
1846 :type 'boolean
0f55249e
FEG
1847 :group 'python
1848 :safe 'booleanp)
e2803784
FEG
1849
1850(defvar python-skeleton-available '()
1851 "Internal list of available skeletons.")
e2803784
FEG
1852
1853(define-abbrev-table 'python-mode-abbrev-table ()
1854 "Abbrev table for Python mode."
1855 :case-fixed t
1856 ;; Allow / inside abbrevs.
1857 :regexp "\\(?:^\\|[^/]\\)\\<\\([[:word:]/]+\\)\\W*"
1858 ;; Only expand in code.
1859 :enable-function (lambda ()
e2803784 1860 (and
14a78495
FEG
1861 (not (or (python-info-ppss-context 'string)
1862 (python-info-ppss-context 'comment)))
e2803784
FEG
1863 python-skeleton-autoinsert)))
1864
1865(defmacro python-skeleton-define (name doc &rest skel)
1866 "Define a `python-mode' skeleton using NAME DOC and SKEL.
1867The skeleton will be bound to python-skeleton-NAME and will
1868be added to `python-mode-abbrev-table'."
1869 (let* ((name (symbol-name name))
1870 (function-name (intern (concat "python-skeleton-" name))))
73ed6836
FEG
1871 `(progn
1872 (define-abbrev python-mode-abbrev-table ,name "" ',function-name)
1873 (setq python-skeleton-available
1874 (cons ',function-name python-skeleton-available))
1875 (define-skeleton ,function-name
1876 ,(or doc
1877 (format "Insert %s statement." name))
1878 ,@skel))))
e2803784
FEG
1879(put 'python-skeleton-define 'lisp-indent-function 2)
1880
1881(defmacro python-define-auxiliary-skeleton (name doc &optional &rest skel)
1882 "Define a `python-mode' auxiliary skeleton using NAME DOC and SKEL.
1883The skeleton will be bound to python-skeleton-NAME."
1884 (let* ((name (symbol-name name))
1885 (function-name (intern (concat "python-skeleton--" name)))
1886 (msg (format
1887 "Add '%s' clause? " name)))
1888 (when (not skel)
1889 (setq skel
1890 `(< ,(format "%s:" name) \n \n
1891 > _ \n)))
1892 `(define-skeleton ,function-name
1893 ,(or doc
1894 (format "Auxiliary skeleton for %s statement." name))
1895 nil
1896 (unless (y-or-n-p ,msg)
1897 (signal 'quit t))
1898 ,@skel)))
1899(put 'python-define-auxiliary-skeleton 'lisp-indent-function 2)
1900
1901(python-define-auxiliary-skeleton else nil)
1902
1903(python-define-auxiliary-skeleton except nil)
1904
1905(python-define-auxiliary-skeleton finally nil)
1906
1907(python-skeleton-define if nil
1908 "Condition: "
1909 "if " str ":" \n
1910 _ \n
1911 ("other condition, %s: "
1912 <
1913 "elif " str ":" \n
1914 > _ \n nil)
1915 '(python-skeleton--else) | ^)
1916
1917(python-skeleton-define while nil
1918 "Condition: "
1919 "while " str ":" \n
1920 > _ \n
1921 '(python-skeleton--else) | ^)
1922
1923(python-skeleton-define for nil
1924 "Iteration spec: "
1925 "for " str ":" \n
1926 > _ \n
1927 '(python-skeleton--else) | ^)
1928
1929(python-skeleton-define try nil
1930 nil
1931 "try:" \n
1932 > _ \n
1933 ("Exception, %s: "
1934 <
1935 "except " str ":" \n
1936 > _ \n nil)
1937 resume:
1938 '(python-skeleton--except)
1939 '(python-skeleton--else)
1940 '(python-skeleton--finally) | ^)
1941
1942(python-skeleton-define def nil
1943 "Function name: "
1944 "def " str " (" ("Parameter, %s: "
1945 (unless (equal ?\( (char-before)) ", ")
1946 str) "):" \n
1947 "\"\"\"" - "\"\"\"" \n
1948 > _ \n)
1949
1950(python-skeleton-define class nil
1951 "Class name: "
1952 "class " str " (" ("Inheritance, %s: "
1953 (unless (equal ?\( (char-before)) ", ")
1954 str)
1955 & ")" | -2
1956 ":" \n
1957 "\"\"\"" - "\"\"\"" \n
1958 > _ \n)
1959
1960(defun python-skeleton-add-menu-items ()
1961 "Add menu items to Python->Skeletons menu."
1962 (let ((skeletons (sort python-skeleton-available 'string<))
1963 (items))
1964 (dolist (skeleton skeletons)
1965 (easy-menu-add-item
1966 nil '("Python" "Skeletons")
1967 `[,(format
1968 "Insert %s" (caddr (split-string (symbol-name skeleton) "-")))
1969 ,skeleton t]))))
1970\f
046428d3
FEG
1971;;; FFAP
1972
0f55249e 1973(defcustom python-ffap-setup-code
046428d3
FEG
1974 "def __FFAP_get_module_path(module):
1975 try:
1976 import os
1977 path = __import__(module).__file__
1978 if path[-4:] == '.pyc' and os.path.exists(path[0:-1]):
1979 path = path[:-1]
1980 return path
1981 except:
1982 return ''"
0f55249e
FEG
1983 "Python code to get a module path."
1984 :type 'string
1985 :group 'python
1986 :safe 'stringp)
046428d3 1987
0f55249e 1988(defcustom python-ffap-string-code
046428d3 1989 "__FFAP_get_module_path('''%s''')\n"
0f55249e
FEG
1990 "Python code used to get a string with the path of a module."
1991 :type 'string
1992 :group 'python
1993 :safe 'stringp)
046428d3 1994
046428d3
FEG
1995(defun python-ffap-module-path (module)
1996 "Function for `ffap-alist' to return path for MODULE."
1997 (let ((process (or
1998 (and (eq major-mode 'inferior-python-mode)
1999 (get-buffer-process (current-buffer)))
2000 (python-shell-get-process))))
2001 (if (not process)
2002 nil
2003 (let ((module-file
9ce938be 2004 (python-shell-send-string-no-output
046428d3
FEG
2005 (format python-ffap-string-code module) process)))
2006 (when module-file
2947016a 2007 (substring-no-properties module-file 1 -1))))))
046428d3
FEG
2008
2009(eval-after-load "ffap"
2010 '(progn
2011 (push '(python-mode . python-ffap-module-path) ffap-alist)
2012 (push '(inferior-python-mode . python-ffap-module-path) ffap-alist)))
2013
046428d3 2014\f
8b3e0e76
FEG
2015;;; Code check
2016
0f55249e 2017(defcustom python-check-command
8b3e0e76 2018 "pychecker --stdlib"
0f55249e
FEG
2019 "Command used to check a Python file."
2020 :type 'string
2021 :group 'python
2022 :safe 'stringp)
8b3e0e76
FEG
2023
2024(defvar python-check-custom-command nil
2025 "Internal use.")
2026
2027(defun python-check (command)
2028 "Check a Python file (default current buffer's file).
2029Runs COMMAND, a shell command, as if by `compile'. See
2030`python-check-command' for the default."
2031 (interactive
2032 (list (read-string "Check command: "
2033 (or python-check-custom-command
2034 (concat python-check-command " "
2035 (shell-quote-argument
2036 (or
2037 (let ((name (buffer-file-name)))
2038 (and name
2039 (file-name-nondirectory name)))
2040 "")))))))
2041 (setq python-check-custom-command command)
2042 (save-some-buffers (not compilation-ask-about-save) nil)
2043 (compilation-start command))
2044
2045\f
45c138ac
FEG
2046;;; Eldoc
2047
0f55249e 2048(defcustom python-eldoc-setup-code
45c138ac
FEG
2049 "def __PYDOC_get_help(obj):
2050 try:
15cc40b8 2051 import inspect
9e662938
FEG
2052 if hasattr(obj, 'startswith'):
2053 obj = eval(obj, globals())
15cc40b8
FEG
2054 doc = inspect.getdoc(obj)
2055 if not doc and callable(obj):
2056 target = None
2057 if inspect.isclass(obj) and hasattr(obj, '__init__'):
2058 target = obj.__init__
2059 objtype = 'class'
2060 else:
2061 target = obj
2062 objtype = 'def'
2063 if target:
2064 args = inspect.formatargspec(
2065 *inspect.getargspec(target)
2066 )
2067 name = obj.__name__
2068 doc = '{objtype} {name}{args}'.format(
2069 objtype=objtype, name=name, args=args
2070 )
2071 else:
2072 doc = doc.splitlines()[0]
45c138ac 2073 except:
9e662938
FEG
2074 doc = ''
2075 try:
2076 exec('print doc')
2077 except SyntaxError:
2078 print(doc)"
0f55249e
FEG
2079 "Python code to setup documentation retrieval."
2080 :type 'string
2081 :group 'python
2082 :safe 'stringp)
45c138ac 2083
0f55249e 2084(defcustom python-eldoc-string-code
9e662938 2085 "__PYDOC_get_help('''%s''')\n"
0f55249e
FEG
2086 "Python code used to get a string with the documentation of an object."
2087 :type 'string
2088 :group 'python
2089 :safe 'stringp)
45c138ac 2090
78334b43 2091(defun python-eldoc--get-doc-at-point (&optional force-input force-process)
d439cda5
FEG
2092 "Internal implementation to get documentation at point.
2093If not FORCE-INPUT is passed then what `current-word' returns
2094will be used. If not FORCE-PROCESS is passed what
2095`python-shell-get-process' returns is used."
78334b43 2096 (let ((process (or force-process (python-shell-get-process))))
45c138ac
FEG
2097 (if (not process)
2098 "Eldoc needs an inferior Python process running."
2099 (let* ((current-defun (python-info-current-defun))
78334b43
FEG
2100 (input (or force-input
2101 (with-syntax-table python-dotty-syntax-table
2102 (if (not current-defun)
2103 (current-word)
2104 (concat current-defun "." (current-word))))))
45c138ac
FEG
2105 (ppss (syntax-ppss))
2106 (help (when (and input
2107 (not (string= input (concat current-defun ".")))
14a78495
FEG
2108 (not (or (python-info-ppss-context 'string ppss)
2109 (python-info-ppss-context 'comment ppss))))
45c138ac
FEG
2110 (when (string-match (concat
2111 (regexp-quote (concat current-defun "."))
2112 "self\\.") input)
2113 (with-temp-buffer
2114 (insert input)
2115 (goto-char (point-min))
2116 (forward-word)
2117 (forward-char)
2118 (delete-region (point-marker) (search-forward "self."))
2119 (setq input (buffer-substring (point-min) (point-max)))))
9ce938be 2120 (python-shell-send-string-no-output
1066882c 2121 (format python-eldoc-string-code input) process))))
45c138ac
FEG
2122 (with-current-buffer (process-buffer process)
2123 (when comint-last-prompt-overlay
2124 (delete-region comint-last-input-end
2125 (overlay-start comint-last-prompt-overlay))))
2126 (when (and help
2127 (not (string= help "\n")))
2128 help)))))
2129
78334b43
FEG
2130(defun python-eldoc-function ()
2131 "`eldoc-documentation-function' for Python.
2132For this to work the best as possible you should call
2133`python-shell-send-buffer' from time to time so context in
2134inferior python process is updated properly."
2135 (python-eldoc--get-doc-at-point))
2136
2137(defun python-eldoc-at-point (symbol)
2138 "Get help on SYMBOL using `help'.
2139Interactively, prompt for symbol."
2140 (interactive
2141 (let ((symbol (with-syntax-table python-dotty-syntax-table
2142 (current-word)))
2143 (enable-recursive-minibuffers t))
2144 (list (read-string (if symbol
2145 (format "Describe symbol (default %s): " symbol)
2146 "Describe symbol: ")
2147 nil nil symbol))))
2148 (let ((process (python-shell-get-process)))
2149 (if (not process)
2150 (message "Eldoc needs an inferior Python process running.")
15cc40b8 2151 (message (python-eldoc--get-doc-at-point symbol process)))))
78334b43 2152
45c138ac 2153\f
fc2dc7df
FEG
2154;;; Imenu
2155
2156(defcustom python-imenu-include-defun-type t
2157 "Non-nil make imenu items to include its type."
2158 :type 'boolean
2159 :group 'python
2160 :safe 'booleanp)
2161
c942de99 2162(defcustom python-imenu-make-tree t
fc2dc7df
FEG
2163 "Non-nil make imenu to build a tree menu.
2164Set to nil for speed."
2165 :type 'boolean
2166 :group 'python
2167 :safe 'booleanp)
2168
2169(defcustom python-imenu-subtree-root-label "<Jump to %s>"
2170 "Label displayed to navigate to root from a subtree.
2171It can contain a \"%s\" which will be replaced with the root name."
2172 :type 'string
2173 :group 'python
2174 :safe 'stringp)
2175
2176(defvar python-imenu-index-alist nil
2177 "Calculated index tree for imenu.")
2178
2179(defun python-imenu-tree-assoc (keylist tree)
2180 "Using KEYLIST traverse TREE."
2181 (if keylist
2182 (python-imenu-tree-assoc (cdr keylist)
2183 (ignore-errors (assoc (car keylist) tree)))
2184 tree))
2185
2186(defun python-imenu-make-element-tree (element-list full-element plain-index)
2187 "Make a tree from plain alist of module names.
2188ELEMENT-LIST is the defun name splitted by \".\" and FULL-ELEMENT
2189is the same thing, the difference is that FULL-ELEMENT remains
2190untouched in all recursive calls.
2191Argument PLAIN-INDEX is the calculated plain index used to build the tree."
2192 (when (not (python-imenu-tree-assoc full-element python-imenu-index-alist))
2193 (when element-list
2194 (let* ((subelement-point (cdr (assoc
2195 (mapconcat #'identity full-element ".")
2196 plain-index)))
2197 (subelement-name (car element-list))
c942de99
FEG
2198 (subelement-position (python-util-position
2199 subelement-name full-element))
fc2dc7df
FEG
2200 (subelement-path (when subelement-position
2201 (butlast
2202 full-element
2203 (- (length full-element)
2204 subelement-position)))))
2205 (let ((path-ref (python-imenu-tree-assoc subelement-path
2206 python-imenu-index-alist)))
2207 (if (not path-ref)
2208 (push (cons subelement-name subelement-point)
2209 python-imenu-index-alist)
2210 (when (not (listp (cdr path-ref)))
2211 ;; Modifiy root cdr to be a list
2212 (setcdr path-ref
2213 (list (cons (format python-imenu-subtree-root-label
2214 (car path-ref))
2215 (cdr (assoc
2216 (mapconcat #'identity
2217 subelement-path ".")
2218 plain-index))))))
2219 (when (not (assoc subelement-name path-ref))
2220 (push (cons subelement-name subelement-point) (cdr path-ref))))))
2221 (python-imenu-make-element-tree (cdr element-list)
2222 full-element plain-index))))
2223
2224(defun python-imenu-make-tree (index)
2225"Build the imenu alist tree from plain INDEX.
2226
2227The idea of this function is that given the alist:
2228
2229 '((\"Test\" . 100)
2230 (\"Test.__init__\" . 200)
2231 (\"Test.some_method\" . 300)
2232 (\"Test.some_method.another\" . 400)
2233 (\"Test.something_else\" . 500)
2234 (\"test\" . 600)
2235 (\"test.reprint\" . 700)
2236 (\"test.reprint\" . 800))
2237
2238This tree gets built:
2239
2240 '((\"Test\" . ((\"jump to...\" . 100)
2241 (\"__init__\" . 200)
2242 (\"some_method\" . ((\"jump to...\" . 300)
2243 (\"another\" . 400)))
2244 (\"something_else\" . 500)))
2245 (\"test\" . ((\"jump to...\" . 600)
2246 (\"reprint\" . 700)
2247 (\"reprint\" . 800))))
2248
2249Internally it uses `python-imenu-make-element-tree' to create all
2250branches for each element."
2251(setq python-imenu-index-alist nil)
c942de99
FEG
2252(mapc (lambda (element)
2253 (python-imenu-make-element-tree element element index))
2254 (mapcar (lambda (element)
2255 (split-string (car element) "\\." t)) index))
fc2dc7df
FEG
2256python-imenu-index-alist)
2257
2258(defun python-imenu-create-index ()
2259 "`imenu-create-index-function' for Python."
2260 (let ((index))
2261 (goto-char (point-max))
2262 (while (python-beginning-of-defun-function 1 t)
2263 (let ((defun-dotted-name
2264 (python-info-current-defun python-imenu-include-defun-type)))
2265 (push (cons defun-dotted-name (point)) index)))
2266 (if python-imenu-make-tree
2267 (python-imenu-make-tree index)
2268 index)))
2269
2270\f
45c138ac
FEG
2271;;; Misc helpers
2272
fc2dc7df 2273(defun python-info-current-defun (&optional include-type)
45c138ac 2274 "Return name of surrounding function with Python compatible dotty syntax.
fc2dc7df 2275Optional argument INCLUDE-TYPE indicates to include the type of the defun.
45c138ac
FEG
2276This function is compatible to be used as
2277`add-log-current-defun-function' since it returns nil if point is
2278not inside a defun."
6b432853 2279 (let ((names '())
0b7b2e51
FEG
2280 (min-indent)
2281 (first-run t))
45c138ac
FEG
2282 (save-restriction
2283 (widen)
2284 (save-excursion
6b432853 2285 (goto-char (line-end-position))
589cefd7 2286 (forward-comment -9999)
15cc40b8 2287 (setq min-indent (current-indentation))
fc2dc7df 2288 (while (python-beginning-of-defun-function 1 t)
0b7b2e51
FEG
2289 (when (or (< (current-indentation) min-indent)
2290 first-run)
2291 (setq first-run nil)
6b432853 2292 (setq min-indent (current-indentation))
af5c1beb 2293 (looking-at python-nav-beginning-of-defun-regexp)
fc2dc7df
FEG
2294 (setq names (cons
2295 (if (not include-type)
2296 (match-string-no-properties 1)
2297 (mapconcat 'identity
2298 (split-string
2299 (match-string-no-properties 0)) " "))
2300 names))))))
45c138ac
FEG
2301 (when names
2302 (mapconcat (lambda (string) string) names "."))))
2303
2304(defun python-info-closing-block ()
e2d8d479 2305 "Return the point of the block the current line closes."
45c138ac
FEG
2306 (let ((closing-word (save-excursion
2307 (back-to-indentation)
2308 (current-word)))
2309 (indentation (current-indentation)))
2310 (when (member closing-word python-indent-dedenters)
2311 (save-excursion
2312 (forward-line -1)
2313 (while (and (> (current-indentation) indentation)
2314 (not (bobp))
2315 (not (back-to-indentation))
2316 (forward-line -1)))
2317 (back-to-indentation)
2318 (cond
2319 ((not (equal indentation (current-indentation))) nil)
2320 ((string= closing-word "elif")
2321 (when (member (current-word) '("if" "elif"))
2322 (point-marker)))
2323 ((string= closing-word "else")
2324 (when (member (current-word) '("if" "elif" "except" "for" "while"))
2325 (point-marker)))
2326 ((string= closing-word "except")
2327 (when (member (current-word) '("try"))
2328 (point-marker)))
2329 ((string= closing-word "finally")
2330 (when (member (current-word) '("except" "else"))
2331 (point-marker))))))))
2332
2333(defun python-info-line-ends-backslash-p ()
2334 "Return non-nil if current line ends with backslash."
2335 (string= (or (ignore-errors
2336 (buffer-substring
2337 (line-end-position)
2338 (- (line-end-position) 1))) "") "\\"))
2339
2340(defun python-info-continuation-line-p ()
2341 "Return non-nil if current line is continuation of another."
85655287
FEG
2342 (let ((current-ppss-context-type (python-info-ppss-context-type)))
2343 (and
2344 (equal (save-excursion
2345 (goto-char (line-end-position))
2346 (forward-comment 9999)
2347 (python-info-ppss-context-type))
2348 current-ppss-context-type)
2349 (or (python-info-line-ends-backslash-p)
2350 (string-match ",[[:space:]]*$" (buffer-substring
2351 (line-beginning-position)
2352 (line-end-position)))
2353 (save-excursion
2354 (let ((innermost-paren (progn
2355 (goto-char (line-end-position))
2356 (python-info-ppss-context 'paren))))
2357 (when (and innermost-paren
2358 (and (<= (line-beginning-position) innermost-paren)
2359 (>= (line-end-position) innermost-paren)))
2360 (goto-char innermost-paren)
2361 (looking-at (python-rx open-paren (* space) line-end)))))
2362 (save-excursion
2363 (back-to-indentation)
2364 (python-info-ppss-context 'paren))))))
45c138ac
FEG
2365
2366(defun python-info-block-continuation-line-p ()
2367 "Return non-nil if current line is a continuation of a block."
2368 (save-excursion
2369 (while (and (not (bobp))
2370 (python-info-continuation-line-p))
2371 (forward-line -1))
2372 (forward-line 1)
2373 (back-to-indentation)
2374 (when (looking-at (python-rx block-start))
2375 (point-marker))))
2376
2377(defun python-info-assignment-continuation-line-p ()
2378 "Return non-nil if current line is a continuation of an assignment."
2379 (save-excursion
2380 (while (and (not (bobp))
2381 (python-info-continuation-line-p))
2382 (forward-line -1))
2383 (forward-line 1)
2384 (back-to-indentation)
2385 (when (and (not (looking-at (python-rx block-start)))
2386 (save-excursion
2387 (and (re-search-forward (python-rx not-simple-operator
2388 assignment-operator
2389 not-simple-operator)
2390 (line-end-position) t)
14a78495 2391 (not (or (python-info-ppss-context 'string)
9f1537ef 2392 (python-info-ppss-context 'paren)
14a78495 2393 (python-info-ppss-context 'comment))))))
45c138ac
FEG
2394 (point-marker))))
2395
14a78495
FEG
2396(defun python-info-ppss-context (type &optional syntax-ppss)
2397 "Return non-nil if point is on TYPE using SYNTAX-PPSS.
85655287 2398TYPE can be 'comment, 'string or 'paren. It returns the start
14a78495
FEG
2399character address of the specified TYPE."
2400 (let ((ppss (or syntax-ppss (syntax-ppss))))
2401 (case type
2402 ('comment
2403 (and (nth 4 ppss)
2404 (nth 8 ppss)))
2405 ('string
2406 (nth 8 ppss))
2407 ('paren
2408 (nth 1 ppss))
2409 (t nil))))
2410
85655287
FEG
2411(defun python-info-ppss-context-type (&optional syntax-ppss)
2412 "Return the context type using SYNTAX-PPSS.
2413The type returned can be 'comment, 'string or 'paren."
2414 (let ((ppss (or syntax-ppss (syntax-ppss))))
2415 (cond
2416 ((and (nth 4 ppss)
2417 (nth 8 ppss))
2418 'comment)
2419 ((nth 8 ppss)
2420 'string)
2421 ((nth 1 ppss)
2422 'paren)
2423 (t nil))))
2424
45c138ac 2425\f
c942de99
FEG
2426;;; Utility functions
2427
2428;; Stolen from GNUS
2429(defun python-util-merge (type list1 list2 pred)
4cafacb5
FEG
2430 "Destructively merge lists to produce a new one.
2431Argument TYPE is for compatibility and ignored. LIST1 and LIST2
2432are the list to be merged. Ordering of the elements is preserved
2433according to PRED, a `less-than' predicate on the elements."
c942de99
FEG
2434 (let ((res nil))
2435 (while (and list1 list2)
2436 (if (funcall pred (car list2) (car list1))
2437 (push (pop list2) res)
2438 (push (pop list1) res)))
2439 (nconc (nreverse res) list1 list2)))
2440
2441(defun python-util-position (item seq)
2442 "Find the first occurrence of ITEM in SEQ.
2443Return the index of the matching item, or nil if not found."
2444 (let ((member-result (member item seq)))
2445 (when member-result
2446 (- (length seq) (length member-result)))))
2447
d2190c57 2448;; Stolen from org-mode
fbc39529 2449(defun python-util-clone-local-variables (from-buffer &optional regexp)
d2190c57
FEG
2450 "Clone local variables from FROM-BUFFER.
2451Optional argument REGEXP selects variables to clone and defaults
2452to \"^python-\"."
2453 (mapc
2454 (lambda (pair)
2455 (and (symbolp (car pair))
2456 (string-match (or regexp "^python-")
2457 (symbol-name (car pair)))
2458 (set (make-local-variable (car pair))
2459 (cdr pair))))
2460 (buffer-local-variables from-buffer)))
2461
c942de99 2462\f
45c138ac
FEG
2463;;;###autoload
2464(define-derived-mode python-mode fundamental-mode "Python"
e2d8d479
FEG
2465 "Major mode for editing Python files.
2466
2467\\{python-mode-map}
2468Entry to this mode calls the value of `python-mode-hook'
2469if that value is non-nil."
45c138ac
FEG
2470 (set (make-local-variable 'tab-width) 8)
2471 (set (make-local-variable 'indent-tabs-mode) nil)
2472
2473 (set (make-local-variable 'comment-start) "# ")
2474 (set (make-local-variable 'comment-start-skip) "#+\\s-*")
2475
2476 (set (make-local-variable 'parse-sexp-lookup-properties) t)
2477 (set (make-local-variable 'parse-sexp-ignore-comments) t)
2478
2479 (set (make-local-variable 'font-lock-defaults)
2480 '(python-font-lock-keywords
2481 nil nil nil nil
2482 (font-lock-syntactic-keywords . python-font-lock-syntactic-keywords)))
2483
2484 (set (make-local-variable 'indent-line-function) #'python-indent-line-function)
2485 (set (make-local-variable 'indent-region-function) #'python-indent-region)
2486
2487 (set (make-local-variable 'paragraph-start) "\\s-*$")
2488 (set (make-local-variable 'fill-paragraph-function) 'python-fill-paragraph-function)
2489
2490 (set (make-local-variable 'beginning-of-defun-function)
2491 #'python-beginning-of-defun-function)
2492 (set (make-local-variable 'end-of-defun-function)
2493 #'python-end-of-defun-function)
2494
2495 (add-hook 'completion-at-point-functions
2496 'python-completion-complete-at-point nil 'local)
2497
fc2dc7df
FEG
2498 (setq imenu-create-index-function #'python-imenu-create-index)
2499
45c138ac
FEG
2500 (set (make-local-variable 'add-log-current-defun-function)
2501 #'python-info-current-defun)
2502
e2803784
FEG
2503 (set (make-local-variable 'skeleton-further-elements)
2504 '((abbrev-mode nil)
2505 (< '(backward-delete-char-untabify (min python-indent-offset
2506 (current-column))))
2507 (^ '(- (1+ (current-indentation))))))
2508
45c138ac
FEG
2509 (set (make-local-variable 'eldoc-documentation-function)
2510 #'python-eldoc-function)
2511
2512 (add-to-list 'hs-special-modes-alist
2513 `(python-mode "^\\s-*\\(?:def\\|class\\)\\>" nil "#"
2514 ,(lambda (arg)
2515 (python-end-of-defun-function)) nil))
2516
82c2b0de
FEG
2517 (set (make-local-variable 'mode-require-final-newline) t)
2518
45c138ac
FEG
2519 (set (make-local-variable 'outline-regexp)
2520 (python-rx (* space) block-start))
2521 (set (make-local-variable 'outline-heading-end-regexp) ":\\s-*\n")
2522 (set (make-local-variable 'outline-level)
2523 #'(lambda ()
2524 "`outline-level' function for Python mode."
2525 (1+ (/ (current-indentation) python-indent-offset))))
2526
e2803784
FEG
2527 (python-skeleton-add-menu-items)
2528
45c138ac
FEG
2529 (when python-indent-guess-indent-offset
2530 (python-indent-guess-indent-offset)))
2531
2532
2533(provide 'python)
2534;;; python.el ends here