From 7690c6cccc97d2df30d96c7e822bbfcf5118385b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Wed, 4 Nov 2015 18:01:36 +0100 Subject: vis: fix definition of space motion We do not instruct libtermkey to specially report the space key. Hence it is not reported as but simply as a " " (0x20). Closes #89 --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config.def.h') diff --git a/config.def.h b/config.def.h index 00e72e7..f47034b 100644 --- a/config.def.h +++ b/config.def.h @@ -24,7 +24,7 @@ static KeyBinding vis_movements[] = { { "", ALIAS("h") }, { "", ALIAS("") }, { "l", ACTION(CURSOR_CHAR_NEXT) }, - { "", ALIAS("l") }, + { " ", ALIAS("l") }, { "k", ACTION(CURSOR_LINE_UP) }, { "C-p", ALIAS("k") }, { "j", ACTION(CURSOR_LINE_DOWN) }, -- cgit v1.2.3