Skip to content

Instantly share code, notes, and snippets.

@artagnon
Created January 19, 2010 16:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save artagnon/281075 to your computer and use it in GitHub Desktop.
Save artagnon/281075 to your computer and use it in GitHub Desktop.
Reformat hard wrapped lines in Emacs
;; Reformat hard-wrapped regions
(defun reformat-hard-wrap (beg end)
(interactive "r")
(shell-command-on-region beg end "fmt -w2000" nil t))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment