diff options
-rw-r--r-- | init.el | 10 |
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 | ||