Skip to content

Commit

Permalink
style(stylua): fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
kuntau committed Jul 1, 2024
1 parent eafa3e1 commit fbf82e1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lua/dashboard/theme/hyper.lua
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,9 @@ local function letter_hotkey(config)
end
end

if shuffle then shuffle_table(unused_keys) end
if shuffle then
shuffle_table(unused_keys)
end

local unused_uppercase_keys = {}
-- A - Z
Expand All @@ -245,7 +247,9 @@ local function letter_hotkey(config)
end
end

if shuffle then shuffle_table(unused_uppercase_keys) end
if shuffle then
shuffle_table(unused_uppercase_keys)
end

-- Push shuffled uppercase keys after the lowercase ones
for _, key in pairs(unused_uppercase_keys) do
Expand Down

0 comments on commit fbf82e1

Please sign in to comment.