Paredit fix after update

This commit is contained in:
larstvei 2023-01-29 14:09:42 +01:00
parent 8851cb92f8
commit 4b1f78feb2

View File

@ -932,6 +932,14 @@
(add-hook (intern (concat (symbol-name mode) "-hook")) 'paredit-mode)) (add-hook (intern (concat (symbol-name mode) "-hook")) 'paredit-mode))
#+END_SRC #+END_SRC
Paredit version 25 seems to interfere with REPL-modes. This is the proposed
fix:
#+begin_src emacs-lisp
(with-eval-after-load 'paredit
(define-key paredit-mode-map (kbd "RET") nil))
#+end_src
*** Emacs Lisp *** Emacs Lisp
In =emacs-lisp-mode= we can enable =eldoc-mode= to display information In =emacs-lisp-mode= we can enable =eldoc-mode= to display information