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
() { echo hello world } should consider echo a command word.
() { echo hello world }
echo
This is related to:
() echo hello world
f() { echo hello world }
f g h () { echo hello world }
MULTI_FUNC_DEFS
{ echo hello world } | …
The text was updated successfully, but these errors were encountered:
command word: Add an XFail test for issue #194, "Highlight anonymous …
80d692c
…functions".
0d1bfbc
No branches or pull requests
() { echo hello world }
should considerecho
a command word.This is related to:
() echo hello world
(single-statement anonymous functions)f() { echo hello world }
(normal function)f g h () { echo hello world }
(withMULTI_FUNC_DEFS
){ echo hello world } | …
(inline blocks) (which are related to subshells: issue subshells highlighted as incorrect syntax #166)The text was updated successfully, but these errors were encountered: