Mac Text Editor For Huge Files

Active5 years, 9 months ago
  1. Mac Text Editor For Huge Files To Send
  2. Mac Text Editor For Huge Files Net
  3. Mac Text Editor For Coding
  4. Mac Text Editor For Huge Files
  5. Mac Text Editor For Large Files

‎Read reviews, compare customer ratings, see screenshots and learn more about TextEditor - Text Editor & File Manager. Download TextEditor - Text Editor & File Manager for macOS 10.7 or later and enjoy it on your Mac. The RecordEditor is a Data File editor for Flat Files (delimited and fixed field position). It supports Unix / PC / Legacy (e.g. Mainframe) file formats, both Text and binary files. The Editor uses a Record-Layout description to format the files. The GVim editor is very useful for editing programs and other plain text files. All commands are given with normal keyboard characters, so those who can type with ten fingers can work very fast.

  • I am Vim fan for most of my editing purposes.
  • But these days when I have to open huge file ~1-2 gigs, its is vert slow to load and perform operations
  • What are the other ways I can edit such huge files efficiently
daydreamerdaydreamer
3703 gold badges7 silver badges12 bronze badges

migrated from stackoverflow.comDec 2 '11 at 18:41

This question came from our site for professional and enthusiast programmers.

6 Answers

vim you can

:set binary

first.

or use hexedit. as https://stackoverflow.com/questions/699785/edit-very-large-sql-dump-text-file-on-linux

Community
TinyfoolTinyfool

Set

You can also use directory/undodir to put swapfiles and undofiles in another location

sehesehe

This article explains what you can do to Vim itself to reduce the overhead associated with opening a large file.

MetaEdMetaEd

Look here: https://askubuntu.com/questions/28847/text-editor-to-open-4-3-gb-plain-text-file

  • Divide the file in parts : split -b 53750k <your-file>
  • Edit sigle parts with vim ( I don't like it but it works fast here )
  • Merge the parts cat xa* > <your-file>

Done :)

Sorry but free editor larks good support for big files ( cannot find a reason for that )

p.s.
learn Vim is not so difficult:http://yannesposito.com/Scratch/en/blog/Learn-Vim-Progressively/

Community
FrancescoFrancesco
Mac Text Editor For Huge Files

See my answer here (not vim specific).

What kind of huge file do you want to edit?

Community
Basile StarynkevitchBasile Starynkevitch

Try joe. I just used it to edit a ~5G SQL dump file. It took about a minute to open the file and a few minutes to save it, with very little use of swap (on a system with 4G RAM).

sierrasdetandilsierrasdetandil

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

Active10 months ago

What are your recommendation for opening large text files on OS X? I found both BBEdit and Textmate to be struggling in this department.

Jason SalazFiles
17.1k16 gold badges83 silver badges136 bronze badges
nandananda
9473 gold badges12 silver badges21 bronze badges

10 Answers

I'm using HexFiend to work with a 60 GB text file and it works great (apparently it can handle files as large as 118 GB).

PaulCapestanyPaulCapestany

I found MacVim pretty good at opening large files.

There's even a plugin to speed it up, if the file is really large.

(If you don't want to compile it yourself, you can download a DMG to install it pre-built.)

Loïc WolffLoïc Wolff
13.5k4 gold badges40 silver badges62 bronze badges

BBEdit is pretty much the standard for opening large text files on a Mac. I've opened some good-sized files with it, and BBEdit didn't even break a sweat.

How large of a file are you talking about? And how much RAM does your Mac have (both installed and free)?

Edited to add…

Editor

Bare Bones released BBEdit 9.6 today, and according to the Release Notes1 (under Changes):

It is now possible to open files significantly larger than before; the ceiling isn't unlimited, but it is no longer limited by the previously extant constraints in the OS.

Sounds to me like it's worth upgrading (free for anyone with BBEdit 9.x) and trying again.

1 If you've never read a Bare Bones release notice before, you should. Even if you have no interest in BBEdit. Even if you have no interest in Bare Bones. Even if you have no interest in text editors in general. They're that good. Yes, really. Iä! Iä! Pnoies fhtagn!

DoriDori
6,9781 gold badge28 silver badges40 bronze badges

Mac Text Editor For Huge Files To Send

Check Sublime Text 2 out. It is one of the best out there.

bassplayer7
12.7k13 gold badges48 silver badges71 bronze badges

Mac Text Editor For Huge Files Net

mencinamencina

TextWrangler is a great tool for opening editing and saving large files. I wouldn't recommend if for copying and pasting large amounts of content though. Use it if you don't want to have to deal with the vi interface/commands. Like Loic mentioned, MacVim is a great app if you're more familar with vi.

chrislarsonchrislarson

If you are reading the file only, use the 'less' command. You can navigate and search through the file like vi, but much faster and without the nasty 'line too long' type problems. For working with big production logs, this is an invaluable tool.

Brad Schneider

If you are dealing with files over 2 GBs I recommend 010 Editor. It won't load the entire file in memory which means you can use it to open files larger than your available RAM and opening times will be much shorter (took about 20 seconds to open a 7GB file).

Mihai DamianMihai Damian

http://code.google.com/p/macvim/ worked with a 1 gig filesearching file took about 1 min

Mac Text Editor For Coding

user53081user53081

For me, where BBEdit choked on 750MB, UltraEdit (not free) worked satisfactorily fast.

MastaBabaMastaBaba

My first choice is SlickEdit. It looks a bit old fashioned, but I have seen no other editor that deals with large files (even GBs of text) that fast, and still giving a ton of features.

GhostCatGhostCat

Mac Text Editor For Huge Files

You must log in to answer this question.

protected by nohillsideNov 6 '18 at 12:30

Thank you for your interest in this question. Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?

Mac Text Editor For Large Files

Not the answer you're looking for? Browse other questions tagged macossoftware-recommendationtext-editor .