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

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

[elpa] master e19e53e 19/29: Remote the overriding-terminal-local-map ch


From: Dmitry Gutov
Subject: [elpa] master e19e53e 19/29: Remote the overriding-terminal-local-map check
Date: Tue, 28 Mar 2017 20:50:36 -0400 (EDT)

branch: master
commit e19e53eacca9624981068939b00b8d630c987d53
Author: Dmitry Gutov <address@hidden>
Commit: Dmitry Gutov <address@hidden>

    Remote the overriding-terminal-local-map check
    
    Fixes #645.
---
 NEWS.md    | 1 +
 company.el | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/NEWS.md b/NEWS.md
index 41a50b4..463edb7 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -2,6 +2,7 @@
 
 ## Next
 
+* Use of `overriding-terminal-local-map` does not disable completion.
 * `company-clang` and `company-gtags` can work over Tramp.
 * New frontend `company-preview-common-frontend`.
 * `company-clang` calls Clang using a pipe instead of pty.
diff --git a/company.el b/company.el
index 805a3ec..ae7154f 100644
--- a/company.el
+++ b/company.el
@@ -1093,7 +1093,7 @@ can retrieve meta-data for them."
 
 (defun company--should-complete ()
   (and (eq company-idle-delay 'now)
-       (not (or buffer-read-only overriding-terminal-local-map
+       (not (or buffer-read-only
                 overriding-local-map))
        ;; Check if in the middle of entering a key combination.
        (or (equal (this-command-keys-vector) [])



reply via email to

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