diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2020-12-28 14:40:26 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2020-12-28 14:51:59 +0100 |
| commit | 0b082239bc60f0a6a3cb743b38a63684652ae649 (patch) | |
| tree | 0195fad9b9f4588601fd4980e4c11c1acf14064e /vis.h | |
| parent | 41b235584feeb492d082cdc7bbb735cc49b08180 (diff) | |
| download | vis-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.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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, |
