Awesome
coc-xml
<img width="594" alt="Screen Shot 2019-07-26 at 23 26 04" src="https://user-images.githubusercontent.com/345274/61962925-3e667700-affd-11e9-8831-ecf78ef2bfbf.png">fork of vscode-xml, provides support for creating and editing XML documents, based on the LemMinX XML Language Server, running with Java.
Install
:CocInstall coc-xml
Requirements
- Java JDK (or JRE) 8 or more recent
- Ensure Java path is set in either:
xml.java.home
orjava.home
incoc-settings.json
- Environment variable
JAVA_HOME
orJDK_HOME
Supported settings
The following settings are supported:
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.trace.server
: Trace the communication between coc and the XML Language Server in the Output view.xml.catalogs
: Register XML catalog files.xml.codeLens.enabled
: Enable/disable XML CodeLens. Defaults totrue
.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. Defaults totrue
.xml.autoCloseTags.enabled
: Enable/disable automatic tag closing. Defaults totrue
.xml.server.vmargs
: Extra VM arguments used to launch the XML Language Server. Requires coc restart.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.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
.xml.server.workDir
: Set an absolute path for all cached schemas to be stored. Defaults to~/.lemminx
.xml.symbols.enabled
: Enable/disable document symbols (Outline). Default totrue
.xml.symbols.excluded
: Disable document symbols (Outline) for the given file name patterns. Defaults to[]
.
More detailed info in the vscode-xml Wiki.
Available commands
xml.updateLanguageServer
: download latest version of LemMinX from repo.eclipse.orgxml.show.references
: Show XML references
License
MIT