We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As a user of the fish shell I would like xst to provide completions not only for zsh and bash but for fish as well.
This will finally be possible when yargs/yargs#2281 is merged.
In the meantime you can already start with this script (ripped from the PR above)
Create a file ~/.config/fish/completions/xst.fish with following contents:
~/.config/fish/completions/xst.fish
### xst completion - begin. generated by omelette.js ### # # yargs command completion script # # function _xst_yargs_completion set cmd (commandline -b) for arg in (string split " " $cmd) set -a args "'$arg'" end set completions (eval xst --get-yargs-completions $args) for completion in $completions echo -e $completion end end complete -f -c xst -a '(_xst_yargs_completion)' ### xst completion - end ###
The text was updated successfully, but these errors were encountered:
line-o
No branches or pull requests
Enhancement
As a user of the fish shell I would like xst to provide completions not only for zsh and bash but for fish as well.
This will finally be possible when yargs/yargs#2281 is merged.
Alternatives
In the meantime you can already start with this script (ripped from the PR above)
Create a file
~/.config/fish/completions/xst.fish
with following contents:The text was updated successfully, but these errors were encountered: