diff options
| -rw-r--r-- | lisp/ravi-init-insertion.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ravi-init-insertion.el b/lisp/ravi-init-insertion.el index 5cbcef8..e75c414 100644 --- a/lisp/ravi-init-insertion.el +++ b/lisp/ravi-init-insertion.el @@ -89,6 +89,16 @@ (indent-according-to-mode))) (bind-key "\t" 'ravi/complete-or-indent) + (bind-keys :map company-active-map + ("C-n" . company-select-next) + ("C-p" . company-select-previous) + ;; Swap filter and search since filter is more useful + ("C-s" . company-filter-candidates) + ("C-M-s" . company-search-candidates)) + (bind-keys :map company-search-map + ("C-n" . company-select-next) + ("C-p" . company-select-previous)) + (use-package company-c-headers :init (progn |
