| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2014-10-19 | <End> goes past end in insert mode | Stephen Paul Weber | 1 | -0/+1 | |
| Just like in vim | |||||
| 2014-10-19 | Toggle case operator | Stephen Paul Weber | 1 | -0/+1 | |
| In vim, :set tildeop to get this behaviour | |||||
| 2014-10-17 | Make editor usable as a filter: echo foo | vis - | cat | Marc André Tanner | 1 | -1/+1 | |
| The terminal output is by default redirected to stderr, making stdout available for communications purposes. If a file is "opened" from stdin (i.e. vis is given '-' as argument) and a subsequent write without a filename is performed as in ":wq" the output is written to stdout. | |||||
| 2014-10-07 | Add syntax rules for Haskell | Stephen Paul Weber | 1 | -4/+64 | |
| 2014-09-30 | Improve some syntax highlighting rules | Marc André Tanner | 1 | -4/+4 | |
| 2014-09-30 | Make text objects available in visual mode | Marc André Tanner | 1 | -16/+27 | |
| 2014-09-30 | Clean up visual mode handling | Marc André Tanner | 1 | -4/+6 | |
| 2014-09-30 | Unbreak 'J' in normal mode | Marc André Tanner | 1 | -1/+1 | |
| 2014-09-30 | Allow to supend the editor via CTRL-Z | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-30 | Promote join to an operator | Marc André Tanner | 1 | -1/+2 | |
| Make 'J' work on a selection in visual mode. | |||||
| 2014-09-28 | Make '.' repeat last insertion | Marc André Tanner | 1 | -0/+3 | |
| 2014-09-27 | Add insert mode key bindings CTRL-X+CTRL-{E,Y} | Marc André Tanner | 1 | -0/+2 | |
| 2014-09-27 | Hook up shifting in insert mode via CTRL-{D,T} | Marc André Tanner | 1 | -0/+2 | |
| 2014-09-27 | Implement 'zt', 'zz', 'zb' | Marc André Tanner | 1 | -0/+3 | |
| In particular 'zb' might not work if there are wrapped lines involved. | |||||
| 2014-09-27 | Implement '#' | Marc André Tanner | 1 | -1/+2 | |
| 2014-09-27 | Add text objects for word (lowercase) variant | Marc André Tanner | 1 | -2/+4 | |
| 2014-09-27 | Implement :bdelete | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-27 | Implement proper distinction between word and WORD | Marc André Tanner | 1 | -4/+4 | |
| 2014-09-25 | Realign a few code blocks, no functional changes | Marc André Tanner | 1 | -103/+103 | |
| 2014-09-25 | Add infrastructure for word (lowercase) motions | Marc André Tanner | 1 | -0/+1 | |
| This unfortunately doesn't work as is which is why it is not actually hooked up to key bindings. | |||||
| 2014-09-25 | Perform some renames in preparation for different word types | Marc André Tanner | 1 | -14/+14 | |
| 2014-09-25 | Exit command prompt if last character is deleted | Marc André Tanner | 1 | -0/+1 | |
| 2014-09-25 | Accept :se as abbreviation for :set | ale rimoldi | 1 | -1/+1 | |
| 2014-09-25 | Implement '*' | Marc André Tanner | 1 | -0/+1 | |
| This still has a couple of problems: - it uses the regular expression search (because 'n' and 'N' should operate on the same search term) - the word should be deliminited not only by spaces but also by special symbols. this should be fixed once the word/WORD distinction gets implemented | |||||
| 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. | |||||
