Skip to content

Commit

Permalink
Merge pull request #3819 from HoNamDuong/master
Browse files Browse the repository at this point in the history
fix(awful.key.keygroups): can't use 0 . key
  • Loading branch information
mergify[bot] authored Jun 14, 2023
2 parents 8615c10 + 96bdf0a commit 0e5fc45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/awful/key.lua
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ key.keygroups = {
-- Technically, this isn't very popular, but we have been doing this for 12
-- years and nobody complained too loudly.
for i = 1, 10 do
table.insert(key.keygroups.numrow, {"#" .. i + 9, i == 10 and 0 or i})
table.insert(key.keygroups.numrow, {"#" .. i + 9, i})
end
for i = 1, 35 do
table.insert(key.keygroups.fkeys, {"F" .. i, "F" .. i})
Expand Down

0 comments on commit 0e5fc45

Please sign in to comment.