mirror of
https://github.com/larstvei/dot-emacs.git
synced 2024-11-26 07:28:31 +00:00
Paredit fix after update
This commit is contained in:
parent
8851cb92f8
commit
4b1f78feb2
8
init.org
8
init.org
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user