aboutsummaryrefslogtreecommitdiffstats
path: root/src/rope.rs
AgeCommit message (Expand)AuthorFilesLines
2024-01-11Rewrite the entire thing.Rose Hogenson1-309/+250
2024-01-07Avoid an extra copy.Rose Hogenson1-11/+7
2024-01-06Use a b-tree for the rope.Rose Hogenson1-96/+242
2024-01-06Fix some bugs with long lines.Rose Hogenson1-36/+1
2024-01-06Implement backspace.Rose Hogenson1-1/+1
2024-01-06Fix input issues when scrolling quickly.Rose Hogenson1-2/+1
2024-01-06Support inserting newline.Rose Hogenson1-5/+18
2024-01-06Allow scrolling up and down.Rose Hogenson1-2/+2
2024-01-06Truncate long lines.Rose Hogenson1-0/+17
2024-01-06Use more idiomatic error handling.Rose Hogenson1-56/+8
2024-01-06Fix unicode handling.Rose Hogenson1-8/+78
2024-01-05Clean up the rope code.Rose Hogenson1-200/+133
2023-12-29Allow saving the file with CTRL-S.Rose Hogenson1-1/+19
2023-12-29Support inserting text.Rose Hogenson1-0/+54
2023-12-29Keep track of cursor position.Rose Hogenson1-21/+107
2023-12-27Add some TODOs for important enhancements.Rose Hogenson1-0/+2
2023-12-27Print each line separately.Rose Hogenson1-26/+16
2023-12-27Print the first n lines of the file.Rose Hogenson1-4/+81
2023-12-27Remove unnecessary length field.Rose Hogenson1-11/+9
2023-12-27Fix a bug in how unicode is printed.Rose Hogenson1-22/+27
2023-12-26Add the basic rope.Rose Hogenson1-0/+96