From 24cce40ec2cea59e3a07b93e5cdaf838829e887d Mon Sep 17 00:00:00 2001 From: Matthew Date: Fri, 13 Dec 2019 14:03:47 -0500 Subject: [PATCH] Change eaf-capture-keys and eaf-capture-commands to defvar, remove delete-backward-char --- eaf.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eaf.el b/eaf.el index 365e265..b511a97 100644 --- a/eaf.el +++ b/eaf.el @@ -93,13 +93,13 @@ "EAF mode hook." :type 'hook) -(defcustom eaf-capture-keys +(defvar eaf-capture-keys '("RET" "DEL" "TAB" "SPC" "" "" "" "" "" "" "" "" "") "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)