mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
Use named args when calling find_matches
This should make it clearer at first glance where True and False is referring to.
This commit is contained in:
parent
a99183bf8b
commit
4bd574aaf9
@ -424,15 +424,16 @@ def shell_utility():
|
|||||||
|
|
||||||
results = []
|
results = []
|
||||||
if not ALWAYS_IGNORE_CASE:
|
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 no results, try ignoring case
|
||||||
if ARGS.complete or not results:
|
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 no results, try approximate matching
|
||||||
if not results:
|
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 = ""
|
quotes = ""
|
||||||
if ARGS.complete and ARGS.bash: quotes = "'"
|
if ARGS.complete and ARGS.bash: quotes = "'"
|
||||||
|
Loading…
Reference in New Issue
Block a user