aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/config.def.h b/config.def.h
index 73a0193..a40924a 100644
--- a/config.def.h
+++ b/config.def.h
@@ -275,15 +275,6 @@ static const KeyBinding bindings_readline[] = {
{ 0 /* empty last element, array terminator */ },
};
-static const KeyBinding bindings_prompt[] = {
- { "<Backspace>", ACTION(PROMPT_BACKSPACE) },
- { "<C-h>", ALIAS("<Backspace>") },
- { "<Enter>", ACTION(PROMPT_ENTER) },
- { "<C-j>", ALIAS("<Enter>") },
- { "<Tab>", ACTION(NOP) },
- { 0 /* empty last element, array terminator */ },
-};
-
static const KeyBinding bindings_insert[] = {
{ "<Escape>", ACTION(MODE_NORMAL) },
{ "<C-c>", ALIAS("<Escape>") },
@@ -353,10 +344,4 @@ static const KeyBinding **default_bindings[] = {
bindings_basic,
NULL,
},
- [VIS_MODE_PROMPT] = (const KeyBinding*[]){
- bindings_prompt,
- bindings_readline,
- bindings_basic,
- NULL,
- },
};