vote up 3 vote down star

Does anyone have any recommendations for a programmer's editor that can cope with large files on Mac OS X? By large I mean hundreds of megabytes. TextMate doesn't cut it.

flag

3  
Do you need interactive editing? Since a file that large will sort of exceed what a person's brain can handle, perhaps you could just pull chunks out of it and deal with those? Or use sed/perl/python/whatever to apply appropriate changes to a stream, and then feed the file in? – Jay Kominek Jun 4 at 20:28
That's a very good point. It's actually an XML file and I just want to get an idea of its structure. – John Topley Jun 4 at 20:42
Vim also does folding in many languages, not sure if it supports XML though. Something to look into :-) – Topher Fangio Jun 5 at 13:53

9 Answers

vote up 10 vote down check

Have you tried Vim? It's the only editor I use :-)

link|flag
If Vim can truly handle a file hundreds of megabytes in size, I tip my hat to it. I know emacs chokes on enormously large files. – Adam Rosenfield Jun 4 at 20:29
I use it on very large log files quite often. It only loads what it needs to. Now, doing some fun data manipulation on every line may take a while ;-) – Topher Fangio Jun 4 at 20:31
Yes it can and search and replace is amazingly fast. – Ludwig Weinzierl Jun 4 at 20:44
Vim worked like a charm for me so thanks for the suggestion. BBEdit was choking on only a 78 MB file and VIM opened it in seconds :) – Katy Oct 27 at 15:38
@Katy Glad it helped! – Topher Fangio Oct 27 at 16:46
vote up 4 vote down

If you just want to have an idea of structure, how about browsing with more or less?

link|flag
Very good advice: if you only need to read the content, less is even more efficient than vi. – Arthur Reutenauer Nov 8 at 21:38
vote up 3 vote down

I have used gvim for files larger than 1 GB of NASTRAN output. gvim handles large files very well. In fact that was the main reason I switched from Emacs to vim.

Emacs is a great editor but it can handle files only as large as 128 MB, at least the 32-bit version. If you decide to use Emacs I recommend to configure it to turn syntax highlighting off for large files.

Another way to deal with large files those days was heavy usage of head, tail and split.

link|flag
vote up 2 vote down

BBEdit, that old standby, is famous for handling really large files with aplomb (or, at least, it was back in the pre-TextMate era). There's a free version, TextWranger; I assume it's based on the same core and should still work.

link|flag
I tried TextWrangler and it choked on the file unfortunately. – John Topley Jun 4 at 20:47
vote up 1 vote down

Definitely vim is the answer. Check out the macvim, the mac version.

link|flag
vote up 0 vote down

emacs, naturally, at least a 64 bit build (you can do that on OS X now, right?)

But also, these are surely generated files. Do you really need to interact with them all at once?

link|flag
As far as I know, Emacs can only handle up to 128 MB. Not sure about 64 versions. – Ludwig Weinzierl Jun 4 at 20:35
yes to 128mb limit on 32. I should double check this about 64 bit builds on OS X, as it is funny about 64 bit in some ways – simon Jun 4 at 20:37
vote up 0 vote down

Crisp claims the ability to edit files of "8GB or more", but I haven't tried it.

link|flag
vote up 0 vote down

HexFiend is designed to read files of any size, but you'll need to work using fixed-column character wrapping and no newline detection.

link|flag
vote up 0 vote down

Vim has already been recommended. If you're using vim you might want to also use the LargeFile plugin (by the inimitable Charles "Dr Chip" Campbell), which automatically disables various features of vim in the interests of speed for files over 100Mb (at the default setting).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.