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
E.g. if i have
alias gip= idea with-sources=yes sbt-classifiers
and invoke
gip
it should display
idea with-sources=yes sbt-classifiers
Otherwise it might be confusing if alias has an error
$ gip
[error] Expected whitespace character
[error] Not a valid project ID: gip
[error] Not a valid configuration: gip
[error] Not a valid key: gip (similar: skip)
[error] gip
[error] ^
The text was updated successfully, but these errors were encountered:
This is reasonable, but requires some changes to the underlying parser combinator library. The parser library automatically generates errors based on the real input and there would have to be special support for switching the input context or something. I won't get to this soon, but can certainly help guide a pull request.
This avoids an additional cause of recursion via the semicolon/multiple command, which fixes#933.
It also provides error messages on the expanded command. This fixes#598.
E.g. if i have
alias gip= idea with-sources=yes sbt-classifiers
and invoke
it should display
Otherwise it might be confusing if alias has an error
$ gip
[error] Expected whitespace character
[error] Not a valid project ID: gip
[error] Not a valid configuration: gip
[error] Not a valid key: gip (similar: skip)
[error] gip
[error] ^
The text was updated successfully, but these errors were encountered: