Add doc-view

This commit is contained in:
James Nguyen 2017-11-06 22:17:14 -08:00 committed by James N
parent f03d29d7ac
commit f8ec4d6146
2 changed files with 70 additions and 0 deletions

View File

@ -45,6 +45,7 @@
debug
diff-mode
dired
doc-view
edebug
elfeed
elisps-refs

69
evil-doc-view.el Normal file
View File

@ -0,0 +1,69 @@
;;; evil-doc-view.el --- Evil bindings for docview. -*- lexical-binding: t -*-
;; Copyright (C) 2017 James Nguyen
;; Author: James Nguyen <james@jojojames.com>
;; Maintainer: James Nguyen <james@jojojames.com>
;; Pierre Neidhardt <ambrevar@gmail.com>
;; URL: https://github.com/jojojames/evil-collection
;; Version: 0.0.1
;; Package-Requires: ((emacs "25.1"))
;; Keywords: evil, bindings
;; HomePage: https://github.com/jojojames/evil-collection
;; 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 3 of the License, 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 this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;; Evil bindings for doc-view.
;;; Code:
(require 'evil)
(require 'doc-view)
(defun evil-doc-view-setup ()
(evil-set-initial-state 'doc-view-mode 'motion)
(evil-define-key 'motion doc-view-mode-map
(kbd "C-j") 'doc-view-next-page
(kbd "C-k") 'doc-view-previous-page
(kbd "C-d") 'forward-page
(kbd "C-u") 'backward-page
(kbd "j") 'doc-view-next-line-or-next-page
(kbd "k") 'doc-view-previous-line-or-previous-page
(kbd "gg") 'doc-view-first-page
(kbd "G") 'doc-view-last-page
(kbd "J") 'doc-view-goto-page
(kbd "RET") 'image-next-line
(kbd "+") 'doc-view-enlarge
(kbd "0") 'doc-view-scale-reset
(kbd "-") 'doc-view-shrink
(kbd "W") 'doc-view-fit-width-to-window
(kbd "H") 'doc-view-fit-height-to-window
(kbd "P") 'doc-view-fit-page-to-window
(kbd "X") 'doc-view-kill-proc
(kbd "s s") 'doc-view-set-slice
(kbd "s m") 'doc-view-set-slice-using-mouse
(kbd "s b") 'doc-view-set-slice-from-bounding-box
(kbd "s r") 'doc-view-reset-slice
(kbd "/") 'doc-view-search
(kbd "?") 'doc-view-search-backward
(kbd "C-t") 'doc-view-show-tooltip
(kbd "C-c C-c") 'doc-view-toggle-display
(kbd "C-c C-t") 'doc-view-open-text
(kbd "gr") 'doc-view-revert-buffer))
(provide 'evil-doc-view)
;;; evil-doc-view.el ends here