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
text.Replace("\\r\\n",$"\r\n{sci.LineDelimiter}");// ORIG: $"\r\n{indent}" (???) <-- Unexpected Behavior: the pre-cursor text (code in the given line) also inserted into the next line
35
+
text.Replace("\\r\\n",$"\r\n{indent}");
36
36
// literal carriage return
37
-
text.Replace("\\r",$"\r{sci.LineDelimiter}");// ORIG: $"\r{indent}" <-- See above
37
+
text.Replace("\\r",$"\r{indent}");
38
38
// document-specific EOL
39
-
text.Replace("\\n",$"{sci.LineDelimiter}");// ORIG: $"{sci.LineDelimiter}{indent}" <-- See above
0 commit comments