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
warn_roxy_tag()
warn_roxy_block()
Something like this:
warn_roxy_tag <- function(tag, message, ...) { link <- cli::style_hyperlink( paste0(basename(tag$file), ":", tag$line), paste0("file://", tag$file), params = c(line = tag$line, col = 1) ) message[[1]] <- paste0( "[", link, "]", " @", tag$tag, " ", if (is.null(tag$raw)) ("(automatically generated) "), message[[1]] ) cli::cli_warn(message, ..., .envir = parent.frame()) }
The text was updated successfully, but these errors were encountered:
Add hyperlink to errors
6fd9a18
Fixes #1323
Add hyperlink to errors (#1335)
f4f7274
Successfully merging a pull request may close this issue.
Something like this:
The text was updated successfully, but these errors were encountered: