diff options
| -rw-r--r-- | vis-motions.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/vis-motions.c b/vis-motions.c index 9b4a8ab..f8baf1d 100644 --- a/vis-motions.c +++ b/vis-motions.c @@ -386,16 +386,19 @@ const Movement vis_motions[] = { }, [VIS_MOVE_LINE_BEGIN] = { .txt = text_line_begin, + .type = IDEMPOTENT, }, [VIS_MOVE_LINE_START] = { .txt = text_line_start, + .type = IDEMPOTENT, }, [VIS_MOVE_LINE_FINISH] = { .txt = text_line_finish, - .type = INCLUSIVE, + .type = INCLUSIVE|IDEMPOTENT, }, [VIS_MOVE_LINE_END] = { .txt = text_line_end, + .type = IDEMPOTENT, }, [VIS_MOVE_LINE_NEXT] = { .txt = text_line_next, |
