1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-03-31 15:06:43 +02:00
vim/runtime/ftplugin/css.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
666 B
VimL
Raw Permalink Normal View History

2004-06-13 20:20:40 +00:00
" Vim filetype plugin file
2020-08-15 18:55:18 +02:00
" Language: CSS
" Maintainer: Doug Kearns <dougkearns@gmail.com>
" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
2020-12-23 13:56:35 +01:00
" Last Change: 2020 Dec 21
" 2024 Jun 02 by Riley Bruins <ribru17@gmail.com> ('commentstring')
2004-06-13 20:20:40 +00:00
if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin = 1
2008-08-06 17:06:04 +00:00
let s:cpo_save = &cpo
set cpo&vim
2020-12-23 13:56:35 +01:00
let b:undo_ftplugin = "setl com< cms< inc< fo< ofu< isk<"
2004-06-13 20:20:40 +00:00
setlocal comments=s1:/*,mb:*,ex:*/ commentstring=/*\ %s\ */
2005-07-04 22:49:24 +00:00
setlocal formatoptions-=t formatoptions+=croql
2007-05-10 18:46:18 +00:00
setlocal omnifunc=csscomplete#CompleteCSS
2020-12-23 13:56:35 +01:00
setlocal iskeyword+=-
2004-06-13 20:20:40 +00:00
2005-06-29 22:40:58 +00:00
let &l:include = '^\s*@import\s\+\%(url(\)\='
2008-08-06 17:06:04 +00:00
let &cpo = s:cpo_save
unlet s:cpo_save