From: Amin Bandali Date: Mon, 11 Nov 2019 18:48:20 +0000 (-0500) Subject: emacs: company: use C-p and C-n for selecting prev and next X-Git-Url: https://git.shemshak.org/~bandali/configs/commitdiff_plain/d39234b9cad8e19828b2b05735e5b11c75d6e0ec emacs: company: use C-p and C-n for selecting prev and next --- diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 9fda569..8036cf2 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1325,7 +1325,9 @@ This function is intended for use with `ivy-ignore-buffers'." :bind (:map company-active-map ([tab] . company-complete-common-or-cycle) - ([escape] . company-abort)) + ([escape] . company-abort) + ("C-p" . company-select-previous-or-abort) + ("C-n" . company-select-next-or-abort)) :custom (company-minimum-prefix-length 1) (company-selection-wrap-around t)