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
Thank you for writing Konsole, I really dig it!
Do you have a newline-character, which I can put into e. g. a Write or Writeline statement? \r\n does not work correctly.
Thx
The text was updated successfully, but these errors were encountered:
this will definitely be added to the next version.
in the meantime you can create an extension method for yourself in the few cases you need it like this
//PSUEDO CODE ... You need to write and test something properly yourself
publicstaticclassConsoleHelper{publicstaticIConsoleWriteLineSpecialChars(thisIConsolecon,stringtext){text.split("`\r\n").ToList().ForEach(line=>con.WriteLine(line));// edit this code further to add support for other special characters you need to support.// remember to test to make sure your implementation works for both \n as well as \n\r}}
Thank you for writing Konsole, I really dig it!
Do you have a newline-character, which I can put into e. g. a Write or Writeline statement? \r\n does not work correctly.
Thx
The text was updated successfully, but these errors were encountered: