We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no_wrap()
1 parent 47c988c commit 119c46fCopy full SHA for 119c46f
1 file changed
R/utils.R
@@ -47,6 +47,8 @@ is_rstudio_running <- function() {
47
48
# Suppress cli wrapping
49
no_wrap <- function(x) {
50
+ x <- gsub("{", "{{", x, fixed = TRUE)
51
+ x <- gsub("}", "}}", x, fixed = TRUE)
52
x <- gsub(" ", "\u00a0", x, fixed = TRUE)
53
x <- gsub("\n", "\f", x, fixed = TRUE)
54
x
0 commit comments