aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/editorconfig.vim
Commit message (Collapse)AuthorAge
* fix(editorconfig): highlight properties with dashes (#24407)ObserverOfTime2023-07-27
| | | also add metadata comment and update Lua code in syntax file
* fix(editorconfig): do not highlight unknown properties as errors (#21673)Gregory Anders2023-01-07
| | | | | | | | | 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.
* feat(editorconfig): add editorconfig syntax fileGregory Anders2023-01-03
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.