vote up 8 vote down star
5

When editing an XML file in IntelliJ IDEA, if the document references a schema, IDEA will fetch the schema and use the information for auto-complete. It knows which tags are valid in which contexts, so when you hit CTRL-space, it suggests only those tags. It also highlights any tags that are invalid according to the schema.

Does anybody know of an extension for Vim that provides similar functionality?

flag

interesting, I'm tempted to have a go at it. Does it work in IDEA only for editing, or also for writing from scratch? That is, does it require that the entire document be valid; or that the part up to where you are editing be valid; or will it work with a bare fragment? This affects implementation. – 13ren Feb 25 at 14:52

2 Answers

vote up 2 vote down check

The closest thing that I've seen for Vim is the XML Completion script.

It contains XML definition files for DocBook 4.[234], XSL FO 1.0, XSLT 1.0, Relax NG 1.0, XML Schemas 1.0, SVG 1.1, XHTML 1.1, XInclude 1.0 and OpenOffice 1.0 XML format.

link|flag
Thanks, that might be sufficient. – Dan Dyer Nov 27 '08 at 12:04
vote up 1 vote down

Read this document: http://www.pinkjuice.com/howto/vimxml/

Very usefull.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.