views:

1042

answers:

2

I'm using Eclipse as an IDE for Ruby/Rails development (using Aptana plugin). I have one very, very large file that encompasses an initial data load of several thousand rows of data. When this file is open, everything grinds to a halt (on both Windows and Linux), presumably because Eclipse is tied up trying to parse and format/syntax-check the file. Typing in a single word takes upwards of a minute to complete.

Is there a way for me flag this file in such a way that Eclipse will skip it for format/syntax checking?

+1  A: 

You can try to put all your files except the large one into a working set, and then make that working set the default one.

Jacob
+1  A: 

In the Navigator, right-click on the file and selecting Open With -> Text Editor. This will cause the file to be opened as plain text every time it is accessed.

Rob Hruska