diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2017-01-19 10:20:50 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2017-01-19 10:20:50 +0100 |
| commit | f7e4a00d933afdc434111b308f0ab3e3e5f4511c (patch) | |
| tree | 68fb44d5e3b8c373de44973bf5184fb0ee26bcc2 /main.c | |
| parent | 3dadb4bd66214359bc70bb0e5249a0a64e08e849 (diff) | |
| download | vis-f7e4a00d933afdc434111b308f0ab3e3e5f4511c.tar.gz vis-f7e4a00d933afdc434111b308f0ab3e3e5f4511c.tar.xz | |
vis: remove <C-o> mapping in insert mode
This was never really implemented properly and is not really needed
anyway.
Close #345
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -196,7 +196,6 @@ enum { VIS_ACTION_MODE_VISUAL_LINE, VIS_ACTION_MODE_INSERT, VIS_ACTION_MODE_REPLACE, - VIS_ACTION_MODE_OPERATOR_PENDING, VIS_ACTION_DELETE_CHAR_PREV, VIS_ACTION_DELETE_CHAR_NEXT, VIS_ACTION_DELETE_LINE_BEGIN, @@ -626,11 +625,6 @@ static const KeyAction vis_action[] = { "Enter replace mode", replacemode, { .i = VIS_MOVE_NOP } }, - [VIS_ACTION_MODE_OPERATOR_PENDING] = { - "vis-mode-operator-pending", - "Enter to operator pending mode", - switchmode, { .i = VIS_MODE_OPERATOR_PENDING } - }, [VIS_ACTION_DELETE_CHAR_PREV] = { "delete-char-prev", "Delete the previous character", |
