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
Currently, adding a multiline call to an error will result in the call vanishing completely. It would be nice if instead the call was truncated and an ellipsis was added to show truncation has occurred.
> call <- quote(geom_point(aes(x = mpg, y = disp, size = after_stat(x)), colour = "lightblue", position = position_jitter(width = 3)))
> abort("test", call = I(call))
Error in `geom_point(aes(x = mpg, y = disp, size = after_stat(x))...`:
! test
Run `rlang::last_error()` to see where the error occurred.
The text was updated successfully, but these errors were encountered:
Currently, adding a multiline call to an error will result in the call vanishing completely. It would be nice if instead the call was truncated and an ellipsis was added to show truncation has occurred.
Current behaviour:
Expected behaviour:
The text was updated successfully, but these errors were encountered: