Merge pull request #2999 from ArenaL5/keygroups

Fix the definition of keygroup arrows
This commit is contained in:
mergify[bot] 2020-02-19 01:19:37 +00:00 committed by GitHub
commit d37aaf7491
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -299,12 +299,14 @@ local function new_common(mod, _keys, press, release, data)
end
local keygroups = {
-- Left: the keycode in a format which regular awful.key understands.
-- Right: the argument of the function ran upon executing the key binding.
numrow = {},
arrows = {
{"Left" , "Left" },
{"Right" , "Right" },
{"Top" , "Top" },
{"Bottom", "Bottom"},
{"Up" , "Up" },
{"Down", "Down" },
}
}