stackOverlord
stackOverlord

Reputation: 5402

Emacs ecb ignore certain file extensions

Is it possible to make emacs ecb (Emacs Code Browser) not show .pyc and .pyo files in the directory browser?

Upvotes: 3

Views: 244

Answers (1)

Thomas
Thomas

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

Related Questions