summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2018-12-23 19:24:41 -0500
committerAmin Bandali <bandali@gnu.org>2018-12-23 19:24:41 -0500
commit59ff41b64982aa2c3f9fc70ad2b6fb0f76fab0db (patch)
treefdf4c6bc6b7928ba9798e6513f3187465424fa39
parent7bd8b3a29775b751015ac3278c023b9e99d5b2cf (diff)
downloadconfigs-59ff41b64982aa2c3f9fc70ad2b6fb0f76fab0db.tar.gz
configs-59ff41b64982aa2c3f9fc70ad2b6fb0f76fab0db.tar.xz
configs-59ff41b64982aa2c3f9fc70ad2b6fb0f76fab0db.zip
[emacs/eshell] fix company-idle-delay’s value
Diffstat (limited to '')
-rw-r--r--init.org3
1 files changed, 2 insertions, 1 deletions
diff --git a/init.org b/init.org
index 14941a2..049eaa8 100644
--- a/init.org
+++ b/init.org
@@ -947,7 +947,8 @@ There's no way I could top that, so I won't attempt to.
(defun a/eshell-setup ()
(make-local-variable 'company-idle-delay)
- (defvar company-idle-delay nil)
+ (defvar company-idle-delay)
+ (setq company-idle-delay nil)
(bind-keys :map eshell-mode-map
("C-d" . a/eshell-quit-or-delete-char)
("C-S-l" . a/eshell-clear)