diff options
Diffstat (limited to 'text-objects.h')
| -rw-r--r-- | text-objects.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/text-objects.h b/text-objects.h index de8dcfb..de3fdc3 100644 --- a/text-objects.h +++ b/text-objects.h @@ -11,5 +11,8 @@ Filerange text_object_word_boundry(Text*, size_t pos, int (*isboundry)(int)); Filerange text_object_char(Text*, size_t pos, char c); Filerange text_object_sentence(Text*, size_t pos); Filerange text_object_paragraph(Text*, size_t pos); +/* range delimited by either (), {}, [], <>, ", '. the delimiters themself are not + * included in the range */ +Filerange text_object_bracket(Text*, size_t pos, char type); #endif |
