view runtime/syntax/svg.vim @ 19135:17722555af22 v8.2.0127

patch 8.2.0127: some buffer commands work in a popup window Commit: https://github.com/vim/vim/commit/3029bcc094415243bad14e5720f68e857b755dad Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 18 15:06:19 2020 +0100 patch 8.2.0127: some buffer commands work in a popup window Problem: Some buffer commands work in a popup window. Solution: Disallow :bnext, :bprev, etc. (Naruhiko Nishino, closes https://github.com/vim/vim/issues/5494)
author Bram Moolenaar <Bram@vim.org>
date Sat, 18 Jan 2020 15:15:04 +0100
parents b9e314fe473f
children
line wrap: on
line source

" Vim syntax file
" Language:	SVG (Scalable Vector Graphics)
" Maintainer:	Vincent Berthoux <twinside@gmail.com>
" 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"