summaryrefslogtreecommitdiff
path: root/uvim/runtime/syntax/editorconfig.vim
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-03 22:21:25 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-04 00:23:03 +0300
commit2eae5db069dc171f74cd863487655f6a88e5384d (patch)
tree2d9d05e09978a2a44acbfbb8d651f240df3ca052 /uvim/runtime/syntax/editorconfig.vim
parent473d922faed49241a5d29d9e37dc4819cd512006 (diff)
downloadProject-Tick-2eae5db069dc171f74cd863487655f6a88e5384d.tar.gz
Project-Tick-2eae5db069dc171f74cd863487655f6a88e5384d.zip
NOISSUE rebrand vim to MNV's not Vim
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'uvim/runtime/syntax/editorconfig.vim')
-rw-r--r--uvim/runtime/syntax/editorconfig.vim21
1 files changed, 0 insertions, 21 deletions
diff --git a/uvim/runtime/syntax/editorconfig.vim b/uvim/runtime/syntax/editorconfig.vim
deleted file mode 100644
index 7f75ab6287..0000000000
--- a/uvim/runtime/syntax/editorconfig.vim
+++ /dev/null
@@ -1,21 +0,0 @@
-" 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'