aboutsummaryrefslogtreecommitdiff
path: root/text-motions.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-25 18:09:43 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-25 18:19:02 +0200
commit334e7f278f18889582c51bd9aceb469e716cddea (patch)
tree6d3df455c9bddb4ae71a3851f9d3d3d2a82cbc47 /text-motions.h
parent4e60bd39282651d83d7b431239225b1371419b21 (diff)
downloadvis-334e7f278f18889582c51bd9aceb469e716cddea.tar.gz
vis-334e7f278f18889582c51bd9aceb469e716cddea.tar.xz
Perform some renames in preparation for different word types
Diffstat (limited to 'text-motions.h')
-rw-r--r--text-motions.h8
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