diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2014-09-27 15:22:22 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2014-09-27 15:22:22 +0200 |
| commit | 11044c55e96183816a44a0bdd9a03716b6388c44 (patch) | |
| tree | 512509e6ad89f9facc47726721a1448d1c742810 | |
| parent | b0bcb5307becea40247c79d556677c948fb8ff35 (diff) | |
| download | vis-11044c55e96183816a44a0bdd9a03716b6388c44.tar.gz vis-11044c55e96183816a44a0bdd9a03716b6388c44.tar.xz | |
'g_' should be inclusive
| -rw-r--r-- | vis.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 }, |
