Skip to content

Instantly share code, notes, and snippets.

@satyr
Created May 17, 2011 17:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save satyr/976859 to your computer and use it in GitHub Desktop.
Save satyr/976859 to your computer and use it in GitHub Desktop.
(defun unmantle-next-parens () (interactive)
(skip-syntax-spec-forward "^(")
(save-excursion (goto-matched-parenthesis) (delete-char))
(delete-char)
(unless (eolp) (insert " ")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment