aboutsummaryrefslogtreecommitdiff
path: root/vis.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2020-12-28 14:40:26 +0100
committerMarc André Tanner <mat@brain-dump.org>2020-12-28 14:51:59 +0100
commit0b082239bc60f0a6a3cb743b38a63684652ae649 (patch)
tree0195fad9b9f4588601fd4980e4c11c1acf14064e /vis.h
parent41b235584feeb492d082cdc7bbb735cc49b08180 (diff)
downloadvis-0b082239bc60f0a6a3cb743b38a63684652ae649.tar.gz
vis-0b082239bc60f0a6a3cb743b38a63684652ae649.tar.xz
vis: rename to/till motion internals
This renames the functions and constants implementing the to/till motions. The new names should indicate that matches are only returned within the current line (not globally). Apart from the changed virtual key/command name this contains no functional changes.
Diffstat (limited to 'vis.h')
-rw-r--r--vis.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/vis.h b/vis.h
index c76baaf..41fe6ae 100644
--- a/vis.h
+++ b/vis.h
@@ -491,10 +491,10 @@ enum VisMotion {
VIS_MOVE_PARENTHESIS_START,
VIS_MOVE_PARENTHESIS_END,
VIS_MOVE_BRACKET_MATCH,
- VIS_MOVE_LEFT_TO,
- VIS_MOVE_RIGHT_TO,
- VIS_MOVE_LEFT_TILL,
- VIS_MOVE_RIGHT_TILL,
+ VIS_MOVE_TO_LINE_LEFT,
+ VIS_MOVE_TO_LINE_RIGHT,
+ VIS_MOVE_TILL_LINE_LEFT,
+ VIS_MOVE_TILL_LINE_RIGHT,
VIS_MOVE_FILE_BEGIN,
VIS_MOVE_FILE_END,
VIS_MOVE_SEARCH_WORD_FORWARD,