aboutsummaryrefslogtreecommitdiff
path: root/.config/emacs/lisp/evil-collection/modes/org-present/evil-collection-org-present.el
blob: 745db01a3d615e3a51729393002e4b60abd27ead (plain)
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
;;; evil-collection-org-present.el --- Bindings for `org-present' -*- lexical-binding: t -*-

;; Copyright (C) 2020 Carla Cao

;; Author: Carla Cao <ccao001@gmail.com>
;; Maintainer: James Nguyen <james@jojojames.com>
;; Pierre Neidhardt <mail@ambrevar.xyz>
;; URL: https://github.com/emacs-evil/evil-collection
;; Version: 0.0.1
;; Package-Requires: ((emacs "26.3"))
;; Keywords: evil, emacs, tools, minimalist, presentation

;; 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:
;;; Bindings for`org-present'.

;;; Code:
(require 'evil-collection)
(require 'org-present nil t)

(defconst evil-collection-org-present-maps '(org-present-mode-keymap))

;;;###autoload
(defun evil-collection-org-present-setup ()
  "Set up `evil' bindings for `org-present'."
  (evil-collection-define-key 'normal 'org-present-mode-keymap
    "J" 'org-present-next
    "K" 'org-present-prev
    "gj" 'org-present-next
    "gk" 'org-present-prev
    "]]" 'org-present-next
    "[[" 'org-present-prev
    (kbd "SPC") 'org-present-next
    (kbd "S-SPC") 'org-present-prev
    (kbd "C-j") 'org-present-next
    (kbd "M-j") 'org-present-next
    (kbd "C-k") 'org-present-prev
    (kbd "M-k") 'org-present-prev
    "zi" 'org-present-big
    "zo" 'org-present-small
    "+" 'org-present-big
    "=" 'org-present-big
    "-" 'org-present-small
    "q" 'org-present-quit
    "ZQ" 'org-present-quit
    "ZZ" 'org-present-quit
    "r" 'org-present-read-only
    "gw" 'org-present-read-write
    "gg" 'org-present-beginning
    "G" 'org-present-end))

(provide 'evil-collection-org-present)
;;; evil-collection-org-present.el ends here