dail8859 / ElasticTabstops

Elastic Tabstops plugin for Notepad++
GNU General Public License v2.0
76 stars 16 forks source link

Excluded extensions #11

Closed Alpvax closed 6 years ago

Alpvax commented 6 years ago

Could you allow for extensions to be ignored, using a pattern of ! .ext1 .ext2 etc. or something similar? I want to use the elastic tabstops for all files except a few

dail8859 commented 6 years ago

@Alpvax

I just committed a change adding this. It won't be avialable via the plugin manager any time soon so you can manually download it and copy over your ElasticTabstops DLL file. Download links are here:

You can now specify extensions to ignore by prepending them with !. If none of the extension rules match then it does not apply Elastic Tabstops to the file. So in your case you can do something like:

extensions !.ext1 !.ext2 *

That way it will ignore ext1 and ext2 but the * will allow it to match all other files.

If you run into any issues or questions feel free to let me know.

Alpvax commented 6 years ago

That's great, thanks