aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.def.h1
-rw-r--r--main.c6
2 files changed, 0 insertions, 7 deletions
diff --git a/config.def.h b/config.def.h
index 7c437ba..3c4de9d 100644
--- a/config.def.h
+++ b/config.def.h
@@ -180,7 +180,6 @@ static const KeyBinding bindings_operators[] = {
{ "c", ACTION(OPERATOR_CHANGE) },
{ "d", ACTION(OPERATOR_DELETE) },
{ "g~", ALIAS(":|tr '[:lower:][:upper:]' '[:upper:][:lower:]'<Enter>") },
- { "gp", ACTION(PUT_AFTER_END) },
{ "gP", ACTION(PUT_BEFORE_END) },
{ "gu", ALIAS(":|tr '[:upper:]' '[:lower:]'<Enter>")},
{ "gU", ALIAS(":|tr '[:lower:]' '[:upper:]'<Enter>")},
diff --git a/main.c b/main.c
index efce88e..05d3438 100644
--- a/main.c
+++ b/main.c
@@ -260,7 +260,6 @@ enum {
VIS_ACTION_WINDOW_SLIDE_DOWN,
VIS_ACTION_PUT_AFTER,
VIS_ACTION_PUT_BEFORE,
- VIS_ACTION_PUT_AFTER_END,
VIS_ACTION_PUT_BEFORE_END,
VIS_ACTION_SELECTIONS_MATCH_WORD,
VIS_ACTION_SELECTIONS_NEW_LINE_ABOVE,
@@ -896,11 +895,6 @@ static const KeyAction vis_action[] = {
VIS_HELP("Put text before the cursor")
operator, { .i = VIS_OP_PUT_BEFORE }
},
- [VIS_ACTION_PUT_AFTER_END] = {
- "vis-put-after-end",
- VIS_HELP("Put text after the cursor, place cursor after new text")
- operator, { .i = VIS_OP_PUT_AFTER_END }
- },
[VIS_ACTION_PUT_BEFORE_END] = {
"vis-put-before-end",
VIS_HELP("Put text before the cursor, place cursor after new text")