diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-10-03 21:52:09 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-10-03 21:52:09 +0000 |
commit | bb15b658647d8eca01e67df871f7cb5ed95e2534 (patch) | |
tree | 6214d5476e5b780728462e5832306a9050bef26b /runtime/autoload/csscomplete.vim | |
parent | 69e0ff94dce3a017feafbd0bb60e5720cda0441b (diff) | |
download | vim-git-bb15b658647d8eca01e67df871f7cb5ed95e2534.tar.gz |
updated for version 7.0153
Diffstat (limited to 'runtime/autoload/csscomplete.vim')
-rw-r--r-- | runtime/autoload/csscomplete.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/autoload/csscomplete.vim b/runtime/autoload/csscomplete.vim index f67445439..ea52786e7 100644 --- a/runtime/autoload/csscomplete.vim +++ b/runtime/autoload/csscomplete.vim @@ -1,7 +1,7 @@ " Vim completion script " Language: CSS 2.1 " Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl ) -" Last Change: 2005 Sep 27 +" Last Change: 2005 Oct 02 function! csscomplete#CompleteCSS(findstart, base) if a:findstart @@ -179,7 +179,7 @@ else elseif prop == 'font-family' let values = ["sans-serif", "serif", "monospace", "cursive", "fantasy"] elseif prop == 'font-size' - return [] + let values = ["xx-small", "x-small", "small", "medium", "large", "x-large", "xx-large", "larger", "smaller"] elseif prop == 'font-style' let values = ["normal", "italic", "oblique"] elseif prop == 'font-variant' @@ -187,7 +187,7 @@ else elseif prop == 'font-weight' let values = ["normal", "bold", "bolder", "lighter", "100", "200", "300", "400", "500", "600", "700", "800", "900"] elseif prop == 'font' - let values = ["normal", "italic", "oblique", "small-caps", "bold", "bolder", "lighter", "100", "200", "300", "400", "500", "600", "700", "800", "900", "sans-serif", "serif", "monospace", "cursive", "fantasy", "caption", "icon", "menu", "message-box", "small-caption", "status-bar"] + let values = ["normal", "italic", "oblique", "small-caps", "bold", "bolder", "lighter", "100", "200", "300", "400", "500", "600", "700", "800", "900", "xx-small", "x-small", "small", "medium", "large", "x-large", "xx-large", "larger", "smaller", "sans-serif", "serif", "monospace", "cursive", "fantasy", "caption", "icon", "menu", "message-box", "small-caption", "status-bar"] elseif prop =~ '^\(height\|width\)$' let values = ["auto"] elseif prop =~ '^\(left\|rigth\)$' |