Reputation: 5402
Is it possible to make emacs ecb (Emacs Code Browser) not show .pyc and .pyo files in the directory browser?
Upvotes: 3
Views: 244
Reputation: 17422
You can customize the variable source-file-regexps
which specifies which files are shown as source files. You can find it in the group "ecb-sources".
M-x customize-group RET ecb-sources
See also the ECB documentation.
Upvotes: 5