gitextract_efrixfe1/ ├── .gitattributes ├── .gitignore ├── .pre-commit-config.yaml ├── .travis.yml ├── AUTHORS ├── CHANGES.md ├── LICENSE ├── Makefile ├── README.md ├── bin/ │ ├── _j │ ├── autojump │ ├── autojump.bash │ ├── autojump.bat │ ├── autojump.fish │ ├── autojump.lua │ ├── autojump.sh │ ├── autojump.tcsh │ ├── autojump.zsh │ ├── autojump_argparse.py │ ├── autojump_data.py │ ├── autojump_match.py │ ├── autojump_utils.py │ ├── j.bat │ ├── jc.bat │ ├── jco.bat │ └── jo.bat ├── docs/ │ ├── autojump.1 │ ├── body.md │ ├── header.md │ ├── install.md │ └── manpage_header.md ├── install.py ├── tests/ │ ├── __init__.py │ ├── integration/ │ │ └── __init__.py │ └── unit/ │ ├── __init__.py │ ├── autojump_match_test.py │ └── autojump_utils_test.py ├── tools/ │ └── autojump_ipython.py ├── tox.ini └── uninstall.py