本文介绍了如何自动在所有clojure,closurescript和elisp缓冲区上自动启用paredit模式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想默认在所有clojure,cljs和elisp缓冲区上启用paredit模式,这很可能会通过.spacemacs文件来实现.到目前为止,这是我的.spacemacs的用户配置功能中提供的功能:
I want to enable paredit-mode on all clojure, cljs and elisp buffers by default, which is probably going to happen through the .spacemacs file. This is what I have so far in the user-config function of my .spacemacs:
;; paredit autoload
(autoload 'enable-paredit-mode "paredit" "Turn on pseudo-structural editing of Lisp code." t)
(add-hook 'clojure-mode #'enable-paredit-mode)
(add-hook 'clojurescript-mode #'enable-paredit-mode)
但这并没有真正起作用.我在做什么错了?
But it doesn't really work. What am I doing wrong?
推荐答案
在 paredit-mode Wiki 可以看到应该是:
;; paredit autoload
(autoload 'enable-paredit-mode "paredit" "Turn on pseudo-structural editing of Lisp code." t)
(add-hook 'clojure-mode 'enable-paredit-mode)
(add-hook 'clojurescript-mode 'enable-paredit-mode)
因此不是#'
,而是代替该'
.
So not #'
but instead of that '
.
这篇关于如何自动在所有clojure,closurescript和elisp缓冲区上自动启用paredit模式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!