From 57cb2c9845d64e5583d8711767729c5880a2a2ae Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 21 Oct 2013 00:23:51 +0100 Subject: [PATCH] Disable ECB pre-scan dirs for emptiness It kept trying to pre-scan files as if they were directories, causing constant error messages. --- behavior.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/behavior.el b/behavior.el index 5df4dd1..d1e8d5c 100644 --- a/behavior.el +++ b/behavior.el @@ -38,6 +38,11 @@ cua-remap-control-v nil cua-remap-control-z nil) +;; Disable ECB's pre-scanning for empty directories, as it for some reason +;; kept trying scan files as if they were directories, causing constant error +;; messages in the mini-buffer. +(setq ecb-prescan-directories-for-emptyness nil) + ;; Use textmate-mode (when (require 'textmate nil 'noerror) (textmate-mode))