branch: elpa/vcomplete commit 39f0aead10d68254936a92944b8323ddae381b28 Author: Daniel Semyonov <cm...@dsemy.com> Commit: Daniel Semyonov <cm...@dsemy.com>
Fix 'vcomplete--update-in-region' added to 'post-command-hook' globally * vcomplete.el (vcomplete--setup): Actually fix this time. --- vcomplete.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcomplete.el b/vcomplete.el index 6ca50a2e49..c5bc9f6dfb 100644 --- a/vcomplete.el +++ b/vcomplete.el @@ -235,7 +235,7 @@ With prefix argument N, move N items (negative N means move forward)." minor-mode-overriding-map-alist))) (when vcomplete-auto-update (add-hook 'post-command-hook - #'vcomplete--update-in-region t)) + #'vcomplete--update-in-region nil t)) (setcdr map vcomplete-command-map)) (vcomplete--reset-vars))))