diff --git a/NEWS.md b/NEWS.md index cc2ab2677..32123455c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,8 @@ # rlang (development version) +* `last_trace()` hyperlinks now use the modern `x-r-run` format (#1678). + + # rlang 1.1.3 * Fix for CRAN checks. diff --git a/R/utils.R b/R/utils.R index 887e81a0e..777404555 100644 --- a/R/utils.R +++ b/R/utils.R @@ -336,7 +336,7 @@ cli_with_whiteline_escapes <- function(x, fn) { style_rlang_run <- function(code) { style_hyperlink( paste0("rlang::", code), - paste0("rstudio:run:rlang::", code) + paste0("x-r-run:rlang::", code) ) }