Copyright (C) 2009-2014 Nathaniel Flath [email protected]
Version: 1.0
This package implements hungry deletion, meaning that deleting a whitespace character will delete all whitespace until the next non-whitespace character.
cc-mode implements hungry deletion for its programming modes. This package borrows its implementation in a minor mode, so that hungry deletion can be used in all modes.
The function global-hungry-delete-mode will turn on hungry-delete-mode in all buffers.
To use this mode, just put the following in your init.el:
(require 'hungry-delete)
(global-hungry-delete-mode)