Changes between Initial Version and Version 1 of Ticket #2309, comment 13


Ignore:
Timestamp:
02/22/25 03:26:32 (8 months ago)
Author:
wjaguar
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2309, comment 13

    initial v1  
    44- searching for `"[^g]"` or `"[!g]"` finds a letter "g"; 
    55- selecting `"[^g]*"` or `"[!g]*"` in mc's lib/search dir select "glob.c" instead of everything but. 
     6 
     7All the listed problems with brace expansion also remain: 
     8- unpaired literal braces are misinterpreted and break the RE: \\ 
     9  you cannot select, say, `"{"` or `"*.{"` despite files matching the pattern being there; 
     10- a text in braces w/o a comma is misinterpreted as without braces: \\ 
     11  trying to select "{abc}*" selects "abc"; 
     12- a sequence expression is misinterpreted as literal text w/o braces: \\ 
     13  trying to select "{a..h}*" selects "a..h" and does not select "glob.c" or "hex.c"; 
     14- nested braces now just plain do not work: \\ 
     15  `"{{a,b},c}*"` selects "a,c" and "b,c", but neither "abc" nor "ccc".