diff --git a/evil-collection.el b/evil-collection.el index 0a161ee..60bf46c 100644 --- a/evil-collection.el +++ b/evil-collection.el @@ -45,6 +45,7 @@ debug diff-mode dired + doc-view edebug elfeed elisps-refs diff --git a/evil-doc-view.el b/evil-doc-view.el new file mode 100644 index 0000000..c34e968 --- /dev/null +++ b/evil-doc-view.el @@ -0,0 +1,69 @@ +;;; evil-doc-view.el --- Evil bindings for docview. -*- lexical-binding: t -*- + +;; Copyright (C) 2017 James Nguyen + +;; Author: James Nguyen +;; Maintainer: James Nguyen +;; Pierre Neidhardt +;; 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 . + +;;; 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