[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/ivy fa2f99bdc6 06/10: Fix for issue #2805 by using comp
From: |
Basil L. Contovounesios |
Subject: |
[elpa] externals/ivy fa2f99bdc6 06/10: Fix for issue #2805 by using company-finish on counsel-company. |
Date: |
Sun, 11 Sep 2022 08:15:33 -0400 (EDT) |
branch: externals/ivy
commit fa2f99bdc6a95c0cda22ba0ce632812a89ce22f5
Author: Joe Junior <joe.fbs.junior@gmail.com>
Commit: Oleh Krehel <ohwoeowho@gmail.com>
Fix for issue #2805 by using company-finish on counsel-company.
---
counsel.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/counsel.el b/counsel.el
index aa439e70a8..a486fe1522 100644
--- a/counsel.el
+++ b/counsel.el
@@ -382,12 +382,12 @@ Update the minibuffer with the amount of lines collected
every
(setq ivy-completion-beg (- (point) len))
(setq ivy-completion-end (point))
(ivy-read "Candidate: " company-candidates
- :action #'ivy-completion-in-region-action
+ :action 'company-finish
:caller 'counsel-company))))
(ivy-configure 'counsel-company
:display-transformer-fn #'counsel--company-display-transformer
- :unwind-fn #'company-abort)
+ :unwind-fn (lambda() (unless ivy-exit (company-abort))))
(defun counsel--company-display-transformer (s)
(concat s (let ((annot (company-call-backend 'annotation s)))
- [elpa] externals/ivy updated (166b3161a3 -> d9c2053316), Basil L. Contovounesios, 2022/09/11
- [elpa] externals/ivy 2c23dae5ea 01/10: counsel.el (counsel--imenu-candidates): Specialize python-mode, Basil L. Contovounesios, 2022/09/11
- [elpa] externals/ivy e322890809 05/10: ivy.el (ivy-occur-flush-lines): Add, Basil L. Contovounesios, 2022/09/11
- [elpa] externals/ivy fa2f99bdc6 06/10: Fix for issue #2805 by using company-finish on counsel-company.,
Basil L. Contovounesios <=
- [elpa] externals/ivy 2cfccf44a8 07/10: Fix company-prefix and company-common when using counsel-company., Basil L. Contovounesios, 2022/09/11
- [elpa] externals/ivy d9c2053316 10/10: Merge branch 'master' into externals/ivy, Basil L. Contovounesios, 2022/09/11
- [elpa] externals/ivy e9c0fb953d 09/10: Clean up compatibility of recent changes, Basil L. Contovounesios, 2022/09/11
- [elpa] externals/ivy 88715a5e1e 04/10: counsel.el (counsel-git-history): Add, Basil L. Contovounesios, 2022/09/11
- [elpa] externals/ivy 4c370d6677 08/10: Refactored counsel-company simplifying and removing uneeded code., Basil L. Contovounesios, 2022/09/11
- [elpa] externals/ivy ee7f7f8c79 02/10: ivy-overlay.el (ivy-display-function-overlay): Check org offset based on Emacs version, Basil L. Contovounesios, 2022/09/11
- [elpa] externals/ivy b85f7840a2 03/10: counsel.el (counsel-yank-pop-action): Adjust for vterm-mode, Basil L. Contovounesios, 2022/09/11