[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/avy 01a311ca6a 07/31: avy.el: Get rid of magic char num
From: |
ELPA Syncer |
Subject: |
[elpa] externals/avy 01a311ca6a 07/31: avy.el: Get rid of magic char numbers |
Date: |
Mon, 13 Feb 2023 21:57:24 -0500 (EST) |
branch: externals/avy
commit 01a311ca6a8669d23dcef2f983bd84f88dd5d7f9
Author: Oleh Krehel <ohwoeowho@gmail.com>
Commit: Oleh Krehel <ohwoeowho@gmail.com>
avy.el: Get rid of magic char numbers
---
avy.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/avy.el b/avy.el
index 527479fdb5..7c33b983c9 100644
--- a/avy.el
+++ b/avy.el
@@ -248,7 +248,7 @@ Typically, these modes don't use the text representation."
"In case there is only one candidate jumps directly to it."
:type 'boolean)
-(defcustom avy-del-last-char-by '(8 127)
+(defcustom avy-del-last-char-by '(?\b ?\d)
"List of event types, i.e. key presses, that delete the last
character read. The default represents `C-h' and `DEL'. See
`event-convert-list'."
@@ -453,7 +453,7 @@ KEYS is the path from the root of `avy-tree' to LEAF."
(cond ((setq dispatch (assoc char avy-dispatch-alist))
(setq avy-action (cdr dispatch))
(throw 'done 'restart))
- ((memq char '(27 ?\C-g))
+ ((memq char '(?\e ?\C-g))
;; exit silently
(throw 'done 'abort))
((eq char ??)
- [elpa] externals/avy updated (c4adda8ca5 -> 9b1f0bc427), ELPA Syncer, 2023/02/13
- [elpa] externals/avy 5f2eba5f59 12/31: avy.el (avy-isearch): Bind avy-case-fold-search to case-fold-search, ELPA Syncer, 2023/02/13
- [elpa] externals/avy f9c15c573c 14/31: Fix subword commands with custom order., ELPA Syncer, 2023/02/13
- [elpa] externals/avy 455ebec6f3 11/31: avy.el (avy-process): Amend last commit for avy-goto-char-timer, ELPA Syncer, 2023/02/13
- [elpa] externals/avy 034de4c0e9 09/31: avy.el: Add -above and -below versions of avy-goto-whitespace-end, ELPA Syncer, 2023/02/13
- [elpa] externals/avy 01a311ca6a 07/31: avy.el: Get rid of magic char numbers,
ELPA Syncer <=
- [elpa] externals/avy 509471bad0 19/31: avy.el (avy-text): Store the avy-goto-char-timer text, ELPA Syncer, 2023/02/13
- [elpa] externals/avy bbf1e7339e 24/31: avy.el (avy-order-closest): Work with avy-goto-line, ELPA Syncer, 2023/02/13
- [elpa] externals/avy 9ae059deaa 04/31: .github/FUNDING.yml: Add, ELPA Syncer, 2023/02/13
- [elpa] externals/avy 343fc42de1 05/31: avy.el (avy-process): Return nil on "C-g" and "ESC", ELPA Syncer, 2023/02/13
- [elpa] externals/avy f91ae613a8 02/31: avy.el (avy-goto-line): Call avy-action-goto only when avy-action is not set, ELPA Syncer, 2023/02/13
- [elpa] externals/avy 87394c9a88 13/31: avy.el (avy-isearch): Return relevant result, ELPA Syncer, 2023/02/13
- [elpa] externals/avy 5127f993f9 10/31: avy.el (avy-process): Restart on fail for avy-style 'words, ELPA Syncer, 2023/02/13
- [elpa] externals/avy 66886e265c 06/31: avy.el (avy-read): Don't call `avy--key-to-char' too early, ELPA Syncer, 2023/02/13
- [elpa] externals/avy 8686845ed9 01/31: avy.el (avy-flyspell-correct-function): Add, ELPA Syncer, 2023/02/13
- [elpa] externals/avy 27d1af3fa6 08/31: avy.el (avy-goto-whitespace-end): New command, ELPA Syncer, 2023/02/13