summaryrefslogtreecommitdiffstatshomepage
path: root/runtime/syntax/editorconfig.vim
AgeCommit message (Collapse)AuthorFiles
2023-07-27fix(editorconfig): highlight properties with dashes (#24407)ObserverOfTime1
also add metadata comment and update Lua code in syntax file
2023-01-07fix(editorconfig): do not highlight unknown properties as errors (#21673)Gregory Anders1
Other plugins may define their own custom properties outside of Neovim's builtin EditorConfig support. Instead of highlighting these unknown properties as errors, do not highlight them at all. This still differentiates between known and unknown properties, which helps to catch typos or mistakes, but does not use the garish "error" highlight that signals something is wrong.
2023-01-03feat(editorconfig): add editorconfig syntax fileGregory Anders1
This is intentionally _not_ copied from Vim because our syntax file makes use of Lua to dynamically generate a list of valid EditorConfig properties. This requires the builtin editorconfig module, which Vim does not have.