mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
Merge 5241d67efc
into e8f3cbd874
This commit is contained in:
commit
4cf0a2b498
12
bin/autojump
12
bin/autojump
@ -106,8 +106,8 @@ def parse_arguments():
|
|||||||
'directory', metavar='DIRECTORY', nargs='*', default='',
|
'directory', metavar='DIRECTORY', nargs='*', default='',
|
||||||
help='directory to jump to')
|
help='directory to jump to')
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'-a', '--add', metavar='DIRECTORY',
|
'-a', '--add', metavar='DIRECTORY', nargs='+',
|
||||||
help='add path')
|
help='add paths')
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'-i', '--increase', metavar='WEIGHT', nargs='?', type=int,
|
'-i', '--increase', metavar='WEIGHT', nargs='?', type=int,
|
||||||
const=10, default=False,
|
const=10, default=False,
|
||||||
@ -140,10 +140,13 @@ def add_path(data, path, weight=10):
|
|||||||
with resulting duplicate entries in the database than a single canonical
|
with resulting duplicate entries in the database than a single canonical
|
||||||
path.
|
path.
|
||||||
"""
|
"""
|
||||||
path = unico(path).rstrip(os.sep)
|
path = os.path.abspath(unico(path))
|
||||||
if path == os.path.expanduser('~'):
|
if path == os.path.expanduser('~'):
|
||||||
return data, Entry(path, 0)
|
return data, Entry(path, 0)
|
||||||
|
|
||||||
|
if not os.path.isdir(path):
|
||||||
|
return data, Entry(path, 0)
|
||||||
|
|
||||||
data[path] = sqrt((data.get(path, 0) ** 2) + (weight ** 2))
|
data[path] = sqrt((data.get(path, 0) ** 2) + (weight ** 2))
|
||||||
|
|
||||||
return data, Entry(path, data[path])
|
return data, Entry(path, data[path])
|
||||||
@ -261,7 +264,8 @@ def main(args): # noqa
|
|||||||
|
|
||||||
# all arguments are mutually exclusive
|
# all arguments are mutually exclusive
|
||||||
if args.add:
|
if args.add:
|
||||||
save(config, first(add_path(load(config), args.add)))
|
for arg in args.add:
|
||||||
|
save(config, first(add_path(load(config), arg)))
|
||||||
elif args.complete:
|
elif args.complete:
|
||||||
handle_tab_completion(
|
handle_tab_completion(
|
||||||
needle=first(chain(sanitize(args.directory), [''])),
|
needle=first(chain(sanitize(args.directory), [''])),
|
||||||
|
Loading…
Reference in New Issue
Block a user