Remove some interpolations from default config

This commit is contained in:
Florian Bruhin 2014-05-17 23:39:26 +02:00
parent 844e536fff
commit 49ad41949a

View File

@ -656,14 +656,14 @@ DATA = OrderedDict([
('<Alt-8>', 'tab-focus 8'), ('<Alt-8>', 'tab-focus 8'),
('<Alt-9>', 'tab-focus 9'), ('<Alt-9>', 'tab-focus 9'),
('<Backspace>', 'back'), ('<Backspace>', 'back'),
('<Left>', '${h}'), ('<Left>', 'scroll -50 0'),
('<Down>', '${j}'), ('<Down>', 'scroll 0 50'),
('<Up>', '${k}'), ('<Up>', 'scroll 0 -50'),
('<Right>', '${l}'), ('<Right>', 'scroll 50 0'),
('<Shift-Space>', '${<Ctrl-B>}'), ('<Shift-Space>', 'scroll-page 0 -1'),
('<Space>', '${<Ctrl-F>}'), ('<Space>', 'scroll-page 0 1'),
('<PgUp>', '${<Ctrl-B>}'), ('<PgUp>', 'scroll-page 0 -1'),
('<PgDown>', '${<Ctrl-F>}'), ('<PgDown>', 'scroll-page 0 1'),
('<Ctrl-h>', 'home'), ('<Ctrl-h>', 'home'),
('<Ctrl-s>', 'stop'), ('<Ctrl-s>', 'stop'),
('<Ctrl-Alt-p>', 'print'), ('<Ctrl-Alt-p>', 'print'),