Merge pull request #152 from MatthewZMD/defcustom-to-defvar

Change eaf-capture-keys and eaf-capture-commands to defvar, remove delete-backward-char
master
Mingde Zeng 6 years ago committed by GitHub
commit a2c1b76a15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      eaf.el

@ -93,13 +93,13 @@
"EAF mode hook."
:type 'hook)
(defcustom eaf-capture-keys
(defvar 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)
(defvar eaf-capture-commands
'(self-insert-command)
"Commands that should directly send key event to the Python side."
:type 'cons)

Loading…
Cancel
Save