mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-22 03:00:05 +00:00
[emacs] Add unfill
This commit is contained in:
parent
8fc7e301a3
commit
5b4e13de63
1 changed files with 13 additions and 0 deletions
|
@ -370,6 +370,19 @@ Taken from http://groups.google.com/group/gnu.emacs.gnus/browse_thread/thread/a6
|
|||
(add-to-list 'mm-attachment-override-types "image/.*")
|
||||
(setq mm-inline-large-images t)
|
||||
#+END_SRC
|
||||
** Unfill
|
||||
Re-flowing paragraphs with =fill-paragraph= is nice, but there are
|
||||
occasions when it's useful to do the inverse, and get rid of the line
|
||||
breaks.
|
||||
|
||||
#+name: packages
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package unfill
|
||||
:ensure t
|
||||
:commands (unfill-paragraph
|
||||
unfill-region)
|
||||
:bind ("M-Q" . unfill-paragraph))
|
||||
#+END_SRC
|
||||
* LaTeX
|
||||
** AUCTeX
|
||||
#+name: packages
|
||||
|
|
Loading…
Reference in a new issue