summaryrefslogtreecommitdiff
path: root/README.md
blob: 7e9e7de9e91c7c41c05e473175ce87e3faed5fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
hungry-delete.el - hungry delete minor mode
============

Copyright (C) 2009-2014 Nathaniel Flath <flat0103@gmail.com>

### Commentary ###

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.

### Installation ###

To use this mode, just put the following in your init.el:

```elisp
(require 'hungry-delete)
(global-hungry-delete-mode)
```