summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2024-01-30Syntax highlight is a goAlbert Cervin
2024-01-15Completion reworkAlbert Cervin
- Add support for building with clang Also fix some annoying bugs: - Visual column was wrong when using tabs - Add shift-tab for inserting an actual tab - Fix minibuffer sometimes having dot above it
2023-10-19big buffer/buffer_view reworkAlbert Cervin
A buffer is only the text and the corresponding operation. A buffer view holds information about scroll, dot and mark positions. One way to think about it is that a buffer is stateless whereas a buffer view is stateful.
2023-05-24TOML settings parsingAlbert Cervin
Currently a very simplistic parser that do not support all TOML datatypes. Supported are: - Tables - Strings (incl multiline) - Integers - Inline Tables - Booleans - Comments
2023-05-11Fix languagesAlbert Cervin
- Enumerate windows on screen. - Build with optimizations.
2023-05-01Implement window handlingAlbert Cervin
Also implement searching. fix undo boundaries when it checked for other save point, it used && instead of == which caused it to overwrite other types. Fix bytes vs chars bug in text_get_region
2023-04-06failed to update tests on last oneAlbert Cervin
2023-03-17Implement support for languagesAlbert Cervin
Uses the settings system to implement a small system for per-language settings.
2023-02-25Introduce vec and hashmapAlbert Cervin
Convenience macros for a hashmap and a growable vector.
2023-02-21Implement support for settingsAlbert Cervin
Settings are a flat "dictionary" containing paths to settings on the format: <category>.<sub-category>.<setting>.
2023-02-15Implement undoAlbert Cervin
This also fixes a bunch of valgrind errors
2023-02-11Fix text to work more like GNU EmacsAlbert Cervin
This means that empty lines are not added until they have content.
2023-01-31Implement mark and copy-pasteAlbert Cervin
Also fix some memory leaks
2023-01-29More tests and documentationAlbert Cervin
Also improve find file and switch buffer a bit. Implement word backward/forward.
2023-01-26More tests and documentationAlbert Cervin
Also, split out platform-specific parts and add mocks for tests.
2023-01-23Add more tests and documentationAlbert Cervin
Both doxygen and man page
2022-12-21wip render reworkAlbert Cervin
2022-12-17Some text fixesAlbert Cervin
2022-12-15Make minibuffer use an actual bufferAlbert Cervin
Also fix some issues with inserting multibyte chars.
2022-11-25Rework delete logic a bitAlbert Cervin
It now handles a range of characters and correctly merges lines. It is not the most slick implementation but it works as a start.
2022-11-16🎉 And so it beginsAlbert Cervin