diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2017-01-10 20:57:55 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2017-01-10 22:18:24 +0100 |
| commit | 68a899b8faf83cc7c0f00def991acb28dc6d7135 (patch) | |
| tree | 136912a0dbe8338c1e7a93af565b0940a5d49e20 /vis-core.h | |
| parent | 329d0980c79b14987cee43c70b489a5a6a09c6aa (diff) | |
| download | vis-68a899b8faf83cc7c0f00def991acb28dc6d7135.tar.gz vis-68a899b8faf83cc7c0f00def991acb28dc6d7135.tar.xz | |
vis: add valid marks to :help output
Diffstat (limited to 'vis-core.h')
| -rw-r--r-- | vis-core.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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); |
