diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2018-04-26 15:32:07 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2018-05-16 13:24:01 +0200 |
| commit | 55ea139a5bee4d3dd503ccc255865fc1c6c3fabe (patch) | |
| tree | 9e11b738313483722dc00e8201556a15f6a9a5cc /main.c | |
| parent | 90587a043f6fd697f27bf42eca7464e06b48dc31 (diff) | |
| download | vis-55ea139a5bee4d3dd503ccc255865fc1c6c3fabe.tar.gz vis-55ea139a5bee4d3dd503ccc255865fc1c6c3fabe.tar.xz | |
vis: remove gP
This only removes the user visible mapping, the underlying implementation
is kept for now. It is used in insert mode for the implementation of <C-r>
(register insertion).
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -260,7 +260,6 @@ enum { VIS_ACTION_WINDOW_SLIDE_DOWN, VIS_ACTION_PUT_AFTER, VIS_ACTION_PUT_BEFORE, - VIS_ACTION_PUT_BEFORE_END, VIS_ACTION_SELECTIONS_MATCH_WORD, VIS_ACTION_SELECTIONS_NEW_LINE_ABOVE, VIS_ACTION_SELECTIONS_NEW_LINE_ABOVE_FIRST, @@ -895,11 +894,6 @@ static const KeyAction vis_action[] = { VIS_HELP("Put text before the cursor") operator, { .i = VIS_OP_PUT_BEFORE } }, - [VIS_ACTION_PUT_BEFORE_END] = { - "vis-put-before-end", - VIS_HELP("Put text before the cursor, place cursor after new text") - operator, { .i = VIS_OP_PUT_BEFORE_END } - }, [VIS_ACTION_SELECTIONS_MATCH_WORD] = { "vis-selections-select-word", VIS_HELP("Select word under cursor") |
