mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
autojump will not remember home dir (may be in conflict with other directory)
This commit is contained in:
parent
904fc8b744
commit
e86f8a537d
5
autojump
5
autojump
@ -75,8 +75,9 @@ except IOError:
|
||||
path_dict={}
|
||||
|
||||
if ('-a','') in optlist:
|
||||
dicadd(path_dict,args[-1])
|
||||
save(path_dict,dic_file)
|
||||
if(args[-1] != os.path.expanduser("~")): # home dir can be reached quickly by "cd" and may interfere with other directory
|
||||
dicadd(path_dict,args[-1])
|
||||
save(path_dict,dic_file)
|
||||
elif ('--stat','') in optlist:
|
||||
a=path_dict.items()
|
||||
a.sort(key=lambda e:e[1])
|
||||
|
Loading…
Reference in New Issue
Block a user