emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] 08/52: company-search-map: bind DEL to company-search-other-char


From: Dmitry Gutov
Subject: [elpa] 08/52: company-search-map: bind DEL to company-search-other-char
Date: Tue, 01 Jul 2014 11:53:07 +0000

dgutov pushed a commit to branch master
in repository elpa.

commit 137ee13a4b98bf7042b49b0025d08967ed8da588
Author: Dmitry Gutov <address@hidden>
Date:   Tue May 6 04:10:48 2014 +0400

    company-search-map: bind DEL to company-search-other-char
    
    Fixes #108
---
 company.el |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/company.el b/company.el
index 75c0f82..d4f284e 100644
--- a/company.el
+++ b/company.el
@@ -1602,7 +1602,8 @@ Keywords and function definition names are ignored."
       (define-key keymap [escape] meta-map))
     (define-key keymap (vector meta-prefix-char t) 'company-search-other-char)
     (define-key keymap "\e\e\e" 'company-search-other-char)
-    (define-key keymap  [escape escape escape] 'company-search-other-char)
+    (define-key keymap [escape escape escape] 'company-search-other-char)
+    (define-key keymap (kbd "DEL") 'company-search-other-char)
 
     (define-key keymap "\C-g" 'company-search-abort)
     (define-key keymap "\C-s" 'company-search-repeat-forward)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]