From: Pierre Habouzit Date: Sat, 26 Jun 2010 21:15:47 +0000 (+0200) Subject: Actually add the ^D binding to move-page-down X-Git-Url: https://git.tokkee.org/?p=tig.git;a=commitdiff_plain;h=2e02e650f57d1760fe4dd0576eeaa0664416b18d Actually add the ^D binding to move-page-down Signed-off-by: Pierre Habouzit Signed-off-by: Jonas Fonseca --- diff --git a/tig.c b/tig.c index 903efde..fcaf3c8 100644 --- a/tig.c +++ b/tig.c @@ -1452,6 +1452,7 @@ static struct keybinding default_keybindings[] = { { KEY_HOME, REQ_MOVE_FIRST_LINE }, { KEY_END, REQ_MOVE_LAST_LINE }, { KEY_NPAGE, REQ_MOVE_PAGE_DOWN }, + { KEY_CTL('D'), REQ_MOVE_PAGE_DOWN }, { ' ', REQ_MOVE_PAGE_DOWN }, { KEY_PPAGE, REQ_MOVE_PAGE_UP }, { KEY_CTL('U'), REQ_MOVE_PAGE_UP },