emacs paredit - how to delete quotes

4k Views Asked by At

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. "somestring" should become somestring

What the best way to do that? Going in the other direction is easy, I just select somestring and type a quote.

Thanks.

3

There are 3 best solutions below

1
On BEST ANSWER

Use M-s to splice the current form into the outer form. This works with quotes, parentheses, and similar stuff, depending on the exact mode you're in:

(bla (|foo))  -> (bla |foo)
(bla "|foo")  -> (bla |foo)

Where | is the position of the cursor when you press M-s.

0
On

If you're on the first quote, you can M-x delete-pair. If you do it all the time, bind that to some convenient key.

0
On

Put point anywhere on the string and type M-s or M-x paredit-splice-sexp.