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