diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2015-11-28 16:18:53 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2015-11-28 20:09:14 +0100 |
| commit | de9fa14094e1a97769af014d4c23aabfab145d87 (patch) | |
| tree | 0d19cc46456d993f86d4bf2a59a3f2810b055d89 /vis.h | |
| parent | b09c2afba792282de34ed8865fd2a4ca53a48d9d (diff) | |
| download | vis-de9fa14094e1a97769af014d4c23aabfab145d87.tar.gz vis-de9fa14094e1a97769af014d4c23aabfab145d87.tar.xz | |
vis: add cmd argument to VIS_OP_FILTER
Diffstat (limited to 'vis.h')
| -rw-r--r-- | vis.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -168,8 +168,12 @@ enum VisOperator { * otherwise waits until a range is determinded i.e. * - a motion is provided (see vis_motion) * - a text object is provided (vis_textobject) + * + * the expected varying arguments are as follows: + * + * - VIS_OP_FILTER a char pointer referring to the command to run */ -bool vis_operator(Vis*, enum VisOperator); +bool vis_operator(Vis*, enum VisOperator, ...); enum VisMotion { VIS_MOVE_LINE_DOWN, |
