Don't invoke company on C-SPC if in minibuffer
In case of evil-collection-setup-minibuffer = t
This commit is contained in:
parent
73cb463bdf
commit
4cbc2abb09
1 changed files with 2 additions and 2 deletions
|
@ -106,8 +106,8 @@
|
||||||
|
|
||||||
;;; :completion
|
;;; :completion
|
||||||
(map! (:when (featurep! :completion company)
|
(map! (:when (featurep! :completion company)
|
||||||
:i "C-@" #'+company/complete
|
:i "C-@" (cmds! (not (minibufferp)) #'+company/complete)
|
||||||
:i "C-SPC" #'+company/complete
|
:i "C-SPC" (cmds! (not (minibufferp)) #'+company/complete)
|
||||||
(:after company
|
(:after company
|
||||||
(:map company-active-map
|
(:map company-active-map
|
||||||
"C-w" nil ; don't interfere with `evil-delete-backward-word'
|
"C-w" nil ; don't interfere with `evil-delete-backward-word'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue