annotate runtime/syntax/editorconfig.vim @ 32705:31b68cad57cc

Highlight editorconfig properties with dashes (#12691) Commit: https://github.com/vim/vim/commit/958e15bb1c7d582cdca324dc61a4daf5c01842bc Author: ObserverOfTime <chronobserver@disroot.org> Date: Wed Aug 9 18:05:39 2023 +0300 Highlight editorconfig properties with dashes (https://github.com/vim/vim/issues/12691) Problem: editorconfig properties with dashes are not highlighted Solution: update the property pattern to include dashes
author Christian Brabandt <cb@256bit.org>
date Wed, 09 Aug 2023 17:15:03 +0200
parents 5ed19049b1e8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
31671
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim syntax file
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: EditorConfig
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Maintainer: Gregory Anders <greg@gpanders.com>
32705
31b68cad57cc Highlight editorconfig properties with dashes (#12691)
Christian Brabandt <cb@256bit.org>
parents: 31671
diff changeset
4 " Last Change: 2023-07-20
31671
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 if exists('b:current_syntax')
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 finish
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 endif
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 runtime! syntax/dosini.vim
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 unlet! b:current_syntax
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12
32705
31b68cad57cc Highlight editorconfig properties with dashes (#12691)
Christian Brabandt <cb@256bit.org>
parents: 31671
diff changeset
13 syntax match editorconfigUnknownProperty "^\s*\zs[a-zA-Z0-9_-]\+\ze\s*="
31671
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 syntax keyword editorconfigProperty root charset end_of_line indent_style
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 syntax keyword editorconfigProperty indent_size tab_width max_line_length
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 syntax keyword editorconfigProperty trim_trailing_whitespace insert_final_newline
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 hi def link editorconfigProperty dosiniLabel
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 let b:current_syntax = 'editorconfig'