mirror of
https://github.com/neovim/neovim.git
synced 2025-09-07 03:48:18 +00:00
refactor(lua): reformat with stylua 0.14.0 (#19264)
* reformat Lua runtime to make lint CI pass * reduce max line length to 100
This commit is contained in:
@@ -16,7 +16,14 @@ function M.create(higroup, hi_info, default)
|
||||
for k, v in pairs(hi_info) do
|
||||
table.insert(options, string.format('%s=%s', k, v))
|
||||
end
|
||||
vim.cmd(string.format([[highlight %s %s %s]], default and 'default' or '', higroup, table.concat(options, ' ')))
|
||||
vim.cmd(
|
||||
string.format(
|
||||
[[highlight %s %s %s]],
|
||||
default and 'default' or '',
|
||||
higroup,
|
||||
table.concat(options, ' ')
|
||||
)
|
||||
)
|
||||
end
|
||||
|
||||
---@private
|
||||
|
Reference in New Issue
Block a user