Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio clipboard problem

In all versions of Visual Studio I have used so far I have a problem with copy/paste operation. After using the application for a while(and in many cases very short while) when I copy some words or lines and paste, nothing gets pasted. Then I click ctrl+c multiple times and then the content gets copied and I can successfully paste.

This has caused me to develop a habit of always hitting ctrl+c multiple times to copy some content.

Any way to correct this?

like image 532
kaivalya Avatar asked Apr 10 '09 10:04

kaivalya


2 Answers

Each time you delete a line with "CTRL-L" your clipboard can get messed up.

I use a small program, ClipX to track my clipboard. If Visual Studio deletes the item from my clipboard, I can still paste the entry.

like image 52
Carra Avatar answered Nov 10 '22 08:11

Carra


This can also be caused due to usage of shift + delete (it actually copies that line and deleting at the same time)

shift+delete is very handy to delete often times.

like image 42
SevDer Avatar answered Nov 10 '22 08:11

SevDer