| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2014-09-08 | Unify variable naming | Marc André Tanner | 2 | -202/+202 | |
| Only textual substitution no functional changes. | |||||
| 2014-09-08 | Use named struct initializers where appropriate | Marc André Tanner | 1 | -14/+6 | |
| 2014-09-08 | Make Home/End keys work in command prompt | Marc André Tanner | 1 | -0/+2 | |
| 2014-09-08 | Fix insertion of newlines | Marc André Tanner | 1 | -1/+1 | |
| 2014-09-08 | Add user prompt infrastructure | Marc André Tanner | 4 | -14/+209 | |
| This is implemented by means of an one line height editor window and a set of custom key bindings. | |||||
| 2014-09-06 | Add visual mode key bindings | Marc André Tanner | 1 | -2/+11 | |
| 2014-09-06 | Add insert mode key bindings | Marc André Tanner | 1 | -7/+55 | |
| 2014-09-05 | Implement movement to column in line | Marc André Tanner | 1 | -0/+14 | |
| 2014-09-05 | Make status window optional | Marc André Tanner | 1 | -6/+10 | |
| This will be used to implement a command prompt window. | |||||
| 2014-09-05 | Cleanup vis.h | Marc André Tanner | 2 | -88/+89 | |
| 2014-09-05 | Fix missuse of cursor instead of call in config.def.h | Marc André Tanner | 1 | -5/+5 | |
| 2014-09-05 | Update nano keybindings to infrastructure changes | Marc André Tanner | 1 | -30/+27 | |
| 2014-09-05 | In visual mode operators should operate on the selected text | Marc André Tanner | 1 | -2/+14 | |
| 2014-09-05 | Remember whether the register content is linewise | Marc André Tanner | 2 | -0/+7 | |
| 2014-09-05 | Add helper function which finds the start of the next line | Marc André Tanner | 2 | -2/+13 | |
| 2014-09-05 | Remove cruft from config.def.h | Marc André Tanner | 1 | -11/+0 | |
| 2014-09-04 | Skip modes with common prefix if it does not match | Marc André Tanner | 3 | -0/+7 | |
| 2014-09-04 | Implement movement to a given line | Marc André Tanner | 4 | -18/+11 | |
| 2014-09-04 | Fix action multiplier | Marc André Tanner | 1 | -2/+4 | |
| 2014-09-04 | Implement to/till movements i.e. 'f', 'F', 't', 'T' | Marc André Tanner | 2 | -0/+42 | |
| 2014-09-04 | Factor out getkey logic | Marc André Tanner | 1 | -27/+30 | |
| 2014-09-04 | text-motion: fix find_char_prev | Marc André Tanner | 1 | -1/+1 | |
| 2014-09-04 | Implement rudimentary mark handling | Marc André Tanner | 3 | -37/+91 | |
| 2014-09-03 | Rudimentary support for copy / paste via registers | Marc André Tanner | 5 | -29/+69 | |
| 2014-09-03 | Enable text objects, introduce operator options | Marc André Tanner | 3 | -23/+114 | |
| 2014-09-03 | Introduce a logical line as text-object | Marc André Tanner | 2 | -0/+14 | |
| 2014-09-03 | Fix cursor placement after delete operation | Marc André Tanner | 1 | -2/+1 | |
| 2014-09-02 | First try at a repeat command i.e. '.' | Marc André Tanner | 1 | -2/+11 | |
| 2014-09-02 | Teach window_cursor_to how to display the end of the file | Marc André Tanner | 1 | -32/+32 | |
| 2014-09-02 | Fix Makefile | Marc André Tanner | 1 | -3/+3 | |
| 2014-09-01 | Refactor frontend code | Marc André Tanner | 9 | -910/+996 | |
| 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 | 5 | -108/+363 | |
| Still very incomplete | |||||
| 2014-08-31 | Expose various text objects with individual functions | Marc André Tanner | 2 | -5/+38 | |
| 2014-08-31 | Add rudimentary register implementation | Marc André Tanner | 2 | -0/+78 | |
| 2014-08-30 | Add trivial text motions to start and end of file | Marc André Tanner | 2 | -0/+11 | |
| 2014-08-30 | Add support for backticks to movement and text object | Marc André Tanner | 2 | -1/+3 | |
| 2014-08-28 | text-objects: add objects delimited by brackets or quotes | Marc André Tanner | 2 | -1/+55 | |
| 2014-08-28 | motion: improve matching of single and double quotes | Marc André Tanner | 1 | -14/+22 | |
| 2014-08-28 | text-object: make word object behave more like in vim | Marc André Tanner | 2 | -6/+8 | |
| 2014-08-28 | text-object: correctly detect word boundries | Marc André Tanner | 1 | -7/+24 | |
| 2014-08-28 | motion: fix movement to previous word end when right before | Marc André Tanner | 1 | -2/+3 | |
| 2014-08-28 | text: fix iterator_char{prev,next} to accept NULL argument | Marc André Tanner | 1 | -2/+4 | |
| 2014-08-28 | motion: add character wise motion | Marc André Tanner | 2 | -0/+15 | |
| 2014-08-28 | Improve text motions | Marc André Tanner | 2 | -12/+45 | |
| 2014-08-25 | Move motion related stuff into own file | Marc André Tanner | 9 | -185/+389 | |
| 2014-08-24 | Add work in progress editor frontend | Marc André Tanner | 8 | -0/+2227 | |
| 2014-08-24 | Add license header | Marc André Tanner | 1 | -0/+15 | |
| 2014-08-23 | Share common macros in util.h | Marc André Tanner | 2 | -7/+8 | |
| 2014-08-23 | text: invalidate line <-> pos mapping upon undo/redo | Marc André Tanner | 1 | -0/+2 | |
| 2014-08-23 | text: redesing mark implementation | Marc André Tanner | 1 | -20/+16 | |
| Previously a mark was a byte offset from the start of the file which required updates whenever a text modification happened before it. Now it is simply a pointer into the underlying (mostly) append only buffer which remains valid throughout the whole life cycle. | |||||
