XML Language Support by Red Hat
Description
This VS Code extension provides support for creating and editing XML documents, based on the LSP4XML Language Server, running with Java.
Features
- Syntax error reporting
- General code completion
- Auto-close tags
- Automatic node indentation
- Symbol highlighting
- Document folding
- Document links
- Document symbols and outline
- Renaming support
- Document Formatting
- DTD validation
- DTD completion
- DTD formatting
- XSD validation
- XSD based hover
- XSD based code completion
- XSL support
- XML catalogs
- File associations
- Code actions
- Schema Caching
See the changelog for the latest release. You might also find useful information in the project Wiki.
Requirements
- Java JDK (or JRE) 8 or more recent
- Ensure Java path is set in either:
xml.java.home
in VSCode preferencesjava.home
in VSCode preferences- Environment variable
JAVA_HOME
orJDK_HOME
- Note: The path should end at the parent folder that contains the
bin
folder.
Example Path:/usr/lib/jvm/java-1.8.0
ifbin
exists at/usr/lib/jvm/java-1.8.0/bin
. - Note: If the path is not set, the extension will attempt to find the path to the JDK or JRE.
Supported VS Code settings
The following settings are supported:
xml.trace.server
: Trace the communication between VS Code and the XML Language Server in the Output view.xml.catalogs
: Register XML catalog files.xml.logs.client
: Enable/disable logging to the Output view.xml.fileAssociations
: Associate XML Schemas to XML file patterns.xml.format.splitAttributes
: Set totrue
to split node attributes onto multiple lines during formatting. Defaults tofalse
.xml.format.joinCDATALines
: Set totrue
to join lines in CDATA content during formatting. Defaults tofalse
.xml.format.joinContentLines
: Set totrue
to join lines in node content during formatting. Defaults tofalse
.xml.format.joinCommentLines
: Set totrue
to join lines in comments during formatting. Defaults tofalse
.xml.format.preservedNewLines
: Set the maximum amount of newlines between elements. Defaults to2
.xml.format.preserveEmptyContent
: Set totrue
to preserve standalone whitespace content in an element. Defaults tofalse
.xml.format.spaceBeforeEmptyCloseTag
: Set totrue
to insert space before the end of a self closing tag. Defaults totrue
.xml.format.quotations
: Set todoubleQuotes
to format and only use"
, orsingleQuotes
to format and only use'
. Defaults todoubleQuotes
.xml.format.enabled
: Enable/disable formatting.xml.autoCloseTags.enabled
: Enable/disable automatic tag closing.
Note 'editor.autoClosingBrackets' must be turned off to work.xml.java.home
: Set the Java path required to run the XML Language Server. If not set, falls back to either thejava.home
preference or theJAVA_HOME
orJDK_HOME
environment variables.xml.server.vmargs
: Extra VM arguments used to launch the XML Language Server. Requires VS Code restart.xml.symbols.enabled
: Enable/disable document symbols (Outline). Default istrue
.xml.validation.enabled
: Set tofalse
to disable all validation. Defaults totrue
.xml.validation.schema
: Set tofalse
to disable schema validation. Defaults totrue
.xml.validation.noGrammar
: The message severity when a document has no associated grammar. Defaults tohint
.xml.server.workDir
: Set an absolute path for all cached schemas to be stored. Defaults to~/.lsp4xml
.
Since 0.8.0:
xml.codeLens.enabled
: Enable/disable XML CodeLens. Default isfalse
.xml.symbols.excluded
: Disable document symbols (Outline) for the given file name patterns. Updating file name patterns does not automatically reload the Outline view for the relevant file(s). Each file must either be reopened or changed, in order to trigger an Outline view reload.
Since 0.9.1:
xml.validation.disallowDocTypeDecl
: Enable/disable if a fatal error is thrown if the incoming document contains a DOCTYPE declaration. Default isfalse
.xml.validation.resolveExternalEntities
: Enable/disable resolve of external entities. Default isfalse
.
Custom XML Extensions
The LSP4XML Language Server can be extended to support custom completion, hover, validation, rename, etc by using the Java Service Provider Interface (SPI) mechanism. vscode-xml provides the ability use your custom XML support provider, by adding external jars to the XML language server's classpath.
To do that:
-
create a Java project which provides a custom XML extension providing your custom completion, hover, validation, rename, etc:
- create the XML extension like MavenPlugin.
- register your custom completion participant in the XML extension like MavenCompletionParticipant
- register your custom XML extension with Java Service Provider Interface (SPI) mechanism in the /META-INF/services/org.eclipse.lsp4xml.services.extensions.IXMLExtension file.
- build a JAR
your-custom-xml-extension.jar
.
-
create a
vscode extension
which embeds theyour-custom-xml-extension.jar
JAR and declares this JAR path in thepackage.json
:
"contributes": {
"xml.javaExtensions": [
"./jar/your-custom-xml-extension.jar"
]
}
You can see the vscode-xml-maven sample which registers custom maven completion MavenCompletionParticipant for scope:
Contributing
This is an open source project open to anyone. Contributions are extremely welcome!
For information on getting started, refer to the CONTRIBUTING instructions.
CI builds can be installed manually by following these instructions:
-
Download the latest development VSIX archive from here.
(vscode-xml-XXX.vsix)
-
Go to the Extensions section in VSCode.
-
At the top right click the
...
icon. -
Select 'Install from VSIX...' and choose the visx file.
Feedback
- File a bug in GitHub Issues,
- Chat with us on Gitter,
License
EPL 1.0, See LICENSE file.