aboutsummaryrefslogtreecommitdiff
path: root/vis-core.h
diff options
context:
space:
mode:
Diffstat (limited to 'vis-core.h')
-rw-r--r--vis-core.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/vis-core.h b/vis-core.h
index 292584b..982cda3 100644
--- a/vis-core.h
+++ b/vis-core.h
@@ -209,12 +209,18 @@ enum VisEvents {
bool vis_event_emit(Vis*, enum VisEvents, ...);
+typedef struct {
+ char name;
+ const char *help;
+} MarkDef;
+
/** stuff used by multiple of the vis-* files */
extern Mode vis_modes[VIS_MODE_INVALID];
extern const Movement vis_motions[VIS_MOVE_INVALID];
extern const Operator vis_operators[VIS_OP_INVALID];
extern const TextObject vis_textobjects[VIS_TEXTOBJECT_INVALID];
+extern const MarkDef vis_marks[VIS_MARK_a];
void macro_operator_stop(Vis *vis);
void macro_operator_record(Vis *vis);