Add support for string pattern matching as selection mode.
Currently using string.gmatch as core logic simply because:
ships with standard lua string library
leverages the entire lua pattern matching syntax
Ideally I'd prefer using the POSIX fnmatch logic, but due to the sheer size of code to support this in lua it does not ship with the standard library. An external library does exist. Links below.
Fixes #24 Based on #62
Description
Add support for string pattern matching as selection mode.
Currently using
string.gmatch
as core logic simply because:Ideally I'd prefer using the POSIX fnmatch logic, but due to the sheer size of code to support this in lua it does not ship with the standard library. An external library does exist. Links below.
Changes
string.gmatch
lua pattern matchingLinks
Screenshots