From 334e7f278f18889582c51bd9aceb469e716cddea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Thu, 25 Sep 2014 18:09:43 +0200 Subject: Perform some renames in preparation for different word types --- text-motions.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'text-motions.h') 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 -- cgit v1.2.3