| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2016-01-27 | vis: let % move to next special char if not already there | Marc André Tanner | 1 | -1/+22 | |
| 2016-01-20 | Fix to/till movements | Markus Teich | 1 | -2/+6 | |
| Some corner cases allowed to move between lines with the to/till movements. The change in find_prev serves two purposes. When searching for a string which the cursor is already above the match, this match is returned (pos += len). Secondly there was a failure when searching for strings with len == 1 which lead to `matched == 0` which was always true, even if the string was not found, therefore leading to a wrong return value. | |||||
| 2016-01-19 | vis: fix # and * motions to only match words | Marc André Tanner | 1 | -9/+12 | |
| Word matching is currently implemented by using the \< and \> anchors of the regex(3) library part of libc. Another option would have been to use the text_object_word_find_{next,prev} functions from text-objects.c. The used search term is currently not added to the search history. Based on a patch by Markus Teich. | |||||
| 2016-01-18 | vis: tweak count handling of till motions 't' and 'T' | Marc André Tanner | 1 | -2/+4 | |
| The behaviour when already in front of a match is deliberately different from vim. Based on a patch from Markus Teich. | |||||
| 2016-01-15 | vis: sentence motions are not linewise | Marc André Tanner | 1 | -2/+2 | |
| Close #141 | |||||
| 2016-01-14 | vis: s/moves/vis_motions/g | Marc André Tanner | 1 | -2/+2 | |
| 2016-01-14 | vis: s/ops/vis_operators/g | Marc André Tanner | 1 | -2/+2 | |
| 2016-01-14 | vis: move motion releated functions to corresponding file | Marc André Tanner | 1 | -0/+91 | |
| 2016-01-10 | Simplify code by using text_bytes_alloc0 | Marc André Tanner | 1 | -7/+1 | |
| 2015-11-08 | vis: remove regex based syntax highlighting | Marc André Tanner | 1 | -0/+1 | |
| 2015-11-08 | vis: more comments and cleanups | Marc André Tanner | 1 | -5/+5 | |
| 2015-11-07 | vis: prefix enum VisMotion values with VIS_ | Marc André Tanner | 1 | -100/+61 | |
| 2015-11-07 | vis: move motions to separate file | Marc André Tanner | 1 | -0/+269 | |
