forked from FG42/FG42
1
0
Fork 0
FG42/lib/fg42/key-bindings.el

72 lines
2.4 KiB
EmacsLisp
Raw Normal View History

2019-09-06 17:40:33 +01:00
;;; fg42-keybindings --- Keybinding helper macros for FG42
;;
;; Copyright (c) 2019 Sameer Rahmani <lxsameer@gnu.org>
;;
;; Author: Sameer Rahmani <lxsameer@gnu.org>
;; URL: https://gitlab.com/FG42/FG42
;; Keywords: keybinding
;; Version: 0.1.0
;;
;; 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:
;;; Code:
2019-09-09 09:05:36 +01:00
(require 'fg42/race)
(defun -defkey-god (map key fn)
"Set the given KEY on key map MAP to FN."
(define-key map (kbd key) fn))
(defun -defkey-human (map key fn)
"Set the given KEY on key map MAP to FN."
(define-key map (kbd key) fn))
2020-03-11 23:26:25 +00:00
(defun -defkey-evil (map state-keys fn)
"Set the given STATE-KEYS on key map MAP to FN."
2020-03-11 23:50:57 +00:00
(let (
(normal-key (plist-get state-keys :normal))
(visual-key (plist-get state-keys :visual))
(insert-key (plist-get state-keys :insert))
2020-03-12 02:08:05 +00:00
(emacs-key (plist-get state-keys :emacs)))
(when (not (null normal-key)) (evil-define-key 'normal map normal-key fn))
2020-03-12 06:52:26 +00:00
(when (not (null visual-key)) (evil-define-key 'visual map normal-key fn))
(when (not (null insert-key)) (evil-define-key 'insert map normal-key fn))
(when (not (null emacs-key)) (evil-define-key 'emacs map normal-key fn))
2020-03-12 02:08:05 +00:00
)
2020-03-11 23:35:50 +00:00
)
2019-09-09 09:05:36 +01:00
(defmacro defkey (map keys fn)
2019-09-06 17:40:33 +01:00
"Defines a key binding for FG42 for different types.
2019-09-09 09:05:36 +01:00
Defines a keybinding in the given MAP for the given KEYS that maps
2019-09-06 17:40:33 +01:00
to the given FN with the given DOCSTRING.
2019-09-09 09:05:36 +01:00
KEYS should be a plist in the following format:
\(:god <keyma> :human <keymap> :evil <keymap)"
(let ((god-key (plist-get keys :god))
(human-key (plist-get keys :human))
2020-03-11 23:26:25 +00:00
(evil-state-key (plist-get keys :evil)))
2019-09-09 09:05:36 +01:00
(cond
((is-god?) `(-defkey-god ,map ,god-key ,fn))
((is-human?) `(-defkey-human ,map ,human-key ,fn))
2020-03-11 23:26:25 +00:00
((is-evil?) `(-defkey-evil ,map ,evil-state-key ,fn)))))
2019-09-06 17:40:33 +01:00
(provide 'fg42/key-bindings)
;;; key-bindings.el ends here