We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pipenv shell
I use pipenv for python environment management and the following start script:
pipenv
cd path/to/project pipenv shell git status
Stop script
exit
git status
prm stop
Here I use:
prm start
cd
no active project
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My setup
I use
pipenv
for python environment management and the following start script:cd path/to/project pipenv shell git status
Stop script
exit
pipenv shell
, which spawns a shell and places the terminal "inside that shell".git status
doesn't run until I leave the shell usingexit
prm stop
as intendedDemonstration
Here I use:
prm start
- notecd
executes and we are placed inside pipenv shell. Can be seen from (AIMAS) on left hand sideprm stop
- prm saysno active project
becauseprm start
hasn't finished executingexit
- I use exit to leave the shell thegit status
executesThe text was updated successfully, but these errors were encountered: