commit | author | age
|
5cb5f7
|
1 |
;;; ztree.el --- Text mode directory tree -*- lexical-binding: t; -*- |
C |
2 |
|
|
3 |
;; Copyright (C) 2013-2016 Free Software Foundation, Inc. |
|
4 |
;; |
|
5 |
;; Author: Alexey Veretennikov <alexey.veretennikov@gmail.com> |
|
6 |
;; Created: 2013-11-11 |
|
7 |
;; Version: 1.0.5 |
|
8 |
;; Package-Requires: ((cl-lib "0")) |
|
9 |
;; Keywords: files tools |
|
10 |
;; URL: https://github.com/fourier/ztree |
|
11 |
;; Compatibility: GNU Emacs 24.x |
|
12 |
;; |
|
13 |
;; This file is part of GNU Emacs. |
|
14 |
;; |
|
15 |
;; GNU Emacs is free software: you can redistribute it and/or modify |
|
16 |
;; it under the terms of the GNU General Public License as published by |
|
17 |
;; the Free Software Foundation, either version 3 of the License, or |
|
18 |
;; (at your option) any later version. |
|
19 |
;; |
|
20 |
;; GNU Emacs is distributed in the hope that it will be useful, |
|
21 |
;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
22 |
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
23 |
;; GNU General Public License for more details. |
|
24 |
;; |
|
25 |
;; You should have received a copy of the GNU General Public License |
|
26 |
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
|
27 |
;; |
|
28 |
;;; Commentary: |
|
29 |
;; |
|
30 |
;; |
|
31 |
;;; Code: |
|
32 |
|
|
33 |
(require 'ztree-dir) |
|
34 |
(require 'ztree-diff) |
|
35 |
|
|
36 |
(provide 'ztree) |
|
37 |
;;; ztree.el ends here |