diff options
-rw-r--r-- | init.org | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -2623,18 +2623,19 @@ (t "prolog"))))) #+END_SRC *** Racket - #+begin_src emacs-lisp :tangle no + #+begin_src emacs-lisp (use-package racket-mode :ensure t - :init (setq racket-show-functions '(racket-show-echo-area)) + :init (setq racket-show-functions '(racket-show-echo-area) + racket-documentation-search-location 'local) :config (jao-define-attached-buffer "\\`\\*Racket REPL") (jao-define-attached-buffer "\\`\\*Racket Describe" 0.5) (add-hook 'racket-mode-hook #'paredit-mode) (require 'racket-xp) (add-hook 'racket-mode-hook #'racket-xp-mode) - :bind (:map racket-mode-map (("C-c C-d" . racket-xp-describe) - ("C-c C-S-d" . racket-xp-documentation)))) + :bind (:map racket-xp-mode-map (("C-c C-S-d" . racket-xp-documentation) + ("C-c C-d" . racket-xp-describe)))) #+end_src *** Python |