Mercurial > vim
annotate runtime/syntax/scss.vim @ 25405:747ebbce2421 v8.2.3239
patch 8.2.3239: Vim9: no error using heredoc for a number variable
Commit: https://github.com/vim/vim/commit/81530e36033dec2c2cd94af6dd48ceb0389e95a2
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jul 28 21:25:49 2021 +0200
patch 8.2.3239: Vim9: no error using heredoc for a number variable
Problem: Vim9: no error using heredoc for a number variable.
Solution: Add a type check. (closes https://github.com/vim/vim/issues/8627)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 28 Jul 2021 21:30:04 +0200 |
parents | 5c40013d45ee |
children |
rev | line source |
---|---|
2415 | 1 " Vim syntax file |
2 " Language: SCSS | |
3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org> | |
4 " Filenames: *.scss | |
18818 | 5 " Last Change: 2019 Dec 05 |
2415 | 6 |
7 if exists("b:current_syntax") | |
8 finish | |
9 endif | |
10 | |
11 runtime! syntax/sass.vim | |
12 | |
18818 | 13 syn clear sassComment |
14 syn clear sassCssComment | |
15 syn clear sassEndOfLineComment | |
16 | |
2415 | 17 syn match scssComment "//.*" contains=sassTodo,@Spell |
18818 | 18 syn region scssCssComment start="/\*" end="\*/" contains=sassTodo,@Spell |
2415 | 19 |
18818 | 20 hi def link scssCssComment scssComment |
21 hi def link scssComment Comment | |
2415 | 22 |
23 let b:current_syntax = "scss" | |
24 | |
25 " vim:set sw=2: |