Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to Copy and Paste Texts to/from a stack in Visual Studio?

Ctrl + C can only store a single selected text in clipboard. I need to Copy Multiple Texts from different places and paste them to another Places. Is there any Tool(Add-in) for Visual Studio(2010) to handle that?

like image 972
Mehdi Avatar asked Oct 15 '25 06:10

Mehdi


1 Answers

Actually Visual Studio has a feature called the clipboard ring. Basically, whenever you copy text to the clipboard in Visual Studio, the previously copied text is kept in a history buffer. You can press CTRL+V to paste the text you just copied, or press CTRL+SHIFT+V to cycle through the items you have copied.

So while you can't paste all of the items on the clipboard ring at once, you can copy multiple chunks of text to the clipboard and then paste them one after another.

Tips and Tricks: Clipboard Ring and Toolbox Snippets

like image 53
Josh Avatar answered Oct 16 '25 19:10

Josh