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"] = {{
modifiers = {},
keys = {
e="scroll line up",
y="scroll line down",
zt="scroll cursor to the top",
zz="scroll cursor to the center",
zb="scroll cursor to the bottom",
}
},{
modifiers = {"Ctrl"},
keys = {
e="scroll line up",
y="scroll line down",
}
}},
}