How the clipboard works
whynothugo.nl
How the clipboard works
1–10 of 160 posts
Re: How the clipboard works
#2Copy/paste are the biggest neglected operations in computing, considering that they are the only universal mechanism for transferring data between applications that is accessible to end users.
Mobile intents do help somehow, but they are not universal or available on desktop or web environments.
Re: How the clipboard works
#3I wish there was a little more transparency in the clipboard. When I press WinKey+V, Windows 10 only shows me one format but often pastes a different one (obviously) -- would be nice to have the option to allow me to look into the possible formats I can get out.
Re: How the clipboard works
#4Good refresher, nice share. I wish there was a little more transparency in the clipboard. When I press WinKey+V, Windows 10 only shows me one format but often pastes a different one (obviously) -- would be nice to have the option to allow me to look into the possible formats I can get out.
* keep source formatting
* match destination formatting
* text only
Re: How the clipboard works
#5Re: How the clipboard works
#6Good refresher, nice share. I wish there was a little more transparency in the clipboard. When I press WinKey+V, Windows 10 only shows me one format but often pastes a different one (obviously) -- would be nice to have the option to allow me to look into the possible formats I can get out.
I know in Word and maybe other MS products you usually get an option of * keep source formatting * match destination formatting * text only
Re: How the clipboard works
#7Good read. Also checkout https://punit-g7.medium.com/demystifying-clipboard-f96452a49... for a few more detailed cases.
Re: How the clipboard works
#8Re: How the clipboard works
#9The clipboard manager solution seems okay, but copying everything immediately seems like it defeats a lot of the elegance of the design. Perhaps it'd be preferable if the original program held the clipboard until it was about to exit, at which point it would issue a "last call" sort of announcement so that a clipboard manager could optionally "take over" the clipboard. But that wouldn't capture crashes or any app that doesn't send such a signal, so perhaps the aggressive copying is more thorough. But if that's desirable, maybe always copying data to the window manager is the better choice. Presumably Windows is doing this?