annotate runtime/ftplugin/css.vim @ 920:09fcdfde9afc
v7.0.046
updated for version 7.0-046
author |
vimboss |
date |
Tue, 08 Aug 2006 16:07:03 +0000 |
parents |
1f3b1021f002 |
children |
97cc1e746d2c |
rev |
line source |
7
|
1 " Vim filetype plugin file
|
375
|
2 " Language: CSS
|
839
|
3 " Maintainer: Nikolai Weibull <now@bitwi.se>
|
|
4 " Latest Revision: 2006-04-19
|
7
|
5
|
|
6 if exists("b:did_ftplugin")
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
389
|
11 let b:undo_ftplugin = "setl com< cms< inc< fo<"
|
7
|
12
|
375
|
13 setlocal comments=s1:/*,mb:*,ex:*/ commentstring&
|
389
|
14 setlocal formatoptions-=t formatoptions+=croql
|
7
|
15
|
375
|
16 let &l:include = '^\s*@import\s\+\%(url(\)\='
|