mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
Using globs in file chooser now defaults to case-insensitive
This commit is contained in:
@@ -38,7 +38,7 @@ namespace
|
||||
if(str.find("*") != std::string::npos)
|
||||
{
|
||||
_is_glob = true;
|
||||
_glob = path::glob_t(str);
|
||||
_glob = path::glob_t(str, false, false);
|
||||
}
|
||||
else if(regexp::match_t const& m = regexp::search("(?x) \\A (?: (?:/(?=.*/))? (.*) / )? ([^/]*?) (?: :([\\d+:-x\\+]*) | @(.*) )? \\z", str))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user