Skip to content

Commit

Permalink
bin/autojump: Make the test pass
Browse files Browse the repository at this point in the history
Fixes wting#348
  • Loading branch information
rico-chet authored and alex-thiessen-for-siemens committed Jan 24, 2022
1 parent bb700f8 commit 17f3295
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/autojump
Original file line number Diff line number Diff line change
Expand Up @@ -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),
),
)),
)


Expand Down

0 comments on commit 17f3295

Please sign in to comment.