summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2023-01-21 12:53:45 -0600
committerCase Duckworth2023-01-21 12:53:45 -0600
commit97e861dac909fff3f0606b16292b370bd992ccfb (patch)
treeee10e95752d629cd422cf13c2d0ddcd16d015f75
parentDo something with tabs if /not/ running a daemon (diff)
downloademacs-97e861dac909fff3f0606b16292b370bd992ccfb.tar.gz
emacs-97e861dac909fff3f0606b16292b370bd992ccfb.zip
Configure Info
-rw-r--r--init.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/init.el b/init.el index 4a32071..edc63ab 100644 --- a/init.el +++ b/init.el
@@ -213,6 +213,16 @@
213 #'after-frame@tab-bar))) 213 #'after-frame@tab-bar)))
214 (run-with-idle-timer 2 nil #'tab-bar-mode))) 214 (run-with-idle-timer 2 nil #'tab-bar-mode)))
215 215
216(use-package info
217 :preface
218 (defun Info-copy-current-node-name-0 ()
219 "Call `Info-copy-current-node-name' with a 0 prefix arg."
220 (interactive)
221 (Info-copy-current-node-name 0))
222 :bind (:map Info-mode-map
223 ("w" . Info-copy-current-node-name-0)
224 ("c" . Info-copy-current-node-name)))
225
216 226
217;;; Applications 227;;; Applications
218 228