diff options
Diffstat (limited to 'vis-core.h')
| -rw-r--r-- | vis-core.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -65,8 +65,9 @@ typedef struct { /* Motion implementation, takes a cursor postion and returns a LINEWISE = VIS_MOTIONTYPE_LINEWISE, /* should the covered range be extended to whole lines? */ CHARWISE = VIS_MOTIONTYPE_CHARWISE, /* scrolls window content until position is visible */ INCLUSIVE = 1 << 2, /* should new position be included in operator range? */ - IDEMPOTENT = 1 << 3, /* does the returned postion remain the same if called multiple times? */ - JUMP = 1 << 4, + LINEWISE_INCLUSIVE = 1 << 3, /* inclusive, but only if motion is linewise? */ + IDEMPOTENT = 1 << 4, /* does the returned postion remain the same if called multiple times? */ + JUMP = 1 << 5, /* should the resulting position of the motion be recorded in the jump list? */ } type; void *data; } Movement; |
