From 8baab3c8d7a6f22888bd581cd5c6098fd2e4b5a8 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 6 May 2024 04:44:24 +0200 Subject: Adding upstream version 2:8.1.0875. Signed-off-by: Daniel Baumann --- runtime/syntax/svg.vim | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 runtime/syntax/svg.vim (limited to 'runtime/syntax/svg.vim') diff --git a/runtime/syntax/svg.vim b/runtime/syntax/svg.vim new file mode 100644 index 0000000..819b5ec --- /dev/null +++ b/runtime/syntax/svg.vim @@ -0,0 +1,15 @@ +" Vim syntax file +" Language: SVG (Scalable Vector Graphics) +" Maintainer: Vincent Berthoux +" File Types: .svg (used in Web and vector programs) +" +" Directly call the xml syntax, because SVG is an XML +" dialect. But as some plugins base their effect on filetype, +" providing a distinct filetype from xml is better. + +if exists("b:current_syntax") + finish +endif + +runtime! syntax/xml.vim +let b:current_syntax = "svg" -- cgit v1.2.3