Emacs: make tab key also indent
Alan Pearce alan@alanpearce.eu
Fri, 26 Jul 2019 17:00:38 +0200
1 files changed, 3 insertions(+), 2 deletions(-)
jump to
M emacs/.emacs.d/main.el → emacs/.emacs.d/main.el
@@ -347,7 +347,7 @@ (company-begin-commands '(self-insert-command)) (company-auto-complete #'company-explicit-action-p) (company-auto-complete-chars '(?\ ?\( ?\) ?.))) :general (:states 'insert - "TAB" #'company-complete)) + "TAB" #'company-indent-or-complete-common)) (use-package all-the-icons) @@ -454,7 +454,8 @@ "C-c C-l" #'counsel-shell-history)) ;;; Editing -(setq-default indent-tabs-mode nil) +(setq-default indent-tabs-mode nil + tab-always-indent 'complete) ;;; Major modes