diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2016-01-14 21:21:49 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2016-01-14 21:21:49 +0100 |
| commit | 76ba2807fbd627437332ee7b7f49bf28ec570be9 (patch) | |
| tree | 11df56fe7e6838afa30d503ab594727aea73ed92 /vis-motions.c | |
| parent | 6890bdee214b13ed3916375b4871022a010423ec (diff) | |
| download | vis-76ba2807fbd627437332ee7b7f49bf28ec570be9.tar.gz vis-76ba2807fbd627437332ee7b7f49bf28ec570be9.tar.xz | |
vis: s/ops/vis_operators/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 4cd700f..c0f7ab7 100644 --- a/vis-motions.c +++ b/vis-motions.c @@ -174,11 +174,11 @@ bool vis_motion(Vis *vis, enum VisMotion motion, ...) { switch (motion) { case VIS_MOVE_WORD_START_NEXT: - if (vis->action.op == &ops[VIS_OP_CHANGE]) + if (vis->action.op == &vis_operators[VIS_OP_CHANGE]) motion = VIS_MOVE_WORD_END_NEXT; break; case VIS_MOVE_LONGWORD_START_NEXT: - if (vis->action.op == &ops[VIS_OP_CHANGE]) + if (vis->action.op == &vis_operators[VIS_OP_CHANGE]) motion = VIS_MOVE_LONGWORD_END_NEXT; break; case VIS_MOVE_SEARCH_FORWARD: |
