| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2014-09-12 | Restore cursor position after an undo/redo | Marc André Tanner | 4 | -16/+33 | |
| 2014-09-12 | Name modes more consistently | Marc André Tanner | 1 | -35/+40 | |
| 2014-09-12 | Take snapshot when leaving insert/replace mode | Marc André Tanner | 1 | -0/+12 | |
| Make sure we are able to restore text to whatever state was when we left insert / replace mode after an editing operation. | |||||
| 2014-09-12 | Make normal mode command 'x' undoable | Marc André Tanner | 1 | -1/+1 | |
| 2014-09-11 | Be stricter on what commands to accept at the ':'- prompt | Marc André Tanner | 2 | -22/+21 | |
| 2014-09-11 | Fix bug when moving to characters with display width > 1 | Marc André Tanner | 1 | -3/+2 | |
| 2014-09-11 | Add :edit command | Marc André Tanner | 6 | -7/+65 | |
| 2014-09-11 | Remove Ctrl+c for quit, since we now have a command prompt | Marc André Tanner | 2 | -5/+4 | |
| 2014-09-11 | Fix ascii art tree of modes | Marc André Tanner | 1 | -2/+2 | |
| 2014-09-11 | Add normal mode command 'X' | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-11 | Avoid segfault if no previous search has been performed | Marc André Tanner | 1 | -1/+5 | |
| 2014-09-11 | Fix warnings about redefinition of typedefed structs | Marc André Tanner | 2 | -2/+1 | |
| 2014-09-11 | Add/cleanup window commands Ctrl-{n,s,q} | Marc André Tanner | 2 | -5/+19 | |
| 2014-09-11 | Add :qall command | Marc André Tanner | 4 | -6/+22 | |
| 2014-09-11 | On the prompt Ctrl-{B,E} should move the cursor to the begin/end of the line | Marc André Tanner | 1 | -0/+2 | |
| 2014-09-11 | In visual mode 'v' should switch to normal mode | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-11 | Add readline Ctrl+U binding | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-10 | Reindent readline key bindings | Marc André Tanner | 1 | -3/+3 | |
| 2014-09-10 | Clean up normal mode key bindings | Marc André Tanner | 1 | -28/+28 | |
| 2014-09-10 | Add normal mode command 's' | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-10 | Add movement 'W' | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-10 | Add normal mode command 'J' | Marc André Tanner | 2 | -0/+18 | |
| 2014-09-10 | Add normal mode commands 'O' and 'o' | Marc André Tanner | 2 | -0/+10 | |
| 2014-09-10 | Make movements to next / previous line available | Marc André Tanner | 1 | -0/+4 | |
| 2014-09-10 | text-motions: add text_line_prev function | Marc André Tanner | 2 | -2/+17 | |
| 2014-09-10 | text-motions: fix no match case of text_find_char_{next,prev} | Marc André Tanner | 2 | -5/+11 | |
| These functions should return the original position in case no match was found. | |||||
| 2014-09-10 | Add normal command 'Y' as a synonym for 'yy' | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-10 | Add normal command 'S' as asynonym for 'cc' | Marc André Tanner | 2 | -0/+8 | |
| 2014-09-10 | Add movements 'B' and 'E' | Marc André Tanner | 1 | -0/+2 | |
| Notice that we currently do not make a distinction between a WORD and a word. | |||||
| 2014-09-10 | Add normal mode commands 'A', 'C', 'D' and 'I' | Marc André Tanner | 2 | -5/+23 | |
| 2014-09-10 | Add normal mode key binding for 'r' | Marc André Tanner | 2 | -0/+10 | |
| 2014-09-10 | Add a few comments about the subtleties of mode switching | Marc André Tanner | 2 | -1/+8 | |
| 2014-09-10 | Redraw editor content after command execution | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-10 | If text has been created from an empty file, store filename upon first save | Marc André Tanner | 2 | -0/+3 | |
| 2014-09-10 | Keep window focused indication while prompt is shown | Marc André Tanner | 1 | -1/+2 | |
| 2014-09-10 | Fix :q command | Marc André Tanner | 3 | -18/+24 | |
| 2014-09-10 | Add license header | Marc André Tanner | 3 | -0/+45 | |
| 2014-09-10 | Simplify drawing of the window statusbar | Marc André Tanner | 4 | -23/+17 | |
| 2014-09-10 | Simplify cursor color management | Marc André Tanner | 4 | -114/+72 | |
| 2014-09-10 | Add comments where appropriate | Marc André Tanner | 14 | -123/+272 | |
| 2014-09-09 | Cleanup header files | Marc André Tanner | 7 | -32/+41 | |
| 2014-09-09 | Remove trailing whitespaces (sed 's/[ \t]*$//') | Marc André Tanner | 9 | -21/+21 | |
| 2014-09-09 | Rename vis.[ch] to editor.[ch] and main.c to vis.c | Marc André Tanner | 11 | -1582/+1587 | |
| 2014-09-09 | Unclutter config.def.h by moving stuff to main.c | Marc André Tanner | 2 | -652/+710 | |
| 2014-09-09 | Add window borders in vertical layout | Marc André Tanner | 1 | -2/+4 | |
| 2014-09-09 | Open all files given on command line | Marc André Tanner | 1 | -2/+6 | |
| 2014-09-09 | Add infrastructure for commands | Marc André Tanner | 2 | -2/+160 | |
| 2014-09-09 | Separate different types of text objects | Marc André Tanner | 1 | -34/+46 | |
| These now have common prefixes which means the whole block can be skipped over if it doesn't match. | |||||
| 2014-09-09 | Add all 26 marks | Marc André Tanner | 2 | -5/+94 | |
| 2014-09-09 | Add all 26 registers | Marc André Tanner | 2 | -5/+83 | |
