From dd63042d000b0ab1fec78886e19f23a5432936bd Mon Sep 17 00:00:00 2001 From: Marc Pohling Date: Sun, 8 Jul 2018 11:41:41 +0200 Subject: [PATCH] remap company completion to play nicer with yasnippet --- config.org | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index 4161c9d..9cffa5d 100644 --- a/config.org +++ b/config.org @@ -1278,9 +1278,12 @@ Activate company and make it react nearly instantly company-tooltop-flip-when-above t company-show-numbers t company-idle-delay 0.1) -; (define-key company-active-map (kbd "TAB") #'company-complete-selection) ; (define-key company-active-map (kbd "RET") nil) (company-tng-configure-default) + :bind + (:map company-active-map + ("TAB" . company-complete-selection) + ("" . company-complete-selection)) ) #+END_SRC