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
Copying multiple lines with the mouse and pasting elsewhere joined everything into one line. winless was writing bare \n between selected lines to the clipboard, but Windows' CF_UNICODETEXT format is conventionally CRLF-terminated — some paste consumers (confirmed with pasting into a WSL bash prompt) drop or mishandle a lone LF. winless now writes proper CRLF line endings.
Occasional "Copy failed: Access is denied."OpenClipboard had no retry, so a transient clipboard holder (Windows' own clipboard history, PowerToys, other clipboard managers) could make a copy fail outright. winless now retries briefly (up to ~200ms) before giving up.