Re: [Plugin] LabelPlus v0.2.19.3
Posted: Thu Feb 27, 2014 7:33 am
If you use regex, you can do each letter as groups ie for case insensitive match of "test" put in [tT][eE][sS][tT]. Obnoxious, yes... but usable.
Or you could of course just add the case insensitive flag in the source (for regex see core.py line 794, change "line" to "line,re.I", for regular non-regex string matching see line 803 changing "t in name" to "t.lower() in name.lower()" and the same for the tracker on line 811.).
Thank you Ratanak, this provided a little bit to fill the gap of how I had things set up in uT which I finally dropped my 2.2.1 install... edited a few things for my liking, but I seem to have a fork I like, I dont think there are any notable changes though
Or you could of course just add the case insensitive flag in the source (for regex see core.py line 794, change "line" to "line,re.I", for regular non-regex string matching see line 803 changing "t in name" to "t.lower() in name.lower()" and the same for the tracker on line 811.).
Thank you Ratanak, this provided a little bit to fill the gap of how I had things set up in uT which I finally dropped my 2.2.1 install... edited a few things for my liking, but I seem to have a fork I like, I dont think there are any notable changes though