Fix deprecated config.

This commit is contained in:
Florian Bruhin 2015-05-18 22:36:10 +02:00
parent e0dee14df4
commit 9a1cf2b03a

View File

@ -1303,10 +1303,10 @@ KEY_DATA = collections.OrderedDict([
('move-to-end-of-document', ['G']), ('move-to-end-of-document', ['G']),
('yank-selected -p', ['Y']), ('yank-selected -p', ['Y']),
('yank-selected', ['y', '<Return>', '<Ctrl-J>']), ('yank-selected', ['y', '<Return>', '<Ctrl-J>']),
('scroll -50 0', ['H']), ('scroll left', ['H']),
('scroll 0 50', ['J']), ('scroll down', ['J']),
('scroll 0 -50', ['K']), ('scroll up', ['K']),
('scroll 50 0', ['L']), ('scroll right', ['L']),
])), ])),
]) ])