Mercurial > vim
view runtime/syntax/scss.vim @ 3018:45ead8a0bede v7.3.281
updated for version 7.3.281
Problem: After using "expand('%:8')" the buffer name is changed.
Solution: Make a copy of the file name before shortening it.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 17 Aug 2011 15:23:23 +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: