diff options
-rw-r--r-- | init.org | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -362,7 +362,7 @@ #+end_src ***** nobreak char display #+begin_src emacs-lisp - ;; (setq nobreak-char-display nil) + (setq nobreak-char-display nil) #+end_src ***** list-fonts-display #+begin_src emacs-lisp @@ -433,10 +433,16 @@ (global-font-lock-mode 1) #+end_src * Help system -*** Help buffers +*** Help buffers and shortcuts #+begin_src emacs-lisp (setq help-window-select t help-link-key-to-documentation t) + + (use-package find-func + :bind (("C-h C-v" . find-variable) + ("C-h C-f" . find-function) + ("C-h C-k" . find-function-on-key) + ("C-h C-l" . find-library))) #+end_src *** eldoc #+begin_src emacs-lisp |