aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2015-10-25 21:36:23 +0100
committerMarc André Tanner <mat@brain-dump.org>2015-10-25 22:46:43 +0100
commitafe666ee88c7706954d6d6bea70ac18ecfd20312 (patch)
treec9dcf33af16260afefbea3183f01a23fffe8ca27 /config.def.h
parent81bae7262b21b7f19bfaf0de4499a56372ef2a20 (diff)
downloadvis-afe666ee88c7706954d6d6bea70ac18ecfd20312.tar.gz
vis-afe666ee88c7706954d6d6bea70ac18ecfd20312.tar.xz
vis: clean up mark handling
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h
index e299835..9d049fb 100644
--- a/config.def.h
+++ b/config.def.h
@@ -524,12 +524,12 @@ static KeyAction vis_action[] = {
[VIS_ACTION_MARK_GOTO] = {
"mark-goto",
"Goto the position of the given mark",
- mark,
+ mark_motion, { .i = MOVE_MARK }
},
[VIS_ACTION_MARK_GOTO_LINE] = {
"mark-goto-line",
"Goto first non-blank character of the line containing the given mark",
- mark_line,
+ mark_motion, { .i = MOVE_MARK_LINE }
},
[VIS_ACTION_REDRAW] = {
"editor-redraw",