One thing is how big files your editor can edit theoretically.
But another thing is, is it fast enough to realistically edit that file.
Most editors use the easy way and simply load the whole file in memory.
This means that you can not edit files larger than the largest free memory block.
This gets even worse if the editor converts ASCII file into Unicode, which doubles the size.
With editors like this, just opening the file may take several minutes.
But even if you can load the file, any editing operations may be so slow that you really can not do anything.
For editing huge files, VEDIT is the best choice. It is marketed as the fastest editor on Earth, and it is probably true.
In addition, VEDIT uses very little of memory and does not create huge tmp files no matter how big files you are editing.
The standard (32-bit) version of VEDIT can edit files up to 2 GB (but you can edit larger files by using the built-in splitter function).
VEDIT Pro64 can directly handle files of any size.
UltraEdit is OK, too, but it is not as fast as VEDIT and you may need to change configuration and sacrifice backup and undo for editing large files.
I just opened (copy of) my Outlook .pst file (297 MB) on VEDIT. Opening the file took approximately 0.1 seconds!
Searching for a string that was found near the end of file took 8.0 sec in normal mode and 1.1 sec in read-only mode.
Inserting and deleting characters were instantenous, as was undo. Saving the file took 11 seconds.
Opening the same file to Ultraedit took 9.8 sec in normal mode and about 1.0 sec if tmp files were disabled.
Searching took 11.5 sec (using read-only mode did not have effect on this).
Inserting and deleting characters were instantenous, but undo a single character insert took 26 seconds.
Saving the file took 16 seconds.
I tried to open the file in Notepad, but it crashed (probably because the file is binary). Opening a 92 MB text file took 3 minutes.
Attempt to load the file on Eclipse default editor caused error "out of java heap space". The same happened even with the 92 MB file.
For more information about many text editors, see:
Wikipedia: Comparison of text editors