toggle-quotes.el lets you toggle between single and double quotes easily, it also does the necessary escape and automatically remove the unnecessary unescape for you. See it in action:
Clone this repository or download toggle-quotes.el
, make sure that
this file is in Emacs load-path:
(add-to-list 'load-path "/path/to/directory/or/file")
Then require toggle-quotes, and bind the command toggle-quotes
:
(require 'toggle-quotes)
(global-set-key (kbd "C-'") 'toggle-quotes)
If you're an Emacs 24 user or you have a recent version of package.el you can install toggle-quotes.el from the MELPA repository.
Please, report any problems that you find on the projects integrated issue tracker. If you've added some improvements and you want them included upstream don't hesitate to send me a patch or even better - a GitHub pull request.