-
-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent dots only at the start of repeat patterns
A pattern like `+(?)` will note that the `?` matches the start of the pattern, and prevent it from matching a dot. However, this is not "anything other than a dot, repeating", but rather "repeating, where the first repetition doesn't start with a dot". With this change, repetitive extglob patterns in the start position are expanded such that the first instance of the pattern may not start with a dot, but any subsequent repetitions may begin with a dot. Fix: #211
- Loading branch information
Showing
6 changed files
with
1,037 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.