summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2023-12-10 00:09:19 -0500
committerKyle Meyer <kyle@kyleam.com>2024-01-21 21:47:59 -0500
commitb2b0f0721a503c4e2e17cc981f49e701eb9e09d3 (patch)
tree9d717a90a4d32095701948b5d8baa55631c4d5c7 /init.el
parentf101cdb35a81cd04aae8c4aaba736b2ea1dfacf4 (diff)
downloademacs.d-b2b0f0721a503c4e2e17cc981f49e701eb9e09d3.tar.gz
Drop pydoc-related bits
I haven't used this in a long time.
Diffstat (limited to 'init.el')
-rw-r--r--init.el16
1 files changed, 1 insertions, 15 deletions
diff --git a/init.el b/init.el
index 3a20e51..e495cbb 100644
--- a/init.el
+++ b/init.el
@@ -1910,15 +1910,7 @@
(require 'km-python))
-(use-package pydoc
- :load-path "~/src/emacs/pydoc/"
- :config
- (setq pydoc-make-method-buttons nil)
- ;; Don't shadow my `ace-link' binding.
- (define-key pydoc-mode-map "o" #'ace-link-help))
-
(use-package km-python
- :bind ("C-h y" . km/pydoc)
:init
(bind-keys :map km/python-prefix-map
("c" . km/python-copy-last-shell-line-as-comment)
@@ -1934,11 +1926,7 @@
(lambda ()
(add-hook
'post-self-insert-hook
- #'km/python-indent-post-self-insert-function 'append 'local)))
-
- (add-hook 'pydoc-after-finish-hook #'km/pydoc-store-name)
- (when (file-exists-p km/pydoc-names-file)
- (km/pydoc-read-names-file km/pydoc-names-file)))
+ #'km/python-indent-post-self-insert-function 'append 'local))))
(use-package snakemake-mode
:load-path "~/src/emacs/snakemake-mode/"
@@ -2311,8 +2299,6 @@
;; Remove all mail map bindings except notmuch-related ones.
(global-set-key (kbd "C-x m n") #'notmuch)
(global-set-key (kbd "C-x m .") #'km/notmuch-show-at-point)
- (with-eval-after-load 'km-python
- (add-hook 'kill-emacs-hook #'km/pydoc-save-names-file))
(savehist-mode 1)
(setq save-abbrevs 'silently
bookmark-save-flag 1)