corentin-soriano commented on PR #512: URL: https://github.com/apache/guacamole-server/pull/512#issuecomment-2074228952
We must keep this existing logic : - first row = start_col to $ - middle rows = ^ to $ - last row = ^ to end_col With `guac_terminal_clipboard_append_row(terminal, row, start_col, end_col);` for each row, we risk having a rectangular selection of this type :  We need to keep this selection format here :  However, I noticed that if we select a row that has exactly the same number of columns as the display, it will be missing a \n : Example :  Content of clipboard : ``` [root@vm01 ~]# echo -e "eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee\ntest\ntest2" eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeetest test2 ``` This case is very rare but can exist. -- 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: dev-unsubscr...@guacamole.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org