bbennett-ks opened a new pull request, #638: URL: https://github.com/apache/guacamole-server/pull/638
When using the browser menu (e.g. File and Edit/Paste in Chrome) pasting multiline text to a Guacamole SSH, RDP... session, the newline (LF or CR/LF) is dropped. e.g. ``` line1<LF> line2<LF> line3<LF> ``` becomes: ` line1line2line3` Noticed this in guacd log: `guacd[56695]: DEBUG: Ignoring unknown keysym: 0xFF0A ` It appears the menu paste option for text, in Chrome at least, uses simulated keyboard input: it sends each character as individual key events instead of using the clipboard mechanism. And the LF keysym wasn't handled. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
