diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2018-02-27 16:17:55 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2018-02-27 18:57:40 +0100 |
| commit | 0a3a82cd7d90abd206ce2cf9151d3cbed01a20af (patch) | |
| tree | d8cddd0bc0389bec1a602b6eed83ee53da144b71 /vis-text-objects.c | |
| parent | c0832d6fc7eace1c6da9867d8b327bf62c968098 (diff) | |
| download | vis-0a3a82cd7d90abd206ce2cf9151d3cbed01a20af.tar.gz vis-0a3a82cd7d90abd206ce2cf9151d3cbed01a20af.tar.xz | |
vis: implement normal/outer paragraph text object
Diffstat (limited to 'vis-text-objects.c')
| -rw-r--r-- | vis-text-objects.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vis-text-objects.c b/vis-text-objects.c index 446ac6d..43679f0 100644 --- a/vis-text-objects.c +++ b/vis-text-objects.c @@ -114,6 +114,9 @@ const TextObject vis_textobjects[] = { [VIS_TEXTOBJECT_PARAGRAPH] = { .txt = text_object_paragraph, }, + [VIS_TEXTOBJECT_PARAGRAPH_OUTER] = { + .txt = text_object_paragraph_outer, + }, [VIS_TEXTOBJECT_OUTER_SQUARE_BRACKET] = { .txt = text_object_square_bracket, .type = TEXTOBJECT_DELIMITED_OUTER, |
