mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
rename global var
This commit is contained in:
parent
0422d23a86
commit
99d92733ea
@ -61,7 +61,7 @@ from utils import take
|
|||||||
|
|
||||||
VERSION = 'release-v21.8.0'
|
VERSION = 'release-v21.8.0'
|
||||||
FUZZY_MATCH_THRESHOLD = 0.6
|
FUZZY_MATCH_THRESHOLD = 0.6
|
||||||
TAB_COMPLETION_COUNT = 9
|
TAB_ENTRIES_COUNT = 9
|
||||||
TAB_SEPARATOR = '__'
|
TAB_SEPARATOR = '__'
|
||||||
|
|
||||||
|
|
||||||
@ -322,7 +322,7 @@ def main():
|
|||||||
elif args.complete:
|
elif args.complete:
|
||||||
needle = first(sanitize(args.directory))
|
needle = first(sanitize(args.directory))
|
||||||
tab_entries = take(
|
tab_entries = take(
|
||||||
TAB_COMPLETION_COUNT,
|
TAB_ENTRIES_COUNT,
|
||||||
find_matches(entriefy(load(config)), needle))
|
find_matches(entriefy(load(config)), needle))
|
||||||
print_tab_menu(needle, tab_entries, TAB_SEPARATOR)
|
print_tab_menu(needle, tab_entries, TAB_SEPARATOR)
|
||||||
elif args.decrease:
|
elif args.decrease:
|
||||||
@ -350,7 +350,7 @@ def main():
|
|||||||
# the needle is actually a tab entry here
|
# the needle is actually a tab entry here
|
||||||
needle, tab_index = get_needle_and_index(needle, TAB_SEPARATOR)
|
needle, tab_index = get_needle_and_index(needle, TAB_SEPARATOR)
|
||||||
tab_entries = take(
|
tab_entries = take(
|
||||||
TAB_COMPLETION_COUNT,
|
TAB_ENTRIES_COUNT,
|
||||||
find_matches(entries, needle))
|
find_matches(entries, needle))
|
||||||
|
|
||||||
get_ith_path = lambda i, iterable: last(take(i, iterable)).path
|
get_ith_path = lambda i, iterable: last(take(i, iterable)).path
|
||||||
|
Loading…
Reference in New Issue
Block a user