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
I copy-pasted this straight from the README
Import-Module pure-pwsh Import-Module posh-git $pure.PrePrompt = { param ($user, $cwd, $git, $slow) "`n$user{1}{0}$cwd $git $slow `n" -f ($user ? ' ' : ''), (($ve = $env:virtual_env) ? "$($pure._branchcolor)($(Split-Path -Leaf $ve)) " : "" ) }
And here's my prompt:
(venv) (venv) ~\programming\python\some_project_with_venv main* ❯
I tried to figure this out myself but the PowerShell syntax is really difficult for me to parse and I couldn't tell what needed changing.
The text was updated successfully, but these errors were encountered:
Sorry for the delay, @ddejohn. That's the out of the box venv prompt displayed in the first line.
The easiest way to disable it is to set $env:VIRTUAL_ENV_DISABLE_PROMPT=1 before you run Activate.ps1. I probably ought to update the readme.
$env:VIRTUAL_ENV_DISABLE_PROMPT=1
Activate.ps1
Sorry, something went wrong.
No branches or pull requests
I copy-pasted this straight from the README
And here's my prompt:
I tried to figure this out myself but the PowerShell syntax is really difficult for me to parse and I couldn't tell what needed changing.
The text was updated successfully, but these errors were encountered: