From d39234b9cad8e19828b2b05735e5b11c75d6e0ec Mon Sep 17 00:00:00 2001
From: Amin Bandali <bandali@gnu.org>
Date: Mon, 11 Nov 2019 13:48:20 -0500
Subject: [PATCH] emacs: company: use C-p and C-n for selecting prev and next

---
 .emacs.d/init.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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)
-- 
2.20.1