We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
vox
xonsh
1 parent 01657dd commit f3a6874Copy full SHA for f3a6874
src/poetry/utils/shell.py
@@ -105,7 +105,9 @@ def activate(self, env: VirtualEnv) -> int | None:
105
if self._name in ["zsh", "nu"]:
106
c.setecho(False)
107
108
- if self._name == "zsh":
+ if self._name == "xonsh":
109
+ c.sendline(f"vox activate {shlex.quote(str(env.path))}")
110
+ elif self._name == "zsh":
111
# Under ZSH the source command should be invoked in zsh's bash emulator
112
c.sendline(f"emulate bash -c '. {shlex.quote(str(activate_path))}'")
113
else:
0 commit comments