The current code allows direct key bindings, but if you use it, you can no longer use C-space as it unintentionally becomes a modifier key. This patch fixes that.
The second patch is optional, but demonstrates how to make direct key bindings. If it's not applied, it might make sense to otherwise mention in config.def.h how to make direct key bindings. -Mark
From 050b87527d311869b8c59db59687fd9d44f0404a Mon Sep 17 00:00:00 2001 From: Mark Edgar <medgar...@gmail.com> Date: Wed, 1 Jan 2014 15:16:39 +0100 Subject: [PATCH 1/2] Use ERR instead of 0 for modifier-less keybindings. This allows C-space (NUL) as a normal key or modifier. --- dvtm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dvtm.c b/dvtm.c index c0fe60b..6aa3447 100644 --- a/dvtm.c +++ b/dvtm.c @@ -180,6 +180,7 @@ static unsigned int waw, wah, wax, way; static Client *clients = NULL; static char *title; #define COLOR(fg, bg) COLOR_PAIR(vt_color_reserve(fg, bg)) +#define NOMOD ERR #include "config.h" @@ -1399,7 +1400,7 @@ main(int argc, char *argv[]) { handle_mouse(); } else if (is_modifier(code)) { mod = code; - } else if ((key = keybinding(0, code))) { + } else if ((key = keybinding(ERR, code))) { key->action.cmd(key->action.args); } else if (sel && vt_copymode(sel->term)) { vt_copymode_keypress(sel->term, code); -- 1.8.5.2
From c0c21127668581b46ed54cbd4810495350f39b3e Mon Sep 17 00:00:00 2001 From: Mark Edgar <medgar...@gmail.com> Date: Wed, 1 Jan 2014 15:22:37 +0100 Subject: [PATCH 2/2] Scroll on Shift-PgUp and Shift-PgDn. --- config.def.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.def.h b/config.def.h index 727dce4..71335fc 100644 --- a/config.def.h +++ b/config.def.h @@ -89,6 +89,8 @@ static Key keys[] = { { MOD, KEY_NPAGE, { scrollback, { "1" } } }, { MOD, KEY_F(1), { create, { "man dvtm", "dvtm help" } } }, { MOD, MOD, { send, { (const char []){MOD, 0} } } }, + { ERR, KEY_SPREVIOUS, { scrollback, { "-1" } } }, + { ERR, KEY_SNEXT, { scrollback, { "1" } } }, }; static const ColorRule colorrules[] = { -- 1.8.5.2