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
Describe the bug
I referenced the output from jira completions --help to figure out how to generate the fish shell completions, and it recommended I do the following:
$ jira completion fish >~/.config/fish/completions/_jira.fish
However, when I started a new fish shell, I wasn't getting any completions. It wasn't until I renamed _jira.fish to jira.fish that they started appearing, so I think the help doc needs to be updated since fish determines which completions to use based on the base file name, and since _jira didn't match jira, they weren't showing up.
Describe the bug
I referenced the output from
jira completions --help
to figure out how to generate thefish
shell completions, and it recommended I do the following:However, when I started a new
fish
shell, I wasn't getting any completions. It wasn't until I renamed_jira.fish
tojira.fish
that they started appearing, so I think the help doc needs to be updated sincefish
determines which completions to use based on the base file name, and since_jira
didn't matchjira
, they weren't showing up.Please provide following details
To Reproduce
Steps to reproduce the behavior:
brew install jira fish
jira init
jira completion --help
- see that it recommends the following stepjira completion > ~/.config/fish/completions/_jira.fish
fish
shelljira <TAB>
and see that you do not get any completions~/.config/fish/completions/_jira.fish
to~/.config/fish/completions/jira.fish
fish
shellfish
shelljira <TAB>
and see that you now get completionsExpected behavior
I would expect the
jira completion --help
instructions specific tofish
to suggest the correct filename to be usedScreenshots
Before rename (
_jira.fish
):After rename to
jira.fish
:Additional context
The text was updated successfully, but these errors were encountered: