annotate runtime/syntax/editorconfig.vim @ 32053:76fd08a4ae1d v9.0.1358

patch 9.0.1358: compilation error with some compilers Commit: https://github.com/vim/vim/commit/30a844771554d28f1a88a256e6088dbb252228c1 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 27 08:07:14 2023 +0000 patch 9.0.1358: compilation error with some compilers Problem: Compilation error with some compilers. Solution: Avoid using "class" as member name.
author Bram Moolenaar <Bram@vim.org>
date Mon, 27 Feb 2023 09:15:04 +0100
parents 5ed19049b1e8
children 31b68cad57cc
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>
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 " Last Change: 2023-01-03
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
5ed19049b1e8 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 syntax match editorconfigUnknownProperty "^\s*\zs\w\+\ze\s*="
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'