Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Group bindings

Bindings can be grouped so you can use multiple key presses (vim-like) to reach an action.


'group name' =>
    {
    SHORTCUTS => 'C00-x',

    'binding group' => ['C00-x', ACTION_GROUP('next_level') ] ,
    'binding 1'     => ['000-1', sub { print "you're in x/1\n" ; } ],  
    },

'group_next_level' => # need to be prefixed with 'group_'
    {
    SHORTCUTS => 'C00-y', # can be accessed directly

    'binding in sub group' => ['C00-x', sub { print "you're in x/x/x\n" ; } ],  
    } ,