view runtime/syntax/editorconfig.vim @ 34817:e7137eab4b6f

runtime(cuda): Update cuda keywords, remove uncommonly used enumeration constants Commit: https://github.com/vim/vim/commit/a2385c23349935d4bd6780a538f3a8f46a29d952 Author: jiangyinzuo <jiangyinzuo@foxmail.com> Date: Mon Apr 8 22:48:43 2024 +0200 runtime(cuda): Update cuda keywords, remove uncommonly used enumeration constants closes: https://github.com/vim/vim/issues/14406 Signed-off-by: jiangyinzuo <jiangyinzuo@foxmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Mon, 08 Apr 2024 23:00:02 +0200
parents 31b68cad57cc
children
line wrap: on
line source

" Vim syntax file
" Language:     EditorConfig
" Maintainer:   Gregory Anders <greg@gpanders.com>
" Last Change:  2023-07-20

if exists('b:current_syntax')
  finish
endif

runtime! syntax/dosini.vim
unlet! b:current_syntax

syntax match editorconfigUnknownProperty "^\s*\zs[a-zA-Z0-9_-]\+\ze\s*="

syntax keyword editorconfigProperty root charset end_of_line indent_style
syntax keyword editorconfigProperty indent_size tab_width max_line_length
syntax keyword editorconfigProperty trim_trailing_whitespace insert_final_newline

hi def link editorconfigProperty dosiniLabel

let b:current_syntax = 'editorconfig'