| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2014-09-17 | Implement left shift operator | Marc André Tanner | 1 | -0/+29 | |
| 2014-09-17 | Implement right shift operator | Marc André Tanner | 1 | -0/+25 | |
| 2014-09-16 | This fixes warning with latest glibc (>= 2.19.90), which deprecated _BSD_SOURCE | Christian Hesse | 1 | -0/+1 | |
| warning: _BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE | |||||
| 2014-09-16 | Fix compilation on OpenBSD | Gregor Best | 1 | -0/+2 | |
| Signed-off-by: Gregor Best <gbe@unobtanium.de> | |||||
| 2014-09-16 | Implement CTRL-{U,D,E,Y} in normal mode | Marc André Tanner | 1 | -6/+38 | |
| 2014-09-14 | Display current mode in window statusbar | Marc André Tanner | 1 | -4/+2 | |
| For now just display the modes which start with '-'. I want to keep the descriptive names of the other modes available for debugging purposes. | |||||
| 2014-09-13 | Rename OP_PASTE to OP_PUT | Marc André Tanner | 1 | -4/+4 | |
| 2014-09-13 | Introduce some helper functions dealing with Filerange | Marc André Tanner | 1 | -6/+5 | |
| 2014-09-13 | Rename text_insert_raw to text_insert | Marc André Tanner | 1 | -1/+1 | |
| 2014-09-13 | Introduce and use EPOS instead of (size_t)-1 | Marc André Tanner | 1 | -6/+6 | |
| 2014-09-13 | Fix 'G' movement to end of file | Marc André Tanner | 1 | -1/+1 | |
| action.count is 1 by default. notice that this breaks 1G which should move to the first line / start of file. | |||||
| 2014-09-13 | Add movements 'H', 'M', 'L' | Marc André Tanner | 1 | -0/+24 | |
| H moves to the n-th window line from top M moves to the middle window line L moves to the n-th window line from bottom | |||||
| 2014-09-13 | In normal mode 'r' should also replace new lines | Marc André Tanner | 1 | -1/+2 | |
| 2014-09-12 | Display a few error messages where appropriate | Marc André Tanner | 1 | -5/+19 | |
| 2014-09-12 | Add a global keypress hook before any keybindings are checked | Marc André Tanner | 1 | -0/+5 | |
| If the registered function returns false, completely ignore the key. | |||||
| 2014-09-12 | Rename text_filename to text_filename_get | Marc André Tanner | 1 | -1/+1 | |
| 2014-09-12 | Restore cursor position after an undo/redo | Marc André Tanner | 1 | -2/+10 | |
| 2014-09-11 | Be stricter on what commands to accept at the ':'- prompt | Marc André Tanner | 1 | -6/+8 | |
| 2014-09-11 | Add :edit command | Marc André Tanner | 1 | -7/+31 | |
| 2014-09-11 | Remove Ctrl+c for quit, since we now have a command prompt | Marc André Tanner | 1 | -2/+3 | |
| 2014-09-11 | Add/cleanup window commands Ctrl-{n,s,q} | Marc André Tanner | 1 | -4/+16 | |
| 2014-09-11 | Add :qall command | Marc André Tanner | 1 | -1/+15 | |
| 2014-09-10 | Add normal mode command 'J' | Marc André Tanner | 1 | -0/+17 | |
| 2014-09-10 | Add normal mode commands 'O' and 'o' | Marc André Tanner | 1 | -0/+8 | |
| 2014-09-10 | Make movements to next / previous line available | Marc André Tanner | 1 | -0/+4 | |
| 2014-09-10 | Add normal command 'S' as asynonym for 'cc' | Marc André Tanner | 1 | -0/+7 | |
| 2014-09-10 | Add normal mode commands 'A', 'C', 'D' and 'I' | Marc André Tanner | 1 | -4/+18 | |
| 2014-09-10 | Add normal mode key binding for 'r' | Marc André Tanner | 1 | -0/+9 | |
| 2014-09-10 | Add a few comments about the subtleties of mode switching | Marc André Tanner | 1 | -1/+6 | |
| 2014-09-10 | Redraw editor content after command execution | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-10 | Fix :q command | Marc André Tanner | 1 | -11/+16 | |
| 2014-09-10 | Add license header | Marc André Tanner | 1 | -0/+15 | |
| 2014-09-10 | Simplify drawing of the window statusbar | Marc André Tanner | 1 | -1/+1 | |
| 2014-09-10 | Add comments where appropriate | Marc André Tanner | 1 | -55/+128 | |
| 2014-09-09 | Cleanup header files | Marc André Tanner | 1 | -0/+2 | |
| 2014-09-09 | Remove trailing whitespaces (sed 's/[ \t]*$//') | Marc André Tanner | 1 | -4/+4 | |
| 2014-09-09 | Rename vis.[ch] to editor.[ch] and main.c to vis.c | Marc André Tanner | 1 | -391/+910 | |
| 2014-09-09 | Add window borders in vertical layout | Marc André Tanner | 1 | -2/+4 | |
| 2014-09-09 | Detect whether a file is already opened when splitting a window | Marc André Tanner | 1 | -3/+13 | |
| 2014-09-09 | Fix a few memory leaks | Marc André Tanner | 1 | -14/+44 | |
| 2014-09-08 | Improve undo/redo | Marc André Tanner | 1 | -18/+0 | |
| Currently a snapshot is taken whenever an operator is completed or a certain idle time in either insert or replace mode is detected. | |||||
| 2014-09-08 | Hook up search as a movement | Marc André Tanner | 1 | -51/+0 | |
| 2014-09-08 | Add user prompt infrastructure | Marc André Tanner | 1 | -0/+126 | |
| This is implemented by means of an one line height editor window and a set of custom key bindings. | |||||
| 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-04 | Implement movement to a given line | Marc André Tanner | 1 | -6/+0 | |
| 2014-09-04 | Implement rudimentary mark handling | Marc André Tanner | 1 | -15/+0 | |
| 2014-09-03 | Rudimentary support for copy / paste via registers | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-01 | Refactor frontend code | Marc André Tanner | 1 | -175/+341 | |
| 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 | -33/+3 | |
| Still very incomplete | |||||
| 2014-08-24 | Add work in progress editor frontend | Marc André Tanner | 1 | -0/+264 | |
