mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
Merge 9a16e9e848
into 61af2bf4c5
This commit is contained in:
commit
f8174aaad7
@ -279,7 +279,7 @@ def match_consecutive(needles, haystack, ignore_case=False):
|
||||
regex_no_sep_end = regex_no_sep + '$'
|
||||
regex_one_sep = regex_no_sep + sep + regex_no_sep
|
||||
# can't use compiled regex because of flags
|
||||
regex_needle = regex_one_sep.join(needles).replace('\\', '\\\\') + regex_no_sep_end # noqa
|
||||
regex_needle = regex_one_sep.join(map(re.escape, needles)).replace('\\', '\\\\') + regex_no_sep_end # noqa
|
||||
regex_flags = re.IGNORECASE | re.UNICODE if ignore_case else re.UNICODE
|
||||
found = lambda entry: re.search(
|
||||
regex_needle,
|
||||
|
Loading…
Reference in New Issue
Block a user