aboutsummaryrefslogtreecommitdiff
path: root/vis.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-27 15:22:22 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-27 15:22:22 +0200
commit11044c55e96183816a44a0bdd9a03716b6388c44 (patch)
tree512509e6ad89f9facc47726721a1448d1c742810 /vis.c
parentb0bcb5307becea40247c79d556677c948fb8ff35 (diff)
downloadvis-11044c55e96183816a44a0bdd9a03716b6388c44.tar.gz
vis-11044c55e96183816a44a0bdd9a03716b6388c44.tar.xz
'g_' should be inclusive
Diffstat (limited to 'vis.c')
-rw-r--r--vis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vis.c b/vis.c
index 0bd5037..3dee122 100644
--- a/vis.c
+++ b/vis.c
@@ -270,7 +270,7 @@ static Movement moves[] = {
[MOVE_LINE_PREV] = { .txt = text_line_prev, .type = LINEWISE },
[MOVE_LINE_BEGIN] = { .txt = text_line_begin, .type = LINEWISE },
[MOVE_LINE_START] = { .txt = text_line_start, .type = LINEWISE },
- [MOVE_LINE_FINISH] = { .txt = text_line_finish, .type = LINEWISE },
+ [MOVE_LINE_FINISH] = { .txt = text_line_finish, .type = LINEWISE|INCLUSIVE },
[MOVE_LINE_LASTCHAR] = { .txt = text_line_lastchar, .type = LINEWISE|INCLUSIVE },
[MOVE_LINE_END] = { .txt = text_line_end, .type = LINEWISE },
[MOVE_LINE_NEXT] = { .txt = text_line_next, .type = LINEWISE },