mirror of
https://github.com/jarun/nnn.git
synced 2025-03-19 04:49:49 +00:00
Be case insensitive for file extensions
This commit is contained in:
parent
d337e25fb3
commit
2ab57e7799
1 changed files with 1 additions and 1 deletions
2
noice.c
2
noice.c
|
@ -193,7 +193,7 @@ openwith(char *file)
|
|||
|
||||
for (i = 0; i < LEN(assocs); i++) {
|
||||
if (regcomp(®ex, assocs[i].regex,
|
||||
REG_NOSUB | REG_EXTENDED) != 0)
|
||||
REG_NOSUB | REG_EXTENDED | REG_ICASE) != 0)
|
||||
continue;
|
||||
if (regexec(®ex, file, 0, NULL, 0) == 0) {
|
||||
bin = assocs[i].bin;
|
||||
|
|
Loading…
Add table
Reference in a new issue