1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00

Remove default '.' path from find_match.

This interferes with tab completion. Rather than add another behavior flag to
find_matches(), the calling location will add the default path.

Closes #245.
This commit is contained in:
William Ting 2014-03-09 19:13:00 -07:00
parent d0578b2c10
commit 1d317dcd1a

View File

@ -190,10 +190,7 @@ def find_matches(entries, needles, check_entries=True):
chain(
match_consecutive(needles, data, ignore_case),
match_fuzzy(needles, data, ignore_case),
match_anywhere(needles, data, ignore_case),
# default return value so calling shell functions have an
# argument to `cd` to
[Entry('.', 0)]))
match_anywhere(needles, data, ignore_case)))
def handle_tab_completion(needle, entries):
@ -399,9 +396,16 @@ def main(args): # noqa
elif tab_index:
get_ith_path = lambda i, iterable: last(take(i, iterable)).path
print_local(
get_ith_path(tab_index, find_matches(entries, tab_needle)))
get_ith_path(
tab_index,
find_matches(entries, tab_needle)))
else:
print_local(first(find_matches(entries, needles)).path)
print_local(
first(
chain(
find_matches(entries, needles),
# always return an argument to calling shell functions
[Entry('.', 0)])).path)
return 0