From df4ffce543ba0d4e2464b3978f4e66eaddf6a29a Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Sat, 4 Jun 2022 10:53:42 +0200 Subject: vim-patch:partial:cfa8f9a3f285 (#18858) Update runtime files https://github.com/vim/vim/commit/cfa8f9a3f285060152ebbdbf86fbc7aecf1dd756 skip syntax/vim.vim (needs 8.2.4770) skip doc/syntax.vim (needs several colorscheme patches) skip further rewrite of manual --- runtime/syntax/confini.vim | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 runtime/syntax/confini.vim (limited to 'runtime/syntax') diff --git a/runtime/syntax/confini.vim b/runtime/syntax/confini.vim new file mode 100644 index 0000000000..823d417a81 --- /dev/null +++ b/runtime/syntax/confini.vim @@ -0,0 +1,12 @@ +" Vim syntax file +" Language: confini + +" Quit if a syntax file was already loaded +if exists("b:current_syntax") + finish +endif + +" Use the cfg syntax for now, it's similar. +runtime! syntax/cfg.vim + +let b:current_syntax = 'confini' -- cgit