|
| 1 | +;;; dired-hacks.el --- Collection of useful dired additions |
| 2 | + |
| 3 | +;; Copyright (C) 2014-2015 Matúš Goljer |
| 4 | + |
| 5 | +;; Author: Matúš Goljer <matus.goljer@gmail.com> |
| 6 | +;; Maintainer: Matúš Goljer <matus.goljer@gmail.com> |
| 7 | +;; Keywords: files |
| 8 | +;; Version: 0.0.1 |
| 9 | +;; Created: 14th February 2014 |
| 10 | +;; Package-requires: ((dash "2.5.0")) |
| 11 | + |
| 12 | +;; This program is free software; you can redistribute it and/or modify |
| 13 | +;; it under the terms of the GNU General Public License as published by |
| 14 | +;; the Free Software Foundation, either version 3 of the License, or |
| 15 | +;; (at your option) any later version. |
| 16 | + |
| 17 | +;; This program is distributed in the hope that it will be useful, |
| 18 | +;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | +;; GNU General Public License for more details. |
| 21 | + |
| 22 | +;; You should have received a copy of the GNU General Public License |
| 23 | +;; along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 24 | + |
| 25 | +;;; Commentary: |
| 26 | + |
| 27 | +;; Collection of useful dired additions. I don't want this to become |
| 28 | +;; another `dired+', so I'm splitting all the functionality into separate |
| 29 | +;; mutually independent packages. All shared functionality and helpers |
| 30 | +;; will be extracted into a single package `dired-hacks-utils', so that |
| 31 | +;; will be the only dependence. |
| 32 | + |
| 33 | +;; For information about the individual packages, see README.md, |
| 34 | +;; or https://github.com/Fuco1/dired-hacks. |
| 35 | + |
| 36 | +;;; Code: |
| 37 | + |
| 38 | +(provide 'dired-hacks) |
| 39 | + |
| 40 | +;;; dired-hacks.el ends here |
0 commit comments