ecb-home / ecb

ECB Main Repository
Other
54 stars 11 forks source link

ecb directories buffer does not show nodes with names of less than 3 characters #23

Closed johnbendi closed 7 years ago

johnbendi commented 8 years ago

I have been wondering why certain directories in my source tree does not show up in the directories buffer until I discovered that directories with names of 2 characters or less are filtered out. I have tried to search the ecb customization group for a customization setting that controls this behavior to no avail.

Please confirm if this is the case at your end and suggest a way around this behavior.

Regards

ware commented 8 years ago

Let me look into it.

ware commented 7 years ago

@johnbendi, are you still seeing this behavior? I just tried to reproduce this and am not seeing this behavior. What I see is:

 |  |  |  | [+]LJS
 |  |  |  | [-]te
 |  |  |  |  | [x]a
 |  |  |  |  | [x]ab
 |  |  |  |  | [x]b
 |  |  |  |  | [x]dist
 |  |  |  |  | [x]es6
 |  |  |  |  | [+]node_modules
 |  |  |  |  `-[+]public

Those are directories with only 1 and 2 characters. Is this what you're talking about or is there something I'm missing?

johnbendi commented 7 years ago

@ware I have resolved the issue. It was caused by a ecb-excluded-directories-regexps setting where I tried to show all hidden folders but exclude the . and .. directories using a single regexp, but the regexp ended up excluding all directories with one or two letters. I achieved my objective by using two separate regexp entries to that variable. Let me know if you need more detail. Thanks.