##// END OF EJS Templates
[qtconsole] carriage-return action matches CR only, not CRLF...
[qtconsole] carriage-return action matches CR only, not CRLF CarriageReturn action introduced in #1089 clears a line in the qtconsole, which means that CRLF line endings would replace whole lines with '\n'. This changes the regex to only match `\r` not followed by `\n` preventing the CR action from firing on CRLF. Test included closes #1111
MinRK -
r5661:814d5b9f
Show More