aboutsummaryrefslogtreecommitdiff
path: root/text-objects.h
diff options
context:
space:
mode:
authorEvan Gates <evan.gates@gmail.com>2020-09-25 11:31:15 -0700
committerMarc André Tanner <mat@brain-dump.org>2020-10-10 10:03:17 +0200
commit25414c4796291e4b20ef72c92df9f08544976cb3 (patch)
treedc455fca9ed99e804b7d1b4fd91d56d531f0f7e8 /text-objects.h
parent7e57c8023dd347eac0fce1188a16de276c47e003 (diff)
downloadvis-25414c4796291e4b20ef72c92df9f08544976cb3.tar.gz
vis-25414c4796291e4b20ef72c92df9f08544976cb3.tar.xz
text: add text_object_find_next/prev
Add two new text-object functions to search forwards/backwards for a string literal (not a regex) with the same signature as text_object_word_find_next/prev. This allows them to be used interchangeably with the word based variant through function pointers.
Diffstat (limited to 'text-objects.h')
-rw-r--r--text-objects.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/text-objects.h b/text-objects.h
index abab46e..9bf13e5 100644
--- a/text-objects.h
+++ b/text-objects.h
@@ -19,6 +19,9 @@ Filerange text_object_word_outer(Text*, size_t pos);
/* find next occurance of `word' (as word not substring) in forward/backward direction */
Filerange text_object_word_find_next(Text*, size_t pos, const char *word);
Filerange text_object_word_find_prev(Text*, size_t pos, const char *word);
+/* find next occurance of a literal string (not regex) in forward/backward direction */
+Filerange text_object_find_next(Text *txt, size_t pos, const char *search);
+Filerange text_object_find_prev(Text *txt, size_t pos, const char *search);
/* same semantics as above but for a longword (i.e. delimited by white spaces) */
Filerange text_object_longword(Text*, size_t pos);
Filerange text_object_longword_outer(Text*, size_t pos);