branch: master
commit ddfdcb78c1f7abc25e1a2db1eb68721b20d00a95
Author: Dmitry Gutov <[email protected]>
Commit: Dmitry Gutov <[email protected]>

    Abort when completion-at-point is invoked
    
    Closes #778
---
 company.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/company.el b/company.el
index a62a2cb..04dcdd9 100644
--- a/company.el
+++ b/company.el
@@ -605,7 +605,8 @@ treated as if it was on this list."
 
 (defcustom company-continue-commands '(not save-buffer save-some-buffers
                                            save-buffers-kill-terminal
-                                           save-buffers-kill-emacs)
+                                           save-buffers-kill-emacs
+                                           completion-at-point)
   "A list of commands that are allowed during completion.
 If this is t, or if `company-begin-commands' is t, any command is allowed.
 Otherwise, the value must be a list of symbols.  If it starts with `not',

Reply via email to