branch: externals/corfu
commit b779552341354d59365a981fd208ae07b7a2950a
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>

    Use regexps in corfu-auto-commands
---
 CHANGELOG.org | 3 +--
 corfu.el      | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/CHANGELOG.org b/CHANGELOG.org
index 1e3b66c174..33c1a2aa73 100644
--- a/CHANGELOG.org
+++ b/CHANGELOG.org
@@ -4,8 +4,7 @@
 
 * Development
 
-- ~corfu-auto-commands~: Add ~backward-delete-char~ and
-  ~backward-delete-char-untabify~.
+- ~corfu-auto-commands~: Add ~delete-backward-char~.
 
 * Version 1.3 (2024-04-05)
 
diff --git a/corfu.el b/corfu.el
index dd53e8f825..1236683585 100644
--- a/corfu.el
+++ b/corfu.el
@@ -179,8 +179,7 @@ the completion backend is costly."
   :type 'float)
 
 (defcustom corfu-auto-commands
-  '("self-insert-command\\'"
-    backward-delete-char backward-delete-char-untabify org-delete-backward-char
+  '("self-insert-command\\'" "delete-backward-char\\'" 
"\\`backward-delete-char"
     c-electric-colon c-electric-lt-gt c-electric-slash c-scope-operator)
   "Commands which initiate auto completion.
 The list can container either command symbols or regular expressions."

Reply via email to