aboutsummaryrefslogtreecommitdiff
path: root/vis.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2020-12-28 15:17:36 +0100
committerMarc André Tanner <mat@brain-dump.org>2020-12-28 15:17:36 +0100
commitadf65e1dca8d3c0381133be8446eebddf412d772 (patch)
treed15dd7a68c597ca9be6ca92ea363578e501391cc /vis.h
parent0b082239bc60f0a6a3cb743b38a63684652ae649 (diff)
downloadvis-adf65e1dca8d3c0381133be8446eebddf412d772.tar.gz
vis-adf65e1dca8d3c0381133be8446eebddf412d772.tar.xz
vis: implement multiline to/till motions
These are currently not mapped by default but can be enabled by mappings using their virtual key names.
Diffstat (limited to 'vis.h')
-rw-r--r--vis.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/vis.h b/vis.h
index 41fe6ae..b5a27fe 100644
--- a/vis.h
+++ b/vis.h
@@ -491,8 +491,12 @@ enum VisMotion {
VIS_MOVE_PARENTHESIS_START,
VIS_MOVE_PARENTHESIS_END,
VIS_MOVE_BRACKET_MATCH,
+ VIS_MOVE_TO_LEFT,
+ VIS_MOVE_TO_RIGHT,
VIS_MOVE_TO_LINE_LEFT,
VIS_MOVE_TO_LINE_RIGHT,
+ VIS_MOVE_TILL_LEFT,
+ VIS_MOVE_TILL_RIGHT,
VIS_MOVE_TILL_LINE_LEFT,
VIS_MOVE_TILL_LINE_RIGHT,
VIS_MOVE_FILE_BEGIN,