aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-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))