fix(awful: hotkeys_popup: vim): fix hotkeys for scroll line up/down
This commit is contained in:
parent
9cb60b8130
commit
e0f9245abc
|
@ -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",
|
||||||
|
}
|
||||||
}},
|
}},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue