Browse Source

Revert "do the PROMPT_COMMAND in the background for better performance"

This reverts commit 87b188cf12.
pull/18/head
Joel Schaerer 15 years ago
parent
commit
18447505ee
1 changed files with 3 additions and 7 deletions
  1. +3
    -7
      autojump

+ 3
- 7
autojump View File

@ -66,13 +66,9 @@ try:
except IOError:
path_dict={}
if ('-a','') in optlist: #this can be done in the background
os.nice(10)
pid=os.fork()
if not pid:
os.setsid()
dicadd(path_dict,args[-1])
save(path_dict,dic_file)
if ('-a','') in optlist:
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…
Cancel
Save