vis: fix # and * motions to only match words
commit495cc3d53cdb7182c98827f8aa0ad2726167daaf
authorMarc André Tanner <mat@brain-dump.org>
Tue, 19 Jan 2016 19:48:44 +0000 (19 20:48 +0100)
committerMarc André Tanner <mat@brain-dump.org>
Tue, 19 Jan 2016 19:48:44 +0000 (19 20:48 +0100)
tree5444016289d2e8f72a37af70baa6d81ef8b9300e
parent7a97daac539cb03416cb7b95a811c2aef1348402
vis: fix # and * motions to only match words

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.
vis-motions.c