[mod] xmlTools ->basexTools

This commit is contained in:
Andy Bunce 2022-02-05 22:40:34 +00:00
parent 4cbf4cb568
commit c275d88f77
7 changed files with 232 additions and 78 deletions

View file

@ -1,6 +1,6 @@
import { workspace, Uri } from "vscode";
const ExtensionTopLevelSection = "xmlTools";
const ExtensionTopLevelSection = "basexTools";
export class Configuration {
static get enableXmlTreeView(): boolean {

View file

@ -1,11 +1,11 @@
export namespace commands {
export const evaluateXPath = "xmlTools.evaluateXPath";
export const executeXQuery = "xmlTools.executeXQuery";
export const formatAsXml = "xmlTools.formatAsXml";
export const xmlToText = "xmlTools.xmlToText";
export const textToXml = "xmlTools.textToXml";
export const getCurrentXPath = "xmlTools.getCurrentXPath";
export const minifyXml = "xmlTools.minifyXml";
export const evaluateXPath = "basexTools.evaluateXPath";
export const executeXQuery = "basexTools.executeXQuery";
export const formatAsXml = "basexTools.formatAsXml";
export const xmlToText = "basexTools.xmlToText";
export const textToXml = "basexTools.textToXml";
export const getCurrentXPath = "basexTools.getCurrentXPath";
export const minifyXml = "basexTools.minifyXml";
}
export namespace contextKeys {