diff options
author | Ryan Kavanagh <rak@rak.ac> | 2021-01-24 17:36:46 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2021-01-24 17:36:46 -0500 |
commit | 158185f970482391611741ea20595b62d3276ca7 (patch) | |
tree | fa22ce6c714d3f2149e582beb3ee95aaee09261f /.emacs | |
parent | switch from auto-complete to company (diff) |
set tab to complete in company
Diffstat (limited to '.emacs')
-rw-r--r-- | .emacs | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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)) |