This repository has been archived by the owner on Oct 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdired-arrow-keys.el
82 lines (70 loc) · 2.4 KB
/
dired-arrow-keys.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
;;; dired-arrow-keys.el --- Navigate Dired buffers with the arrow keys
;;
;;; Copyright (C) 2018 Free Software Foundation, Inc.
;;
;; Author: Eric Crosson <[email protected]>
;; Version: 1.0.0
;; Keywords: convenience
;; URL: https://github.com/EricCrosson/dired-arrow-keys
;; Package-Requires: ((emacs "24"))
;;
;; This file is not a part of GNU Emacs.
;;
;;
;; This file 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 file 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:
;;
;;
;; Install `dired-arrow-keys' by modifying `dired-mode-map'.
;;
;; Map
;;
;; <right> to `dired-find-file'
;; <left> to `dired-find-parent-directory'
;;
;; and for `evil' users, map
;;
;; \\[evil-forward-char] to `dired-find-file'
;; \\[evil-backward-char] to `dired-find-parent-directory'
;;
;; Modeled after dired-details, with the `install' function.
;;; Code:
(eval-when-compile (require 'dired))
;;;###autoload
(defun dired-find-parent-directory ()
"Open a `dired'-buffer of the parent directory."
(interactive)
(find-alternate-file ".."))
;;;###autoload
(defun dired-arrow-keys-install ()
"Install `dired-arrow-keys' by modifying `dired-mode-map'.
Map
<right> to `dired-find-file'
<left> to `dired-find-parent-directory'
and for `evil' users, map
\\[evil-forward-char] to `dired-find-file'
\\[evil-backward-char] to `dired-find-parent-directory'"
(interactive)
(define-key dired-mode-map (kbd "<right>") 'dired-find-file)
(define-key dired-mode-map (kbd "<left>") 'dired-find-parent-directory)
(eval-after-load 'evil
'(progn
(define-key dired-mode-map (vector 'remap 'evil-forward-char) 'dired-find-file)
(define-key dired-mode-map (vector 'remap 'evil-backward-char) 'dired-find-parent-directory))))
(provide 'dired-arrow-keys)
;;; dired-arrow-keys.el ends here