├── .bumpversion.cfg ├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.rst ├── bin └── with ├── features ├── context_switch.feature ├── environment.py └── steps │ └── context_switch.py ├── requirements-dev.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── pytest.ini ├── test_config.py ├── test_main.py ├── test_prompt.py └── test_subprocess.py └── withtool ├── __init__.py ├── config.py ├── main.py ├── prompt.py └── subprocess.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/README.rst -------------------------------------------------------------------------------- /bin/with: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/bin/with -------------------------------------------------------------------------------- /features/context_switch.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/features/context_switch.feature -------------------------------------------------------------------------------- /features/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/features/environment.py -------------------------------------------------------------------------------- /features/steps/context_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/features/steps/context_switch.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/tests/test_prompt.py -------------------------------------------------------------------------------- /tests/test_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/tests/test_subprocess.py -------------------------------------------------------------------------------- /withtool/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.0.7' 2 | -------------------------------------------------------------------------------- /withtool/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/withtool/config.py -------------------------------------------------------------------------------- /withtool/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/withtool/main.py -------------------------------------------------------------------------------- /withtool/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/withtool/prompt.py -------------------------------------------------------------------------------- /withtool/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renanivo/with/HEAD/withtool/subprocess.py --------------------------------------------------------------------------------