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

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

[elpa] master 3ce73ce 069/348: counsel.el (counsel-company): Enable comp


From: Oleh Krehel
Subject: [elpa] master 3ce73ce 069/348: counsel.el (counsel-company): Enable company-mode
Date: Sat, 8 Apr 2017 11:03:28 -0400 (EDT)

branch: master
commit 3ce73ce5f61a5c271b00f8b39b929411ec8918f9
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>

    counsel.el (counsel-company): Enable company-mode
    
    Re #547
---
 counsel.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/counsel.el b/counsel.el
index cffc627..30c8f96 100644
--- a/counsel.el
+++ b/counsel.el
@@ -2228,12 +2228,14 @@ And insert it into the minibuffer. Useful during
 (defvar company-point)
 (defvar company-common)
 (declare-function company-complete "ext:company")
+(declare-function company-mode "ext:company")
 (declare-function company-complete-common "ext:company")
 
 ;;;###autoload
 (defun counsel-company ()
   "Complete using `company-candidates'."
   (interactive)
+  (company-mode 1)
   (unless company-candidates
     (company-complete))
   (when company-point



reply via email to

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