|
1 | 1 | " Vim completion script |
2 | 2 | " Language: HTML and XHTML |
3 | 3 | " Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl ) |
4 | | -" Last Change: 2006 Apr 30 |
| 4 | +" Last Change: 2006 Oct 19 |
5 | 5 |
|
6 | 6 | function! htmlcomplete#CompleteTags(findstart, base) |
7 | 7 | if a:findstart |
@@ -84,7 +84,7 @@ function! htmlcomplete#CompleteTags(findstart, base) |
84 | 84 | let context_line = getline(curline-i) |
85 | 85 | if context_line =~ '<[^>]*$' |
86 | 86 | " Yep, this is this line |
87 | | - let context_lines = getline(curline-i, curline) |
| 87 | + let context_lines = getline(curline-i, curline-1) + [b:compl_context] |
88 | 88 | let b:compl_context = join(context_lines, ' ') |
89 | 89 | break |
90 | 90 | elseif context_line =~ '>[^<]*$' || i == curline |
@@ -448,6 +448,15 @@ function! htmlcomplete#CompleteTags(findstart, base) |
448 | 448 | let attrname = matchstr(attr, '.*\ze\s*=') |
449 | 449 | let entered_value = matchstr(attr, ".*=\\s*[\"']\\?\\zs.*") |
450 | 450 | let values = [] |
| 451 | + " Load data {{{ |
| 452 | + if !exists("b:html_doctype") |
| 453 | + call htmlcomplete#CheckDoctype() |
| 454 | + endif |
| 455 | + if !exists("b:html_omni") |
| 456 | + "runtime! autoload/xml/xhtml10s.vim |
| 457 | + call htmlcomplete#LoadData() |
| 458 | + endif |
| 459 | + " }}} |
451 | 460 | if attrname == 'href' |
452 | 461 | " Now we are looking for local anchors defined by name or id |
453 | 462 | if entered_value =~ '^#' |
@@ -604,21 +613,20 @@ function! htmlcomplete#CompleteTags(findstart, base) |
604 | 613 | if exists("uppercase_tag") && uppercase_tag == 1 |
605 | 614 | let context = tolower(context) |
606 | 615 | endif |
607 | | - " Handle XML keywords: DOCTYPE and CDATA. |
| 616 | + " Handle XML keywords: DOCTYPE |
608 | 617 | if opentag == '' |
609 | 618 | let tags += [ |
610 | | - \ '!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">', |
611 | | - \ '!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">', |
612 | | - \ '!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">', |
613 | | - \ '!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN" "http://www.w3.org/TR/REC-html40/frameset.dtd">', |
614 | | - \ '!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">', |
615 | | - \ '!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">', |
616 | | - \ '!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">', |
617 | | - \ '!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">', |
618 | | - \ '!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">', |
619 | | - \ '!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">', |
620 | | - \ '!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/1999/xhtml">', |
621 | | - \ '!CDATA' |
| 619 | + \ '!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">', |
| 620 | + \ '!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">', |
| 621 | + \ '!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">', |
| 622 | + \ '!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN" "http://www.w3.org/TR/REC-html40/frameset.dtd">', |
| 623 | + \ '!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">', |
| 624 | + \ '!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">', |
| 625 | + \ '!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">', |
| 626 | + \ '!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">', |
| 627 | + \ '!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">', |
| 628 | + \ '!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">', |
| 629 | + \ '!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/1999/xhtml">' |
622 | 630 | \ ] |
623 | 631 | endif |
624 | 632 |
|
|
0 commit comments