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
Fish shell: 3.2.2 OS: OSX
fish_indent breaks the following command:
type -q aws_completer;\ and complete --command aws --no-files --arguments\ '(begin; set --local --export COMP_SHELL fish; set --local --export COMP_LINE (commandline); aws_completer | sed \'s/ $//\'; end)'
after fish_indent:
type -q aws_completer and complete --command aws --no-files --arguments\ '(begin; set --local --export COMP_SHELL fish; set --local --export COMP_LINE (commandline); aws_completer | sed \'s/ $//\'; end)'
This results in:
complete: Unknown option '--arguments(begin; set --local --export COMP_SHELL fish; set --local --export COMP_LINE (commandline); aws_completer | sed 's/ $//'; end)'
fish_indent strips the whitespace between --arguments\ and (begin;...
--arguments\
(begin;...
Possible solutions:
Allow space before \ and after --arguments
\
--arguments
type -q aws_completer and complete --command aws --no-files --arguments \ '(begin; set --local --export COMP_SHELL fish; set --local --export COMP_LINE (commandline); aws_completer | sed \'s/ $//\'; end)'
Allow adding a space to the beginning of the line
The text was updated successfully, but these errors were encountered:
6670957
No branches or pull requests
Fish shell: 3.2.2
OS: OSX
fish_indent breaks the following command:
after fish_indent:
This results in:
fish_indent strips the whitespace between
--arguments\
and(begin;...
Possible solutions:
Allow space before
\
and after--arguments
Allow adding a space to the beginning of the line
The text was updated successfully, but these errors were encountered: