-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython-pydoc.el
88 lines (71 loc) · 2.84 KB
/
python-pydoc.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
;;; python-pydoc.el --- pydoc helper for python-mode -*- lexical-binding: t; -*-
;; Copyright (C) 2015 OGAWA Hirofumi
;; Author: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
;; Keywords: help, python
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; For example,
;;
;; (add-hook 'python-mode-hook
;; (lambda ()
;; (autoload 'python-pydoc "python-pydoc" nil t)
;; (define-key python-mode-map "\C-ho" 'python-pydoc)))
;;; Code:
(require 'man)
(require 'python)
(defgroup python-pydoc nil
"Python pydoc."
:prefix "python-pydoc-"
:version "25.1"
:group 'python-pydoc)
(defcustom python-pydoc-program 'guess
"Program used by `python-pydoc' to produce help."
:type '(choice (const :tag "Guess from shebang" guess)
(string :tag "pydoc command"))
:group 'python-pydoc)
(defvar python-pydoc-history nil
"`python-pydoc' read history.")
(defvar-local python-pydoc-use-program nil)
(defun python-pydoc-decide-program ()
"Return pydoc command name from shebang."
(let ((shebang (save-excursion
(goto-char (point-min))
(when (looking-at auto-mode-interpreter-regexp)
(match-string 2)))))
(if (and shebang (string-match "python\\([0-9]+\\)?" shebang))
(concat "pydoc" (match-string 1 shebang))
"pydoc3")))
;;;###autoload
(defun python-pydoc (symbol)
"Run `pydoc' on SYMBOL."
(interactive
(let ((default (python-eldoc--get-symbol-at-point)))
(list (read-string (format "Describe symbol%s: "
(if default
(format "(default %s)" default)
""))
nil 'python-pydoc-history default)))
python-mode)
(when (not (stringp python-pydoc-program))
(setq python-pydoc-program (python-pydoc-decide-program)))
(when (string= symbol "")
(user-error "No pydoc args given"))
(let ((Man-switches "")
(manual-program python-pydoc-program))
(Man-getpage-in-background symbol)))
;;;###autoload
(defun python-pydoc-at-point ()
"Run a `pydoc' on the word around point."
(interactive nil python-mode)
(python-pydoc (python-eldoc--get-symbol-at-point)))
(provide 'python-pydoc)
;;; python-pydoc.el ends here