bin/autojump: Make the test pass

Fixes https://github.com/wting/autojump/issues/348
pull/645/head
Alex Thiessen 2 years ago
parent 134d4be938
commit d9562242c4
No known key found for this signature in database
GPG Key ID: 6C90AE2B18A1CF5B

@ -196,11 +196,11 @@ def find_matches(entries, needles, check_entries=True):
return ifilter(
lambda entry: not is_cwd(entry) and path_exists(entry),
chain(
set(chain(
match_consecutive(needles, data, ignore_case),
match_fuzzy(needles, data, ignore_case),
match_anywhere(needles, data, ignore_case),
),
)),
)

Loading…
Cancel
Save