diff options
| author | Craig Jennings <c@cjennings.net> | 2026-07-21 18:17:16 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-07-21 18:17:16 -0500 |
| commit | 08afe85598ade265341b4ea72ec2ece25ddc42fd (patch) | |
| tree | e31cece0ea4323c67d63a9e7d4c5c79073e24f45 | |
| parent | ed306961291c49fd3f7c445b3a8ef91d2708da2c (diff) | |
| download | dotemacs-08afe85598ade265341b4ea72ec2ece25ddc42fd.tar.gz dotemacs-08afe85598ade265341b4ea72ec2ece25ddc42fd.zip | |
chore: raise company-idle-delay to 4 seconds
Completion rarely wants to fire on a pause, and the popup is a distraction mid-thought (especially in org-mode). A 4-second idle delay keeps it out of the way while still surfacing on a deliberate wait.
| -rw-r--r-- | modules/selection-framework.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/selection-framework.el b/modules/selection-framework.el index 8e3ee252..47fbf7c7 100644 --- a/modules/selection-framework.el +++ b/modules/selection-framework.el @@ -225,7 +225,7 @@ ("C-p" . company-select-previous)) :custom (company-backends '(company-capf company-files company-keywords)) - (company-idle-delay 2) + (company-idle-delay 4) (company-minimum-prefix-length 2) (company-show-numbers t) (company-tooltip-align-annotations t) |
