From c833048e696d33e4b7d0c796d4373daa5a1fc55c Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Thu, 26 Jun 2025 11:14:16 -0400 Subject: [PATCH] Update tab-first-completion and tab-always-indent --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index c08a5d4..736570c 100644 --- a/init.el +++ b/init.el @@ -335,7 +335,8 @@ tab-width 4) ;; Enable indentation and completion using the TAB key -(setq-default tab-always-indent nil) +(setq tab-always-indent 'complete) +(setq tab-first-completion 'word-or-paren-or-punct) ;; Perf: Reduce command completion overhead. (setq read-extended-command-predicate #'command-completion-default-include-p)