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.

link|improve this question

80% accept rate
feedback

3 Answers

up vote 5 down vote accepted

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.

link|improve this answer
adding the ParEdit reference table link: Paredit reference table – mark Apr 4 '11 at 20:36
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.