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
foo[[bar]]
foo[bar]
bar
See #183
i.e. with
private$event_callback_counts[[domain]] <- private$event_callback_counts[[domain]] - 1
it should probably never break on the [[ and expand to
[[
private$event_callback_counts[[domain]] <- private$event_callback_counts[[ domain ]] - 1
instead it should probably give this, even though the first line exceeds the 80 char limit
Related to #163 because we would not want line breaks in $ to force line breaks here!
$
We will have to nail down what "simple" means, probably:
TRUE
NULL
Having a list of what makes something "simple" will likely be useful in other places too?
It should probably also respect persistent line breaks if you manually request the expansion? That's quite an edge case though.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
See #183
i.e. with
it should probably never break on the
[[
and expand toinstead it should probably give this, even though the first line exceeds the 80 char limit
Related to #163 because we would not want line breaks in
$
to force line breaks here!We will have to nail down what "simple" means, probably:
TRUE
orNULL
Having a list of what makes something "simple" will likely be useful in other places too?
It should probably also respect persistent line breaks if you manually request the expansion? That's quite an edge case though.
The text was updated successfully, but these errors were encountered: