aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2015-10-21 16:58:37 +0200
committerMarc André Tanner <mat@brain-dump.org>2015-10-22 19:48:40 +0200
commitc9fd8bd23b633d254940c77e40bb280e2332b579 (patch)
tree342870e44f2d1bd5cdf17e546234d100ccd93c28 /config.def.h
parent9f82217b491687f1b4ed1a4ee2ce84e8d90fc00a (diff)
downloadvis-c9fd8bd23b633d254940c77e40bb280e2332b579.tar.gz
vis-c9fd8bd23b633d254940c77e40bb280e2332b579.tar.xz
vis: pass editor instance to keyboard action functions
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 4a79f98..3bc6a18 100644
--- a/config.def.h
+++ b/config.def.h
@@ -1281,7 +1281,7 @@ static void vis_mode_visual_line_enter(Vis *vis, Mode *old) {
view_cursors_selection_start(c);
vis_modes[VIS_MODE_OPERATOR].parent = &vis_modes[VIS_MODE_TEXTOBJ];
}
- movement(NULL, &(const Arg){ .i = MOVE_LINE_END });
+ movement(vis, NULL, &(const Arg){ .i = MOVE_LINE_END });
}
static void vis_mode_visual_line_leave(Vis *vis, Mode *new) {