[emacs] Add unfill

This commit is contained in:
Correl Roush 2019-09-25 13:41:09 -04:00
parent 02d14a5b75
commit e024a39597
2 changed files with 8 additions and 0 deletions

View file

@ -811,3 +811,10 @@ Taken from [[http://emacsredux.com/blog/2013/06/21/eval-and-replace/][Emacs Redu
(global-set-key (kbd "C-)") 'eval-and-replace)
#+end_src
* Unfill
#+begin_src emacs-lisp
(use-package! unfill
:commands (unfill-paragraph
unfill-region)
:bind ("M-Q" . unfill-paragraph))
#+end_src

View file

@ -10,3 +10,4 @@
(package! ob-http)
(package! paredit)
(package! uuidgen)
(package! unfill)