abo-abo / avy

Jump to things in Emacs tree-style
1.72k stars 110 forks source link

avy.el (avy--read-candidates): Custom keys for deleting last read char #251

Closed zhaojiangbin closed 5 years ago

zhaojiangbin commented 5 years ago

Add a defcustom for list of events that delete last read char, with the default being '(8 127) which represents C-h and DEL.

abo-abo commented 5 years ago

Thanks. I simplified it slightly, we can use memq directly. Please review.

zhaojiangbin commented 5 years ago

Thanks. I simplified it slightly, we can use memq directly. Please review.

Right memq returns nil when the list is nil. Cool.

Thanks.