fix(awful: hotkeys_popup: vim): fix hotkeys for scroll line up/down

This commit is contained in:
actionless 2017-03-05 14:58:54 +01:00 committed by Yauhen Kirylau
parent 9cb60b8130
commit e0f9245abc
1 changed files with 6 additions and 2 deletions

View File

@ -159,12 +159,16 @@ local vim_keys = {
["VIM: scroll"] = {{ ["VIM: scroll"] = {{
modifiers = {}, modifiers = {},
keys = { keys = {
e="scroll line up",
y="scroll line down",
zt="scroll cursor to the top", zt="scroll cursor to the top",
zz="scroll cursor to the center", zz="scroll cursor to the center",
zb="scroll cursor to the bottom", zb="scroll cursor to the bottom",
} }
},{
modifiers = {"Ctrl"},
keys = {
e="scroll line up",
y="scroll line down",
}
}}, }},
} }