-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathevil-image.el
83 lines (68 loc) · 2.32 KB
/
evil-image.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
83
;;; evil-image.el --- Add Evil bindings to Image
;; Copyright (C) 2017 Pierre Neidhardt
;; Author: Pierre Neidhardt <[email protected]>
;; Package-Requires: ((evil "1.2.3"))
;; Package-Version: 20170724.1223
;; Homepage: https://github.com/Ambrevar/evil-special-modes
;; Version: 0
;; 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 3, 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.
;;
;; For a full copy of the GNU General Public License
;; see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
(require 'evil)
(require 'image-mode)
;;;###autoload
(defun evil-image-set-keys ()
(evil-set-initial-state 'image-mode 'motion)
(evil-define-key 'motion image-mode-map
;; motion
"gg" 'image-bob
"G" 'image-eob
"h" 'image-backward-hscroll
"l" 'image-forward-hscroll
"j" 'image-next-line
"k" 'image-previous-line
"0" 'image-bol
"^" 'image-bol
"$" 'image-eol
(kbd "C-d") 'image-scroll-down
(kbd "SPC") 'image-scroll-up
(kbd "S-SPC") 'image-scroll-down
(kbd "DEL") 'image-scroll-down
;; animation
(kbd "<return>") 'image-toggle-animation
"a0" 'image-reset-speed
"ar" 'image-reverse-speed
"F" 'image-goto-frame
"," 'image-previous-frame ; mplayer/mpv style
"." 'image-next-frame ; mplayer/mpv style
";" 'image-next-frame ; Evil style
"{" 'image-decrease-speed ; mplayer/mpv style
"}" 'image-increase-speed ; mplayer/mpv style
"H" 'image-transform-fit-to-height
"W" 'image-transform-fit-to-width
"[" 'image-previous-file
"]" 'image-next-file
(kbd "C-k") 'image-previous-file
(kbd "C-j") 'image-next-file
(kbd "C-c C-c") 'image-toggle-display
;; quit
"q" 'quit-window
"ZQ" 'evil-quit
"ZZ" 'quit-window)
;; TODO: What if the user changes `evil-want-C-u-scroll' after this is run?
(when evil-want-C-u-scroll
(evil-define-key 'motion image-mode-map
(kbd "C-u") 'image-scroll-up)))
(provide 'evil-image)
;;; evil-image.el ends here