Reorder define to avoid void error.

master
Andy Stewart 6 years ago
parent eb4890146a
commit 1e8237fac8
  1. 20
      eaf.el

@ -93,6 +93,16 @@
"EAF mode hook."
:type 'hook)
(defcustom eaf-capture-keys
'("RET" "DEL" "TAB" "SPC" "<backtab>" "<home>" "<end>" "<left>" "<right>" "<up>" "<down>" "<prior>" "<next>")
"Keys should send key event for to python side."
:type 'cons)
(defcustom eaf-capture-commands
'(self-insert-command delete-backward-char)
"Commands that should directly send key event to the Python side."
:type 'cons)
(defvar eaf-mode-map*
(let ((map (make-sparse-keymap)))
(define-key map (kbd "C-h m") 'eaf-describe-bindings)
@ -294,16 +304,6 @@ Try not to modify this alist directly. Use `eaf-setq' to modify instead."
"The extension list of org previewer application."
:type 'cons)
(defcustom eaf-capture-keys
'("RET" "DEL" "TAB" "SPC" "<backtab>" "<home>" "<end>" "<left>" "<right>" "<up>" "<down>" "<prior>" "<next>")
"Keys should send key event for to python side."
:type 'cons)
(defcustom eaf-capture-commands
'(self-insert-command delete-backward-char)
"Commands that should directly send key event to the Python side."
:type 'cons)
(defvar eaf-app-binding-alist
'(("browser" . eaf-browser-keybinding)
("pdf-viewer" . eaf-pdf-viewer-keybinding)

Loading…
Cancel
Save