diff options
Diffstat (limited to 'text-motions.h')
| -rw-r--r-- | text-motions.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/text-motions.h b/text-motions.h index 4afa56b..e182e2e 100644 --- a/text-motions.h +++ b/text-motions.h @@ -39,10 +39,10 @@ size_t text_line_next(Text*, size_t pos); * space. TODO?: An empty line is also considered to be a word. * This is equivalant to a WORD in vim terminology. */ -size_t text_word_end_next(Text*, size_t pos); -size_t text_word_end_prev(Text*, size_t pos); -size_t text_word_start_next(Text*, size_t pos); -size_t text_word_start_prev(Text*, size_t pos); +size_t text_longword_end_next(Text*, size_t pos); +size_t text_longword_end_prev(Text*, size_t pos); +size_t text_longword_start_next(Text*, size_t pos); +size_t text_longword_start_prev(Text*, size_t pos); /* * These are variants of the above with the additional possibility to implement * a custom word detection logic. Can be used to implment the equivalent of a |
