| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2014-09-13 | Rename OP_PASTE to OP_PUT | Marc André Tanner | 1 | -1/+1 | |
| 2014-09-13 | Add movements 'H', 'M', 'L' | Marc André Tanner | 1 | -0/+3 | |
| 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-12 | Use the new global keypress hook to hide user messages | Marc André Tanner | 1 | -3/+20 | |
| 2014-09-12 | Rename text_filename to text_filename_get | Marc André Tanner | 1 | -1/+1 | |
| 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 | 1 | -16/+13 | |
| 2014-09-11 | Add :edit command | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-11 | Remove Ctrl+c for quit, since we now have a command prompt | Marc André Tanner | 1 | -3/+1 | |
| 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 | Add/cleanup window commands Ctrl-{n,s,q} | Marc André Tanner | 1 | -1/+3 | |
| 2014-09-11 | Add :qall command | Marc André Tanner | 1 | -0/+1 | |
| 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 | 1 | -0/+1 | |
| 2014-09-10 | Add normal mode commands 'O' and 'o' | Marc André Tanner | 1 | -0/+2 | |
| 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 | 1 | -0/+1 | |
| 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 | 1 | -1/+5 | |
| 2014-09-10 | Add normal mode key binding for 'r' | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-10 | Add a few comments about the subtleties of mode switching | Marc André Tanner | 1 | -0/+2 | |
| 2014-09-10 | Keep window focused indication while prompt is shown | Marc André Tanner | 1 | -1/+2 | |
| 2014-09-10 | Simplify drawing of the window statusbar | Marc André Tanner | 1 | -11/+11 | |
| 2014-09-10 | Add comments where appropriate | Marc André Tanner | 1 | -21/+53 | |
| 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 | -12/+12 | |
| 2014-09-09 | Unclutter config.def.h by moving stuff to main.c | Marc André Tanner | 1 | -647/+22 | |
| 2014-09-09 | Add infrastructure for commands | Marc André Tanner | 1 | -2/+150 | |
| 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 | 1 | -3/+72 | |
| 2014-09-09 | Add all 26 registers | Marc André Tanner | 1 | -4/+61 | |
| 2014-09-09 | Fix a few memory leaks | Marc André Tanner | 1 | -5/+2 | |
| 2014-09-09 | Change mode input prototype | Marc André Tanner | 1 | -6/+3 | |
| 2014-09-08 | Improve undo/redo | Marc André Tanner | 1 | -4/+21 | |
| 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 | -7/+37 | |
| 2014-09-08 | Fix repeat command | Marc André Tanner | 1 | -1/+2 | |
| Some movements depend on a global action, therefore restore it when repeating an action. | |||||
| 2014-09-08 | Zero can be both a movement and part of a multiplier | Marc André Tanner | 1 | -1/+8 | |
| 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 | 1 | -12/+65 | |
| 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 | |
