aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Alexander Huemer <alexander.huemer@xx.vu>2015-05-04 23:19:20 +0200
committerGravatar sin <sin@2f30.org>2015-05-05 10:50:11 +0100
commit2ab57e77995749b6c9a5b374128ba0601bfa1cbe (patch)
treef0ad000220ba6d210520337deef493887ae0c7d7
parentd337e25fb317391331ee6883a3c1c1a5eee890b1 (diff)
downloadnnn-2ab57e77995749b6c9a5b374128ba0601bfa1cbe.tar.gz
Be case insensitive for file extensions
-rw-r--r--noice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/noice.c b/noice.c
index 1d34017..8d7f7f1 100644
--- a/noice.c
+++ b/noice.c
@@ -193,7 +193,7 @@ openwith(char *file)
for (i = 0; i < LEN(assocs); i++) {
if (regcomp(&regex, assocs[i].regex,
- REG_NOSUB | REG_EXTENDED) != 0)
+ REG_NOSUB | REG_EXTENDED | REG_ICASE) != 0)
continue;
if (regexec(&regex, file, 0, NULL, 0) == 0) {
bin = assocs[i].bin;