mirror of
https://github.com/neovim/neovim.git
synced 2024-12-31 17:13:26 -07:00
feat(editorconfig): update Lua code in syntax file
This commit is contained in:
parent
aa4900dff0
commit
5f29f7b59f
@ -11,11 +11,8 @@ syntax match editorconfigUnknownProperty "^\s*\zs[a-zA-Z0-9_-]\+\ze\s*="
|
||||
syntax keyword editorconfigProperty root
|
||||
|
||||
lua<<
|
||||
local props = {}
|
||||
for k in pairs(require('editorconfig').properties) do
|
||||
props[#props + 1] = k
|
||||
end
|
||||
vim.cmd(string.format('syntax keyword editorconfigProperty %s', table.concat(props, ' ')))
|
||||
local props = vim.tbl_keys(require('editorconfig').properties)
|
||||
vim.cmd.syntax { 'keyword', 'editorconfigProperty', unpack(props) }
|
||||
.
|
||||
|
||||
hi def link editorconfigProperty dosiniLabel
|
||||
|
Loading…
Reference in New Issue
Block a user