├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── declutter.el /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanel/declutter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanel/declutter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanel/declutter/HEAD/README.md -------------------------------------------------------------------------------- /declutter.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanel/declutter/HEAD/declutter.el --------------------------------------------------------------------------------