1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00

simplify file structure

This commit is contained in:
William Ting 2014-01-11 07:09:19 -06:00
parent 573c1ea418
commit 3ef1195077
7 changed files with 5 additions and 5 deletions

View File

@ -1 +0,0 @@
bin/autojump_argparse.py

View File

@ -8,6 +8,7 @@ import platform
import shutil
import sys
sys.path.append('bin')
from autojump_argparse import ArgumentParser
SUPPORTED_SHELLS = ('bash', 'zsh', 'fish')

View File

@ -1 +0,0 @@
../bin/autojump

View File

@ -1 +0,0 @@
../bin/autojump_argparse.py

View File

@ -1 +0,0 @@
../bin/autojump_data.py

View File

@ -1 +0,0 @@
../bin/autojump_utils.py

View File

@ -20,6 +20,10 @@ from testify import setup
from testify import suite
from testify import teardown
if sys.version_info[0] == 3:
os.getcwdu = os.getcwd
sys.path.append(os.path.join(os.getcwd(), 'bin'))
import autojump_utils
from autojump_utils import create_dir
from autojump_utils import encode_local