Major fixes:
- ChunkIterator is now bidirectional - LineIterator is now also bidirectional - Undo/redo history operations - Replace operation - Range based api functions - And more minor bug fixes
This commit is contained in:
@@ -7,8 +7,8 @@ struct OriginalBuffer : Buffer {
|
||||
char *buf;
|
||||
uint32_t len;
|
||||
|
||||
// TODO: replace with file io or even lazy loaded file io for large files/logs etc. later.
|
||||
OriginalBuffer(char *buf, uint32_t len);
|
||||
// Add 2 modes here, normal and lazy, lazy copies the file to a safe location and uses mmap.
|
||||
OriginalBuffer(std::string path);
|
||||
|
||||
~OriginalBuffer();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user