| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2014-09-25 | Make '$' move to the last character of a line | Marc André Tanner | 1 | -1/+1 | |
| It is an inclusive movement, thus 'd$' works as expected. | |||||
| 2014-09-24 | Implement 'ZZ' and 'ZQ' | Marc André Tanner | 1 | -0/+2 | |
| 2014-09-24 | Implement window related keys (CTRL-W ...) in terms of ':'-commands | Marc André Tanner | 1 | -2/+3 | |
| 2014-09-24 | Implement :new and :vnew | Marc André Tanner | 1 | -0/+2 | |
| 2014-09-24 | <num>gg should go to <num> line | Marc André Tanner | 1 | -2/+2 | |
| 2014-09-24 | Implement 'g0', 'gm', 'g$' | Marc André Tanner | 1 | -0/+3 | |
| 2014-09-24 | Rename MOVE_LINE_{UP,DOWN} to MOVE_SCREEN_LINE_{UP,DOWN} | Marc André Tanner | 1 | -10/+10 | |
| No functional change | |||||
| 2014-09-24 | Implement 'gU' and 'gu' | Marc André Tanner | 1 | -0/+2 | |
| This obviously only works for ascii characters. | |||||
| 2014-09-24 | Handle filenames with spaces | Marc André Tanner | 1 | -14/+14 | |
| Before :w foo bar would create 2 files whereas now 1 file named "foo bar" will be created. Longterm such ambigious command arguments should be given surrounded with quotes. | |||||
| 2014-09-24 | Implement :saveas command | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-23 | Implement 'P', fix 'p' | Marc André Tanner | 1 | -1/+2 | |
| This should also make 'xp' work as expected i.e. to swap characters. | |||||
| 2014-09-23 | Implement append in insert mode 'a' | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-23 | Implement linewise visual mode | Marc André Tanner | 1 | -6/+37 | |
| 2014-09-22 | Add support for the '<', '>' marks | Marc André Tanner | 1 | -0/+4 | |
| 2014-09-22 | Make idle timeout configurable per mode | Marc André Tanner | 1 | -0/+2 | |
| 2014-09-20 | Revert some multiline syntax definitions | Marc André Tanner | 1 | -5/+5 | |
| Since we do not color content before the visible area, these rules work better for now. | |||||
| 2014-09-19 | Improve syntax highlighting | Marc André Tanner | 1 | -65/+75 | |
| 2014-09-19 | Implement expand tab functionality, make tabwidth configurable | Marc André Tanner | 1 | -0/+2 | |
| If expandtab is enabled then inserted tabs are replaced by tabwidth amount of spaces. Both settings apply to all windows files and can be changed via: :set tabwidth n # where 1 <= n <= 8 :set expandtab (1|yes|true)|(0|no|false) | |||||
| 2014-09-18 | Ignore tab key in command prompt for now | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-17 | Implement left shift operator | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-17 | Implement right shift operator | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-16 | Fix scrolling direction of CTRL-{F,B} | Marc André Tanner | 1 | -2/+2 | |
| 2014-09-16 | Implement CTRL-{U,D,E,Y} in normal mode | Marc André Tanner | 1 | -8/+12 | |
| 2014-09-16 | Import syntax rules from sandy | Marc André Tanner | 1 | -23/+179 | |
| 2014-09-15 | More efficient syntax highlighting, first match wins | Marc André Tanner | 1 | -22/+40 | |
| 2014-09-14 | Display current mode in window statusbar | Marc André Tanner | 1 | -7/+12 | |
| 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 | -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 | |
