aboutsummaryrefslogtreecommitdiff
path: root/.emacs
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@rak.ac>2021-01-24 17:36:46 -0500
committerRyan Kavanagh <rak@rak.ac>2021-01-24 17:36:46 -0500
commit158185f970482391611741ea20595b62d3276ca7 (patch)
treefa22ce6c714d3f2149e582beb3ee95aaee09261f /.emacs
parentswitch from auto-complete to company (diff)
set tab to complete in company
Diffstat (limited to '.emacs')
-rw-r--r--.emacs6
1 files changed, 5 insertions, 1 deletions
diff --git a/.emacs b/.emacs
index c90217e..2bd1236 100644
--- a/.emacs
+++ b/.emacs
@@ -215,6 +215,8 @@ Extended Format date in the date field and return it as a string obeing
(use-package company
:ensure t
+ :bind
+ ("<tab>" . company-indent-or-complete-common)
:hook
(after-init . global-company-mode))
@@ -320,7 +322,9 @@ Extended Format date in the date field and return it as a string obeing
:ensure t
:bind (("M-x" . helm-M-x)
("C-x C-f" . helm-find-files)
- ("C-x C-b" . helm-mini))
+ ("C-x C-b" . helm-mini)
+ :map helm-map
+ ("<tab>" . helm-select-action))
:config
(helm-mode 1))