The paredit tag has no wiki summary.
23
votes
5answers
5k views
How to setup Aquamacs for Clojure development?
I've tried to migrate to Emacs several times for Clojure development, following a variety of blogposts, screencast and tutorials, but somewhere along the way something always went wrong - keybindings ...
6
votes
3answers
765 views
Changing Paredit Formatting
When using paredit in programming modes such as C, typing ( will insert a space before the paren when I'm trying to call a function, leaving me with:
foo ()
Is there a way to disable the insertion ...
5
votes
2answers
163 views
paredit curly brace matching in swank-clojure repl
I am using emacs 24 on Windows 7 and have installed technomancy's clojure-mode along with paredit 23 beta. I load the source file from my leiningen project and get a repl using clojure-jack-in. The ...
5
votes
3answers
309 views
How do you comment out all or part of a Lisp s-exp using Paredit?
When editing Lisp code, occasionally it's useful to entirely comment out a top-level definition, like this:
;(defun some-fn-which-is-broken (x)
; ...)
... or comment out only part of an ...
4
votes
1answer
143 views
How can I get paredit mode when doing eval-expression?
I love Emacs' paredit-mode, but I miss it very sorely when doing eval-expression (M-:). How can I have paredit in the minibuffer when doing eval-expression? Thanks!
3
votes
2answers
346 views
Using SLIMV to code Lisp, how do I insert a single " without disabling paredit.vim?
I need to write the following line of code:
((eq item #\") (do-this...))
But everytime I type ", I get "". I've read the paredit.vim doc file but it's not clear how to insert a single pair ...
2
votes
1answer
168 views
New SLIMV 0.8.4 install, paren matching works, indentation doesn't
I'm reinstalling everything after a hdd failure on my netbook (fresh install of Ubuntu Netbook Edition 10.04), and am trying to get the excellent SLIMV working again.
It was working fine on the ...
2
votes
2answers
191 views
Just getting used to paredit in emacs on OS X - how come C-) doesn't work?
I've recently set up a Common Lisp programming environment in Mac OS X Leopard. One emacs module which I've found to be indispensable is paredit. Paredit is doing its part to help me wrangle my Lisp ...
2
votes
2answers
164 views
Emacs php-mode and paredit
I would like to use paredit in combination with php-mode, but it doesn't add a closing curly bracket "}". Might this have something todo with the fact that an electric brace is bound to "{"? And how ...
2
votes
3answers
574 views
Emacs Clojure mode without paredit
I'm using the Clojure mode package from ELPA. Otherwise everything is fine, but I just can't stand paredit mode. I can't seem to turn it off easily, now I just disable it for every buffer I open. I ...
1
vote
3answers
278 views
emacs paredit - how to delete quotes
I'm using the emacs starter kit, https://github.com/technomancy/emacs-starter-kit, which comes with paredit mode.
I'm writing some javascript, and would like to remove something from quotes.
Eg. ...
0
votes
2answers
45 views
Emacs putting a newline after closing parenthesis
So far this is all I have in my .emacs:
(when
(load
(expand-file-name "~/.emacs.d/elpa/package.el"))
(package-initialize))
(require 'paredit)
(add-hook 'c++-mode-hook '(lambda () ...
0
votes
1answer
47 views
Wrapping braces around text?
When using paredit how do you wrap braces around text? I've used paredit several times however I get frustrated because it stops me from doing what I want.
Example:
(foo
(bar 1 2 3)
baz 1 2 ...