aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-06-04 10:53:42 +0200
committerGitHub <noreply@github.com>2022-06-04 10:53:42 +0200
commitdf4ffce543ba0d4e2464b3978f4e66eaddf6a29a (patch)
treea13cdda09151c4e36919fbe279b968732f76fe97 /runtime/syntax
parent9961a9702e75d80e6d37637182f361320e690002 (diff)
downloadrneovim-df4ffce543ba0d4e2464b3978f4e66eaddf6a29a.tar.gz
rneovim-df4ffce543ba0d4e2464b3978f4e66eaddf6a29a.tar.bz2
rneovim-df4ffce543ba0d4e2464b3978f4e66eaddf6a29a.zip
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
Diffstat (limited to 'runtime/syntax')
-rw-r--r--runtime/syntax/confini.vim12
1 files changed, 12 insertions, 0 deletions
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'