questionI edited the file: However, the changes don't seem to take effect. When I open a new tab, it still uses PowerShell instead of pwsh. contextNo response |
Replies: 2 comments
|
I managed to get it working via this: [terminal]
default_shell = "C:\\Program Files\\PowerShell\\7\\pwsh.exe" |
|
I was able to use the following: [terminal]
default_shell = "pwsh"This will allow you to use pwsh regardless of your OS. I would suspect this follows typical Path enumeration so I'd check if I actually came here to see if we should push for it to be the default. Preferring pwsh (and frankly pushing it as the standard) will alleviate some of the maintenance burdens. Pwsh is cross platform and reduces the complexity for having to support Windows specific bits. It handles path resolution accurately across OS's. (e.g. |
I managed to get it working via this: