X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=selector.c;h=ed30692c7b33b7ca3bef64e179f0f227c87be9c0;hb=cd2588f04d4d909d5108ba705fcba0337d89ac9c;hp=9be758a840d9f07ce3815c4030e7de5c0505155b;hpb=8cd37ef953b9533401d63cddc72d3baa98fdfb96;p=selector.git diff --git a/selector.c b/selector.c index 9be758a..ed30692 100644 --- a/selector.c +++ b/selector.c @@ -45,7 +45,7 @@ #include #include -#define VERSION "1.1.3" +#define VERSION "1.1.4" #define BUFFER_SIZE 4096 @@ -66,6 +66,7 @@ int case_sensitive = 0; char *title = 0; int error_flash = 0; int exclamation_negates = 0; +int upper_caps_makes_case_sensitive = 0; int attr_modeline, attr_focus_line, attr_error; @@ -187,8 +188,11 @@ void usage(FILE *out) { fprintf(out, " start in regexp mode\n"); fprintf(out, " -a, --case-sensitive\n"); fprintf(out, " start in case sensitive mode\n"); + fprintf(out, " -u, --upper-case-makes-case-sensitive\n"); + fprintf(out, " using an upper case character in the matching string makes\n"); + fprintf(out, " the matching case-sensitive\n"); fprintf(out, " -n, --exclamation-negates\n"); - fprintf(out, " exclamation points in substring requires the string to be absent\n"); + fprintf(out, " substrings starting with an exclamation mark have to be absent\n"); fprintf(out, " -m, --monochrome\n"); fprintf(out, " monochrome mode\n"); fprintf(out, " -q, --no-beep\n"); @@ -365,12 +369,20 @@ void initialize_matcher(struct matcher *matcher, int n; if(use_regexp) { + matcher->case_sensitive = case_sensitive; matcher->nb_patterns = -1; matcher->regexp_error = regcomp(&matcher->preg, pattern, case_sensitive ? 0 : REG_ICASE); } else { matcher->regexp_error = 0; matcher->nb_patterns = 1; + + if(upper_caps_makes_case_sensitive) { + for(s = pattern; *s && !case_sensitive; s++) { + case_sensitive = (*s >= 'A' && *s <= 'Z'); + } + } + matcher->case_sensitive = case_sensitive; for(s = pattern; *s; s++) { @@ -694,13 +706,13 @@ void update_screen(int *current_focus_line, int *displayed_focus_line, /* Add a few info about the mode we are in (regexp and/or case sensitive) */ - if(use_regexp || case_sensitive) { + if(use_regexp || matcher.case_sensitive) { addstr(" ["); if(use_regexp) { addstr("regexp"); } - if(case_sensitive) { + if(matcher.case_sensitive) { if(use_regexp) { addstr(","); } @@ -852,6 +864,7 @@ static struct option long_options[] = { { "remove-duplicates", no_argument, 0, 'd' }, { "regexp", no_argument, 0, 'e' }, { "case-sensitive", no_argument, 0, 'a' }, + { "upper-case-makes-case-sensitive", no_argument, 0, 'u' }, { "title", 1, 0, 't' }, { "number-of-lines", 1, 0, 'l' }, { "colors", 1, 0, 'c' }, @@ -893,7 +906,7 @@ int main(int argc, char **argv) { strcpy(output_filename, ""); - while ((c = getopt_long(argc, argv, "o:s:x:vwmqf:ibzdeant:l:c:-h", + while ((c = getopt_long(argc, argv, "o:s:x:vwmqf:ibzdeaunt:l:c:-h", long_options, NULL)) != -1) { switch(c) { @@ -950,6 +963,10 @@ int main(int argc, char **argv) { case_sensitive = 1; break; + case 'u': + upper_caps_makes_case_sensitive = 1; + break; + case 'n': exclamation_negates = 1; break;