Add ctrl-v/meta-v bindings for page-up/page-down

Many of the other keybindings seem to have emacs defaults, so add
page-up/page-down, for use on laptop keyboards without real page
keys.

Change-Id: I02bd8bebe9bfea89133d2eb28322bcf5fabaacf8
This commit is contained in:
Doug Wiegley 2019-02-18 12:23:43 -07:00
parent d92570abd4
commit 0ff7b5ef5b
No known key found for this signature in database
GPG Key ID: 4D3C112B76BBDB5F
1 changed files with 2 additions and 2 deletions

View File

@ -91,8 +91,8 @@ DEFAULT_KEYMAP = {
CURSOR_DOWN: 'down',
CURSOR_LEFT: 'left',
CURSOR_RIGHT: 'right',
CURSOR_PAGE_UP: 'page up',
CURSOR_PAGE_DOWN: 'page down',
CURSOR_PAGE_UP: ['page up', 'meta v'],
CURSOR_PAGE_DOWN: ['page down', 'ctrl v'],
CURSOR_MAX_LEFT: ['home', 'ctrl a'],
CURSOR_MAX_RIGHT: ['end', 'ctrl e'],
ACTIVATE: 'enter',