This works when an integrated terminal is opened. However, there doesn't seem to be saved history within a pipenv shell session (there would normally be history saved for a cmd session).
Is there a way to set up a command history so you can up-arrow for previous commands?
Hi there! On Unix you could try something like SHELL=/usr/bin/zsh pipenv shell. Sadly I don't know the Windows equivalent, but the idea is : force-set your shell when running the pipenv cmd.
I wanted to have
pipenv shellbe the default integrated terminal in VSCode on Windows. Here are the settings I modified:This works when an integrated terminal is opened. However, there doesn't seem to be saved history within a
pipenv shellsession (there would normally be history saved for acmdsession).Is there a way to set up a command history so you can up-arrow for previous commands?
Hi there! On Unix you could try something like
SHELL=/usr/bin/zsh pipenv shell. Sadly I don't know the Windows equivalent, but the idea is : force-set your shell when running the pipenv cmd.Cheers
Oops, my comment was incomplete. I meant it works in VSCode in Windows, but my outstanding issue is a lack of command history in the
pipenv shell