ClipMate is great too
Hain-plugin-clipboard: Replay clipboard history in Windows with fuzzy search
11–18 of 18 posts
Re: Hain-plugin-clipboard: Replay clipboard history in Windows with fuzzy search
#12> Future work > • Support unicode It's 2016. Virtually every operating system and programming language in use supports Unicode. How is it still so hard to support it (especially in this case where the data being copied should not matter at all to the actual routines doing the save/restore). Am I missing something fundamental here?
It's also polling the clipboard on a timer instead of using clipboard change notifications, which has some relatively obvious implications for power efficiency on laptops, along with the ability for it to miss history entries. This is also a very dangerous behavior for applications that add virtual clipboard data - clipboard data is not guaranteed to be resident, so by trying to capture it as text you may be performing an RPC to the application that put the data on the clipboard and asking it to produce text for you. If the text lives across the network on another machine (this can happen :-D) you may be waiting a while.
Re: Hain-plugin-clipboard: Replay clipboard history in Windows with fuzzy search
#13> Future work > • Support unicode It's 2016. Virtually every operating system and programming language in use supports Unicode. How is it still so hard to support it (especially in this case where the data being copied should not matter at all to the actual routines doing the save/restore). Am I missing something fundamental here?
Re: Hain-plugin-clipboard: Replay clipboard history in Windows with fuzzy search
#14> Future work > • Support unicode It's 2016. Virtually every operating system and programming language in use supports Unicode. How is it still so hard to support it (especially in this case where the data being copied should not matter at all to the actual routines doing the save/restore). Am I missing something fundamental here?
The problem is that they wrote this in JS/node so it's using some sort of horrible bodged hack that interacts with the clipboard using ancient ASCIItext-only compatibility clipboard APIs. It's also polling the clipboard on a timer instead of using clipboard change notifications, which has some relatively obvious implications for power efficiency on laptops, along with the ability for it to miss history entries. This…
I guess the best way to ease this concern will be to make the interval variable. Polling is often the only way to access clipboard data (it's that way on OS X, by the way.)
Regarding RPC / complex data: This does not happen. Only simple text in immediate memory is captured.
Re: Hain-plugin-clipboard: Replay clipboard history in Windows with fuzzy search
#15Polling seems like a bad choice when APIs like AddClipboardFormatListener exist.
Re: Hain-plugin-clipboard: Replay clipboard history in Windows with fuzzy search
#16Watch-Clipboard has been part of my PowerGIL Powershell module[0] for about a month, it checks your clipboard 10 times a second and writes it to the Powershell window when your clipboard changes.
Re: Hain-plugin-clipboard: Replay clipboard history in Windows with fuzzy search
#17Re: Hain-plugin-clipboard: Replay clipboard history in Windows with fuzzy search
#18I've been using ClipX ( http://bluemars.org/clipx/ ) for years now. It's search and UI isn't that sexy, but it does a wonderful job of keeping track of the text and images placed on the clipboard. I especially enjoy it's ability to show images inline in the context menu.