TSynEdit has no build in for this. It relies on the OS swapping.
It is also restricted by widely using Integer as index (eg. for line number)
It also will not be very efficient with swapping, as there are some actions that need to scan the whole file:
- length of the longest line. (needed for horizontal scrollbar)
done once at the start, then cached
if cached line is edited => full scan.
- certain highlighter ops. e.g. starting a comment at the top of file, rescans to end of file, if no comment close is found (yes can be improved... some day)
It would be possible to replace parts of synedit, to deal with such files, but it might be quite some work. Ignoring HL, it might just be the textbuffer and its wrappers.