Open mandel-macaque opened 2 years ago
hey @dannyneira, what are the updates on nushell
?
@daUnknownCoder There is no official nushell
support in Warp yet as we're working actively on pwsh
support.
FWIW, a Warp user has created a WIP script to support it nushell
here, but your experience may vary.
Here's a demo of a Powershell session running on my Mac:
Can we enable that to have a play?
Is there any ETA on when Pwsh support will come to macOS?
We are planning on putting PowerShell support for MacOS/Linux behind an experiment feature flag. Should be out within a few weeks! Stay tuned on this issue! We'll put the command for how to toggle the hidden option on this issue.
I would love if Nushell
was supported. Its also made in Rust
Hey all. We've put experimental PowerShell support into the latest release v0.2024.09.17.08.02.stable_00
. However, you must manually opt-in.
In a terminal, enter this command and then restart Warp:
defaults write dev.warp.Warp-Stable ExperimentOverrides PowerShellTester::Experiment
Edit the user preferences file at ${XDG_CONFIG_HOME:-$HOME/.config}/warp-terminal/user_preferences.json
and add the following key-value pair and then restart Warp:
{
"prefs": {
"ExperimentOverrides": "PowerShellTester::Experiment"
}
}
Warp does not install PowerShell for you. You must have it installed. See Microsoft's docs for installation instructions. If PowerShell is your default shell, new sessions will use it. If it isn't, you must change your Warp settings to tell it to use PowerShell:
Please note that our "warpify subshells" feature doesn't yet support PowerShell. That means, if you have a session in a different shell and then run pwsh
, that will be a "raw" experience which cannot be warpified.
Please try it out and let us know what you think! For bugs, please don't comment on this issue. File a new issue instead.
Alternatively, you can post on our Discord channel #warp-powershell-feedback.
Thank you!
pwsh is there, Thank you.
Just a little trick about binaries. You will be directly in pwsh so you will not inherit everything from zsh like before. So you will need to enrich the env:PATH variable using that kind of thing in your powershell profile :
Using zsh, i did echo $PATH
# Define additional paths to be added to the PATH environment variable
$additionalPaths = "/opt/homebrew/bin:/opt/homebrew/sbin" # copy paste the echo $PATH result from zsh
# Append the additional paths to the existing PATH environment variable
$env:PATH += [System.IO.Path]::PathSeparator + $additionalPaths
Here to show my interest in seeing nushell
get added as a valid shell. I use it daily and would love to see it be usable with Warp
Still interested in Nushell
being added as a supported shell for warp
. Would allow me to use epic AI with scripting I understand
I’ve noticed a lot of people adding their +1s for nushell, which is awesome since we’re all pumped about it. I’m particularly curious if the warp team is interested in the idea of it. Sorry if I missed it, but I didn’t see any responses about nushell support, just powershell, etc. I’m sure everyone here would be thrilled to know that it’s on Warp’s radar, so we can finally stop bugging you so much :)
hey folks, regarding nushell
support, it's not currently on the roadmap as it would require a significant amount of engineering work. We encourage you to continue to :+1: the top nushell comment as it helps us gauge interest in that particular shell. The more interest the higher likelihood we can dedicate the resources to making it happen.
Discord username (optional)
mandel
Describe the bug
To Reproduce
chsh -s /usr/local/bin/pwsh
Expected behaviour
Screenshots
No response
Operating System
MacOS
OS Version
12.2.1
Additional context
No response