diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2017-02-15 08:25:23 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2017-02-15 08:27:59 +0100 |
| commit | 749e6f9a50d5570d40c2c5f1ebc3eaceb32776da (patch) | |
| tree | a6d6d0dafc4fdb4a8f5bea2e6a9c2ea72263a51d /vis-motions.c | |
| parent | d266238916882b4082b3ddbb71941aea5e7d20ef (diff) | |
| download | vis-749e6f9a50d5570d40c2c5f1ebc3eaceb32776da.tar.gz vis-749e6f9a50d5570d40c2c5f1ebc3eaceb32776da.tar.xz | |
vis: remove motion and text objects related to C functions
These do not really belong into the editor core. If desired they
could be implemented in Lua instead.
Diffstat (limited to 'vis-motions.c')
| -rw-r--r-- | vis-motions.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/vis-motions.c b/vis-motions.c index 02b687d..0a44555 100644 --- a/vis-motions.c +++ b/vis-motions.c @@ -472,22 +472,6 @@ const Movement vis_motions[] = { .txt = text_paragraph_next, .type = LINEWISE|JUMP, }, - [VIS_MOVE_FUNCTION_START_PREV] = { - .txt = text_function_start_prev, - .type = LINEWISE|JUMP, - }, - [VIS_MOVE_FUNCTION_START_NEXT] = { - .txt = text_function_start_next, - .type = LINEWISE|JUMP, - }, - [VIS_MOVE_FUNCTION_END_PREV] = { - .txt = text_function_end_prev, - .type = LINEWISE|JUMP, - }, - [VIS_MOVE_FUNCTION_END_NEXT] = { - .txt = text_function_end_next, - .type = LINEWISE|JUMP, - }, [VIS_MOVE_BLOCK_START] = { .txt = text_block_start, .type = JUMP, |
