1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00
This commit is contained in:
Keith Hughitt 2013-06-05 06:28:36 -07:00
commit 6e02d9827a

View File

@ -24,9 +24,9 @@ ip = get_ipython()
@register_line_magic
def j(path):
cmd = ['autojump'] + path.split()
newpath = sub.Popen(cmd, stdout=sub.PIPE, shell=False).communicate()[0][:-1] # delete last '\n'
newpath = sub.Popen(cmd, stdout=sub.PIPE, shell=False).communicate()[0].strip()
if newpath:
ip.magic('cd %s' % newpath)
ip.magic('cd %s' % newpath.decode('utf-8'))
# remove from namespace
del j