diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2016-01-14 21:24:19 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2016-01-14 21:24:19 +0100 |
| commit | 9a72fab35bb74467601638ebfe61a8641f4006a3 (patch) | |
| tree | 67f515c2b0df59b8a142738a18b5fb08317aef24 /vis-motions.c | |
| parent | 76ba2807fbd627437332ee7b7f49bf28ec570be9 (diff) | |
| download | vis-9a72fab35bb74467601638ebfe61a8641f4006a3.tar.gz vis-9a72fab35bb74467601638ebfe61a8641f4006a3.tar.xz | |
vis: s/moves/vis_motions/g
Diffstat (limited to 'vis-motions.c')
| -rw-r--r-- | vis-motions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vis-motions.c b/vis-motions.c index c0f7ab7..2ee6f60 100644 --- a/vis-motions.c +++ b/vis-motions.c @@ -245,7 +245,7 @@ bool vis_motion(Vis *vis, enum VisMotion motion, ...) { break; } - vis->action.movement = &moves[motion]; + vis->action.movement = &vis_motions[motion]; va_end(ap); action_do(vis, &vis->action); return true; @@ -254,7 +254,7 @@ err: return false; } -Movement moves[] = { +Movement vis_motions[] = { [VIS_MOVE_LINE_UP] = { .cur = view_line_up, .type = LINEWISE }, [VIS_MOVE_LINE_DOWN] = { .cur = view_line_down, .type = LINEWISE }, [VIS_MOVE_SCREEN_LINE_UP] = { .cur = view_screenline_up, }, |
