Oddbean new post about | logout
 There's a way to debug the yank/paste actions on gossip? 
 I can't think of how.  Gossip uses egui, and it never supported unix-style pastes (like middle-button paste). Only CTRL-V worked. It has been like that since day-1.  Can you verify that CTRL-V does not paste for you? 
 CRTL-X Works.

But CRTL+V, or right's mouse button not works.

The "paste action" only work when a given "Paste button" is clicked.

Maybe  | Arch | Egui interaction issue...🥺 
 I was able to catch an clipboard error during paste action using `RUST_LOG=debug`.

With this, a issue was created on repo (didnt paste the link from clipboard, typed every letter  😅): https://github.com/mikedilger/gossip/issues/617 
 To debug, as posted by @qlrd, run the program with `RUST_LOG="debug"` or single out the clipboard with `RUST_LOG="info,egui_winit::clipboard=debug"`.  
 Had some results with `WAYLAND_DEBUG=1 RUST_LOG="info,egui_winit::clipboard=debug" gossip |& grep data`, but unable to interpret them according https://gitlab.gnome.org/GNOME/mutter/-/issues/1250