Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions evil-integration.el
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,10 @@
'(company-complete-mouse
company-complete-number
company-complete-selection
company-complete-common))
company-complete-common
;; Calling company-complete twice modifies the buffer; this need to
;; be recorded.
company-complete))

(mapc #'evil-declare-ignore-repeat
'(company-abort
Expand All @@ -205,8 +208,16 @@
company-select-mouse
company-show-doc-buffer
company-show-location
company-filter-candidates
;; Ignore keystrokes when `company-search-mode' is active
company-search-candidates
company-filter-candidates))))
company-search-printing-char
company-search-other-char
company-search-toggle-filtering
company-search-repeat-forward
company-search-repeat-backward
company-search-abort
company-search-delete-char))))

;;; Eval last sexp
(defun evil--preceding-sexp (command &rest args)
Expand Down