Skip to content

Commit 7c9207d

Browse files
authored
lint: Fix style to match stylua (#430)
stylua-action failed, so adjust to match.
1 parent 4edc277 commit 7c9207d

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

lua/dapui/util.lua

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,16 @@ function M.apply_mapping(mappings, func, buffer, label)
211211
"n",
212212
key,
213213
"",
214-
{ noremap = true, callback = func, nowait = true, desc = label, }
214+
{ noremap = true, callback = func, nowait = true, desc = label }
215215
)
216216
else
217-
vim.api.nvim_buf_set_keymap(buffer, "n", key, func, { noremap = true, nowait = true, desc = label, })
217+
vim.api.nvim_buf_set_keymap(
218+
buffer,
219+
"n",
220+
key,
221+
func,
222+
{ noremap = true, nowait = true, desc = label }
223+
)
218224
end
219225
end
220226
end

0 commit comments

Comments
 (0)