| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2014-09-13 | Introduce and use EPOS instead of (size_t)-1 | Marc André Tanner | 1 | -1/+1 | |
| 2014-09-12 | Add facility to display a message to the user | Marc André Tanner | 1 | -1/+28 | |
| 2014-09-12 | Fix loading of not yet existing files | Marc André Tanner | 1 | -1/+4 | |
| 2014-09-12 | Rename text_filename to text_filename_get | Marc André Tanner | 1 | -2/+2 | |
| 2014-09-12 | Restore cursor position after an undo/redo | Marc André Tanner | 1 | -1/+2 | |
| 2014-09-11 | Add :edit command | Marc André Tanner | 1 | -0/+23 | |
| 2014-09-11 | Add :qall command | Marc André Tanner | 1 | -4/+5 | |
| 2014-09-10 | Fix :q command | Marc André Tanner | 1 | -6/+8 | |
| 2014-09-10 | Simplify drawing of the window statusbar | Marc André Tanner | 1 | -7/+3 | |
| 2014-09-10 | Simplify cursor color management | Marc André Tanner | 1 | -1/+71 | |
| 2014-09-09 | Remove trailing whitespaces (sed 's/[ \t]*$//') | Marc André Tanner | 1 | -2/+2 | |
| 2014-09-09 | Rename vis.[ch] to editor.[ch] and main.c to vis.c | Marc André Tanner | 1 | -0/+483 | |
| 2014-09-01 | Refactor frontend code | Marc André Tanner | 1 | -1169/+0 | |
| window.[ch] now contains a somewhat generic editor window which is then enhanced in vis.[ch] with a statusbar. | |||||
| 2014-08-31 | First part of a vi like frontend | Marc André Tanner | 1 | -0/+15 | |
| Still very incomplete | |||||
| 2014-08-25 | Move motion related stuff into own file | Marc André Tanner | 1 | -178/+27 | |
| 2014-08-24 | Add work in progress editor frontend | Marc André Tanner | 1 | -0/+1305 | |
| 2014-08-14 | Rename files editor.[ch] -> text.[ch] | Marc André Tanner | 1 | -1094/+0 | |
| 2014-08-14 | Change 'namespace' Editor -> Text | Marc André Tanner | 1 | -91/+91 | |
| 2014-08-13 | Add search functionality | Marc André Tanner | 1 | -0/+81 | |
| 2014-08-13 | Add support for file marks | Marc André Tanner | 1 | -0/+18 | |
| 2014-08-07 | Add function to query line-numer <-> byte offset mapping | Marc André Tanner | 1 | -3/+113 | |
| 2014-08-02 | Further improve iterator API | Marc André Tanner | 1 | -22/+56 | |
| - iterator_get now returns the correct piece - add utf8 aware methods to move by a character in either direction | |||||
| 2014-08-01 | Improve iterator API | Marc André Tanner | 1 | -45/+86 | |
| 2014-07-22 | Reindent comments | Marc André Tanner | 1 | -8/+12 | |
| 2014-07-22 | Perform argument validation | Marc André Tanner | 1 | -4/+5 | |
| 2014-07-22 | Rename content => data | Marc André Tanner | 1 | -41/+41 | |
| 2014-07-22 | API cleanup | Marc André Tanner | 1 | -23/+27 | |
| Add editor_{insert,replace}_raw and const modifiers where appropriate. | |||||
| 2014-07-22 | Rename Editor::pos -> Editor::len | Marc André Tanner | 1 | -15/+15 | |
| 2014-07-22 | Refactor editor_save | Marc André Tanner | 1 | -10/+7 | |
| 2014-07-22 | Add prototypes | Marc André Tanner | 1 | -1/+15 | |
| 2014-07-22 | Remove redundant function | Marc André Tanner | 1 | -18/+5 | |
| 2014-07-22 | Remove unnecessary special case for inserting into an empty document | Marc André Tanner | 1 | -21/+7 | |
| 2014-07-22 | Fix bugs in caching layer | Marc André Tanner | 1 | -8/+27 | |
| Thw lenght of the whole text (ed->size) also has to be updated. Also do not allocate changes if the operations are performed in the cache. | |||||
| 2014-07-22 | Add some more comments | Marc André Tanner | 1 | -2/+26 | |
| 2014-07-21 | Introduce cache layer | Marc André Tanner | 1 | -27/+108 | |
| If multiple consecutive modifications happen to lie within the same piece perform the operations "in place". In particular no new pieces will be allocated if the changes occur at the end of the most recently modified piece. In this case the piece is simply extended. However changes in the middle of a piece involve memove(3) calls which might hurt performance. Since no new pieces are created the changes can't be undone on an individual basis. The frontend should therefore call 'editor_snapshot' at appropriate times inorder to invalidate the cache. | |||||
| 2014-07-21 | Add iterator functions to walk through text | Marc André Tanner | 1 | -0/+51 | |
| 2014-07-21 | Add comments regarding deletion | Marc André Tanner | 1 | -1/+16 | |
| 2014-07-17 | Add some ascii art to illustrate insertion | Marc André Tanner | 1 | -0/+28 | |
| 2014-07-17 | Implement modification detection | Marc André Tanner | 1 | -3/+6 | |
| 2014-07-17 | Remove trailing white spaces | Marc André Tanner | 1 | -11/+11 | |
| 2014-07-17 | Document data structures | Marc André Tanner | 1 | -28/+52 | |
| 2014-07-17 | Throw away redo history once a new action is performed | Marc André Tanner | 1 | -7/+27 | |
| Keep all pieces in a global double linked list such that individual pieces can be removed. | |||||
| 2014-07-17 | Simplify + add prototypes | Marc André Tanner | 1 | -5/+17 | |
| 2014-07-16 | Introduce buffer holding text | Marc André Tanner | 1 | -29/+142 | |
| 2014-07-16 | Implement replacement/overwrite | Marc André Tanner | 1 | -0/+8 | |
| 2014-07-16 | Implement deletion | Marc André Tanner | 1 | -1/+69 | |
| 2014-07-15 | Implement insertion | Marc André Tanner | 1 | -38/+78 | |
| 2014-07-15 | Inital import | Marc André Tanner | 1 | -0/+311 | |
| Still far from useable | |||||
