Pierre-Gilles Levallois
Pierre-Gilles Levallois

Reputation: 4370

Eclipse hang when copying / pasting code

I have a big problem. Eclipse is hanging up when I do any copy/paste with Ctrl+C / Ctrl+V keys.

Is it due to the Eclipse validation code system?

Do I mess something in my Eclipse setting?

Here is my conf :

Upvotes: 64

Views: 42446

Answers (10)

bimeni jovi
bimeni jovi

Reputation: 1

I faced the same issue. Maybe all the above suggestions worked. I would like to point out window -> preferences -> keys and restore Defaults button might help.

Upvotes: -1

king pong
king pong

Reputation: 327

In my case it seemed to be related to remote connection to the PC (working directly on the PC was not freezing it, while working remotely via Remmina it was). My fix was to unbind ALL commands on Ctrl+C (Window > Prefs > General > Keys), including the basic Copy (!!!). The operating system (or Eclipse core functionality) seems to handle clipboard keys correctly by default, no need to bind the additional "Copy" command to it. Now it's not freezing anymore, enjoy!

Upvotes: 1

Pierre-Gilles Levallois
Pierre-Gilles Levallois

Reputation: 4370

I think I have found a beginning of a solution here.

Starting Eclipse with -clean option seems to be better but this not enough. this is because my "workspace building is hanging up on some flash file"

Upvotes: 2

René Link
René Link

Reputation: 51473

I faced the problem when editing java code. Every time I typed CTRL + C the editor freezes for a short period of time.

In my case I only turned of the Go to declaration that is available in textual editors. SeeWindow -> Preferences -> General -> Editors -> Text Editors -> Hyperlinking.

Upvotes: 1

Kris
Kris

Reputation: 61

Just wanted to share my observations here as a pebble in the ocean, I had tried with all most all of the above options but it didn't solve my issues.

Actually, in my case the main culprit was the java file size, as lines of code increased encountering this hanging while copy & paste actions.

So quick workaround which I made to have a temp file for development and once all done, moving the code to respective java file, get me out of this hurdle. (I am a selenium + Java guy, so this workaround worked for me).

Upvotes: 0

DevNull.ar
DevNull.ar

Reputation: 111

I solved this issue with these steps:

  1. Identify which "editor" is causing the problem. I detected that, in my case, the java script editor was the one causing it, but when copy/pasting in a simple text editor, (no high light, no color , no nothing) there was no such problem.

    Note:Eclipse loads the file in different "editor windows/ plugins" depending on the file extension, this is configured in General > Editors > File Associations

  2. As my case was caused by the JavaScript editor, went to Preferences > Java Script > Editor > Typing, and disabled all the "Automatically" boxes. This made the trick.

Upvotes: 11

Andrew Faulkner
Andrew Faulkner

Reputation: 3940

I had the same issue, and was able to solve it by going to: Preferences -> Javascript -> Editor -> Typing -> "When pasting" heading ... then turning "Update imports" off.

That one change on its own completely eliminated it, when I was previously getting hangs of 2 seconds or more on almost every copy or paste.

Upvotes: 29

theblang
theblang

Reputation: 10425

Disabling Hyperlinking fixed this for me. You could also just change the Default modifier key to something other than CTRL if you still want to use hyperlinking.

Go to Window -> Preferences -> General -> Editors -> Text Editors -> Hyperlinking and either uncheck Enable on demand hyperlink style navigation or change Default modifier key.

Upvotes: 121

Luca Davanzo
Luca Davanzo

Reputation: 21528

THE solution!! For me at least.

If CTRL + C works for some editor, not for other, then some plugin settings must have re-affected them to another command.

So you have to go to:

 Window->Preferences->General->Startup and Shutdown

and try to disable, one by one the plugins activated on startup:
in my case, was "Dynamic Languages Toolkit Core UI"

Upvotes: 4

Alessandro Pezzato
Alessandro Pezzato

Reputation: 8822

I solved unchecking all bound to CTRL + C except Copy in Window -> Preferences -> General -> Keys

Upvotes: 4

Related Questions