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

Merge pull request #170 from blueyed/gh-find_matches-named-args

Use named args when calling find_matches
This commit is contained in:
William Ting 2012-12-18 09:41:32 -08:00
commit 12805b0f58

View File

@ -426,15 +426,16 @@ def shell_utility():
results = []
if not ALWAYS_IGNORE_CASE:
results = find_matches(db, patterns, max_matches, False)
results = find_matches(db, patterns, max_matches, ignore_case=False)
# if no results, try ignoring case
if ARGS.complete or not results:
results = find_matches(db, patterns, max_matches, True)
results = find_matches(db, patterns, max_matches, ignore_case=True)
# if no results, try approximate matching
if not results:
results = find_matches(db, patterns, max_matches, True, True)
results = find_matches(db, patterns, max_matches, ignore_case=True,
fuzzy=True)
quotes = ""
if ARGS.complete and ARGS.bash: quotes = "'"