Open holgerbrandl opened 5 years ago
foo = print("hello") works
foo = print("hello")
print("hello") fails because it unquotes the strings with \"
print("hello")
\"
It's unclear why this happens. Is it plugin logic or some escaping rule in cmder?
Same with devtools::source_url("https://raw.githubusercontent.com/holgerbrandl/datautils/v1.51/R/core_commons.R") which works with a leading space character, but escapes the double quote else.
devtools::source_url("https://raw.githubusercontent.com/holgerbrandl/datautils/v1.51/R/core_commons.R")
foo = print("hello")
worksprint("hello")
fails because it unquotes the strings with\"
It's unclear why this happens. Is it plugin logic or some escaping rule in cmder?