view runtime/syntax/scss.vim @ 16821:140bf183f946 v8.1.1412

patch 8.1.1412: test 30 is old style commit https://github.com/vim/vim/commit/72fcf07b0639b49be3305de141d777baa9c965a0 Author: Bram Moolenaar <Bram@vim.org> Date: Mon May 27 22:21:44 2019 +0200 patch 8.1.1412: test 30 is old style Problem: Test 30 is old style. Solution: Turn it into a new style test. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/4440)
author Bram Moolenaar <Bram@vim.org>
date Mon, 27 May 2019 22:30:06 +0200
parents 8f017e31750f
children 5c40013d45ee
line wrap: on
line source

" Vim syntax file
" Language:	SCSS
" Maintainer:	Tim Pope <vimNOSPAM@tpope.org>
" Filenames:	*.scss
" Last Change:	2010 Jul 26

if exists("b:current_syntax")
  finish
endif

runtime! syntax/sass.vim

syn match scssComment "//.*" contains=sassTodo,@Spell
syn region scssComment start="/\*" end="\*/" contains=sassTodo,@Spell

hi def link scssComment sassComment

let b:current_syntax = "scss"

" vim:set sw=2: