├── .ci ├── cirrus-freebsd.yml.j2 └── cirrus-macos.yml.j2 ├── .github └── workflows │ ├── docker.yml │ └── test.yml ├── .gitignore ├── .shellcheckrc ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── bash_completion ├── docs └── demo.asciicast └── tests ├── README.md ├── __init__.py ├── common.py ├── conftest.py ├── docker ├── README.md ├── bash-3.2.Dockerfile ├── centos-7.Dockerfile ├── debian-10.Dockerfile ├── debian-11.Dockerfile ├── debian-12.Dockerfile ├── debian-9.Dockerfile └── scop.Dockerfile ├── logging.py ├── requirements.txt ├── test_case_insensitive.py ├── test_clean_env.py ├── test_debug.py ├── test_issue10.py ├── test_issue23.py ├── test_release.py ├── test_scop_completion.py ├── test_simple.py ├── test_special_characters.py ├── test_tabkey.py └── test_tilde.py /.ci/cirrus-freebsd.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/.ci/cirrus-freebsd.yml.j2 -------------------------------------------------------------------------------- /.ci/cirrus-macos.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/.ci/cirrus-macos.yml.j2 -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/.gitignore -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/README.md -------------------------------------------------------------------------------- /bash_completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/bash_completion -------------------------------------------------------------------------------- /docs/demo.asciicast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/docs/demo.asciicast -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/common.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/docker/README.md -------------------------------------------------------------------------------- /tests/docker/bash-3.2.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/docker/bash-3.2.Dockerfile -------------------------------------------------------------------------------- /tests/docker/centos-7.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/docker/centos-7.Dockerfile -------------------------------------------------------------------------------- /tests/docker/debian-10.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/docker/debian-10.Dockerfile -------------------------------------------------------------------------------- /tests/docker/debian-11.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/docker/debian-11.Dockerfile -------------------------------------------------------------------------------- /tests/docker/debian-12.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/docker/debian-12.Dockerfile -------------------------------------------------------------------------------- /tests/docker/debian-9.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/docker/debian-9.Dockerfile -------------------------------------------------------------------------------- /tests/docker/scop.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/docker/scop.Dockerfile -------------------------------------------------------------------------------- /tests/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/logging.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/test_case_insensitive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/test_case_insensitive.py -------------------------------------------------------------------------------- /tests/test_clean_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/test_clean_env.py -------------------------------------------------------------------------------- /tests/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/test_debug.py -------------------------------------------------------------------------------- /tests/test_issue10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/test_issue10.py -------------------------------------------------------------------------------- /tests/test_issue23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/test_issue23.py -------------------------------------------------------------------------------- /tests/test_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/test_release.py -------------------------------------------------------------------------------- /tests/test_scop_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/test_scop_completion.py -------------------------------------------------------------------------------- /tests/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/test_simple.py -------------------------------------------------------------------------------- /tests/test_special_characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/test_special_characters.py -------------------------------------------------------------------------------- /tests/test_tabkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/test_tabkey.py -------------------------------------------------------------------------------- /tests/test_tilde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sio/bash-complete-partial-path/HEAD/tests/test_tilde.py --------------------------------------------------------------------------------