Page 1 of 1

Auto-capitalization

PostPosted: Sat Dec 11, 2004 12:22 am
by Smite
Can we get rid of auto-capitalization in the find bar? It really screws with the regex.

For example, I would use \d (same as [0-9]) a lot, but I can't since it's always converted to \D (same as [^0-9]).

PostPosted: Sat Dec 11, 2004 12:29 pm
by Quade
Let me think about what it would break. Probably have to be an advanced option.

PostPosted: Tue Feb 01, 2005 5:38 pm
by Kiltme
Case sensitive filters should not be the default for sure.

The current force uppercase was probably put in to fix \.exe is not the same as \.EXE type problems.

http://forums.newsbin.com/viewtopic.php?t=5957

PostPosted: Tue Feb 01, 2005 10:44 pm
by Smite
I'm not saying the filters have to be case sensitive, I'm saying the RegEx has to be. They're two seperate things. (And the filter sensitivity should be configurable from the RegEx parser.)

PostPosted: Wed Feb 02, 2005 12:03 am
by Quade
Give me a concrete reason why it needs to be case sensitive. I've never needed it but, typically my needs are simple.

PostPosted: Wed Feb 02, 2005 1:46 am
by Smite
Well, as I said. \d should be different from \D.

I think d and D should be treated the same though.

PostPosted: Wed Feb 02, 2005 2:56 am
by Quade
Hmm. Then I'd have to write a parser that can distinquish between just text and RE and only upcase the text. I'll look at the library I use. I do believe here are flags to set.