The clipboard is an imperative tool. I use it extensively when developing, especially when refactoring. Visual Studio sometimes makes it a bit challenging tho. For instance, with no text selected, Visual Studio will copy the entire line to the clipboard - even if the line is nothing but whitespace - this drives me nuts. Many-a-time I will copy a chunk of code onto the clipboard, do some cleaning, then paste the code into its new slot, only to find that my copied code has been replaced with whitespace. This is followed by a series of "undo"-ing until I recover my original code.
So I decided to write a little Add-In to address this issue. It prevents whitespace from being copied to the clipboard. More importantly, it manages your clipboard history, so you can go back and recover data you copied onto the clipboard hours ago.
Additionally, you can query your history simply by entering text in the "Search" field. This will filter your history down to items that match. Once you've found your data, double-click and it will be moved onto the clipboard.
i need that
thank