aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-10 23:59:26 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-10 23:59:26 +0200
commit23ce30bc18ef8a5e9830dabed66b02699c2c04ed (patch)
tree968f58d4a3807c000d7250a45b9ae17f4b0a27bf /config.def.h
parente61dad45417b78d4f4dbbac3b6e9c986cec82ff4 (diff)
downloadvis-23ce30bc18ef8a5e9830dabed66b02699c2c04ed.tar.gz
vis-23ce30bc18ef8a5e9830dabed66b02699c2c04ed.tar.xz
Reindent readline key bindings
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h
index 9cc77b1..4df8103 100644
--- a/config.def.h
+++ b/config.def.h
@@ -383,12 +383,12 @@ static void vis_visual_leave(Mode *new) {
}
static KeyBinding vis_readline_mode[] = {
- { { NONE(ESC) }, switchmode, { .i = VIS_MODE_NORMAL } },
- { { CONTROL('c') }, switchmode, { .i = VIS_MODE_NORMAL } },
+ { { NONE(ESC) }, switchmode, { .i = VIS_MODE_NORMAL } },
+ { { CONTROL('c') }, switchmode, { .i = VIS_MODE_NORMAL } },
BACKSPACE( call, f, editor_backspace_key ),
{ { CONTROL('D') }, call, { .f = editor_delete_key } },
{ { CONTROL('W') }, delete, { .i = MOVE_WORD_START_PREV } },
- { /* empty last element, array terminator */ },
+ { /* empty last element, array terminator */ },
};
static KeyBinding vis_prompt_mode[] = {