Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit afde991

Browse files
committedOct 25, 2022
Add an umbrella library that describes the project as a whole
I suggested this before (in Fuco1#31). Despite your reluctance I've decided to give it another try now in the hope that this pull-request demonstrates that doing this won't necessarily result in an undue maintenance overhead. If this doesn't change your mind, that's fine too--but I had to try.
1 parent 7c0ef09 commit afde991

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed
 

‎README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# dired-hacks [![Build Status](https://travis-ci.org/Fuco1/dired-hacks.svg?branch=master)](https://travis-ci.org/Fuco1/dired-hacks) [![Paypal logo](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A5PMGVKCQBT88) [![Patreon](https://c5.patreon.com/external/logo/logomarkOrange.svg)](https://www.patreon.com/user?u=3282358&ty=h)
2424

25-
Collection of useful dired additions. I don't want this become
25+
Collection of useful dired additions. I don't want this to become
2626
another `dired+`, so I'm splitting all the functionality into separate
2727
mutually independent packages. All shared functionality and helpers
2828
will be extracted into a single package `dired-hacks-utils`, so that

‎dired-hacks.el

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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

Comments
 (0)
Failed to load comments.