Commit 2bbc84a0aaac

Vincent Demeester <vincent@sbr.pm>
2016-04-01 09:55:33
Add peep-dired
1 parent 053725c
Changed files (2)
.emacs.d
.emacs.d/lisp/use-package/use-package-tests.el
@@ -1,50 +0,0 @@
-;;; use-package-tests.el --- Tests for use-package.el
-
-;; This program is free software; you can redistribute it and/or
-;; modify it under the terms of the GNU General Public License as
-;; published by the Free Software Foundation; either version 2, or (at
-;; your option) any later version.
-
-;; This program is distributed in the hope that it will be useful, but
-;; WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-;; General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-;; Boston, MA 02111-1307, USA.
-
-;;; Commentary:
-
-;; 
-
-
-;;; Code:
-
-(require 'ert)
-(require 'use-package)
-
-(ert-deftest use-package-mplist-get ()
-  (let ((mplist '(:foo bar baz bal :blob plap plup :blam))
-        (tests '((:foo . (bar baz bal))
-                 (:blob . (plap plup))
-                 (:blam . t)
-                 (:blow . nil))))
-    (mapc (lambda (test)
-            (should
-             (equal
-              (use-package-mplist-get mplist
-                                      (car test))
-              (cdr test))))
-          tests)))
-
-(ert-deftest use-package-mplist-keys ()
-  (should (equal (use-package-mplist-keys
-                  '(:foo bar baz bal :blob plap plup :blam))
-                 '(:foo :blob :blam))))
-
-;; Local Variables:
-;; indent-tabs-mode: nil
-;; End:
-;;; use-package-tests.el ends here
.emacs.d/emacs.org
@@ -883,6 +883,18 @@
       (setq dired-listing-switches "-laGh1v --group-directories-first")
     #+END_SRC
 
+    Let's also use =peep-dired= wich allows to quickly preview files
+    from a dired buffer (images, …)
+
+
+    #+BEGIN_SRC emacs-lisp
+      (use-package peep-dired
+        :ensure t
+        :defer t ; don't access `dired-mode-map' until `peep-dired' is loaded
+        )
+    #+END_SRC
+
+
 
 *** Images