Commit f2842a38c947

Vincent Demeester <vincent@sbr.pm>
2015-08-15 22:07:45
Add hungry-delete :)
1 parent d51cd6c
Changed files (1)
.emacs.d
.emacs.d/emacs.org
@@ -983,6 +983,19 @@
         :bind ("C-=" . er/expand-region))
     #+END_SRC
 
+*** Hungry delete
+
+    Hungry-delete is plain and simple, it makes backspace and C-d
+    erase all consecutive white space in a given direction (instead of
+    just one).
+
+    #+BEGIN_SRC emacs-lisp
+      (use-package hungry-delete
+        :ensure t
+        :config
+        (global-hungry-delete-mode))
+    #+END_SRC
+
 
 *** Notifications
     Emacs now has notifications (freedesktop.org specifications)