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
A Unicode line separator character is copied in place of the \nthat was sent.
Steps to reproduce
Select, and copy, a message with json body a\nb.
Paste into the github new issue form, it becomes ab (without newline).
Paste into nano, it becomes a b (space without newline).
Paste into gvim, it becomes a, followed by an arrow symbol, b.
printf '%s' '<paste here>' | hexdump -C shows that e2 80 a8 (which apparently is UTF-8 for the Unicode "LS Line Separator" \u2028) is copied in place of the usual Unix newline 0aASCII line feed.
Version information
Quaternion 0.0.95.1 on Fedora 35
Quaternion 0.0.9.5 on Debian 11
The text was updated successfully, but these errors were encountered:
Description
A Unicode line separator character is copied in place of the
\n
that was sent.Steps to reproduce
a\nb
.ab
(without newline).a b
(space without newline).a
, followed by an arrow symbol,b
.printf '%s' '<paste here>' | hexdump -C
shows thate2 80 a8
(which apparently is UTF-8 for the Unicode "LS Line Separator"\u2028
) is copied in place of the usual Unix newline0a
ASCII line feed.Version information
Quaternion 0.0.95.1 on Fedora 35
Quaternion 0.0.9.5 on Debian 11
The text was updated successfully, but these errors were encountered: