You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By design Powershell aliases (created with Set-Alias does not support commands with arguments (e.g. git switch). It is required to create a function for that:
functiongsw {
git switch$args
}
However with such a definition carapace autocompletion does not work for aliasgsw - it will only work for full name of git switch.
Proposed solution
Support for functions autocompletion would make carapace more useful with use of powershell aliases. Or maybe there's some configuration to already do it - but I missed to find it.
Anything else?
No response
Polar
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Request
By design Powershell aliases (created with
Set-Alias
does not support commands with arguments (e.g.git switch
). It is required to create a function for that:However with such a definition carapace autocompletion does not work for alias
gsw
- it will only work for full name ofgit switch
.Proposed solution
Support for functions autocompletion would make carapace more useful with use of powershell aliases. Or maybe there's some configuration to already do it - but I missed to find it.
Anything else?
No response
Polar
The text was updated successfully, but these errors were encountered: