forked from external/vscode-xml
Implements the changes from #154. Co-Authored-By: Jonathan Carter <joncart@microsoft.com>
61 lines
2 KiB
TypeScript
61 lines
2 KiB
TypeScript
export const extensionPrefix = "xmlTools";
|
|
|
|
export namespace commands {
|
|
export const evaluateXPath = "xmlTools.evaluateXPath";
|
|
export const executeXQuery = "xmlTools.executeXQuery";
|
|
export const formatAsXml = "xmlTools.formatAsXml";
|
|
export const minifyXml = "xmlTools.minifyXml";
|
|
}
|
|
|
|
export namespace contextKeys {
|
|
export const xmlTreeViewEnabled = "xmlTreeViewEnabled";
|
|
}
|
|
|
|
export namespace configKeys {
|
|
export const enableXmlTreeView = "enableXmlTreeView";
|
|
export const ignoreDefaultNamespace = "ignoreDefaultNamespace";
|
|
export const persistXPathQuery = "persistXPathQuery";
|
|
export const removeCommentsOnMinify = "removeCommentsOnMinify";
|
|
export const splitAttributesOnFormat = "splitAttributesOnFormat";
|
|
export const splitXmlnsOnFormat = "splitXmlnsOnFormat";
|
|
export const xqueryExecutionArguments = "xqueryExecutionArguments";
|
|
export const xqueryExecutionEngine = "xqueryExecutionEngine";
|
|
export const xqueryExecutionInputLimit = "xqueryExecutionInputLimit";
|
|
export const xqueryExecutionInputSearchPattern = "xqueryExecutionInputSearchPattern";
|
|
}
|
|
|
|
export namespace diagnosticCollections {
|
|
export const xquery = "XQueryDiagnostics";
|
|
}
|
|
|
|
export namespace languageIds {
|
|
export const xml = "xml";
|
|
export const xsd = "xsd";
|
|
export const xquery = "xquery";
|
|
}
|
|
|
|
export namespace nativeCommands {
|
|
export const cursorMove = "cursorMove";
|
|
export const openGlobalSettings = "workbench.action.openGlobalSettings";
|
|
export const revealLine = "revealLine";
|
|
export const setContext = "setContext";
|
|
}
|
|
|
|
export namespace stateKeys {
|
|
export const xpathQueryHistory = "xpathQueryHistory";
|
|
export const xPathQueryLast = "xPathQueryLast";
|
|
}
|
|
|
|
export namespace uriSchemes {
|
|
export const file = "file";
|
|
export const untitled = "untitled";
|
|
}
|
|
|
|
export namespace views {
|
|
export const xmlTreeView = "xmlTreeView";
|
|
}
|
|
|
|
export namespace xmlFormatterImplementations {
|
|
export const classic = "classic";
|
|
export const v2 = "v2";
|
|
}
|