mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
simplify file structure
This commit is contained in:
parent
573c1ea418
commit
3ef1195077
@ -1 +0,0 @@
|
||||
bin/autojump_argparse.py
|
@ -8,6 +8,7 @@ import platform
|
||||
import shutil
|
||||
import sys
|
||||
|
||||
sys.path.append('bin')
|
||||
from autojump_argparse import ArgumentParser
|
||||
|
||||
SUPPORTED_SHELLS = ('bash', 'zsh', 'fish')
|
||||
|
@ -1 +0,0 @@
|
||||
../bin/autojump
|
@ -1 +0,0 @@
|
||||
../bin/autojump_argparse.py
|
@ -1 +0,0 @@
|
||||
../bin/autojump_data.py
|
@ -1 +0,0 @@
|
||||
../bin/autojump_utils.py
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user