forked from external/vscode-xml
Consolidate Constants
This commit is contained in:
parent
bce1b3dd87
commit
df45b80085
7 changed files with 53 additions and 26 deletions
|
|
@ -7,8 +7,6 @@ import { XmlFormatterFactory } from "../xml-formatter";
|
|||
import { XmlFormattingEditProvider } from "../xml-formatting-edit-provider";
|
||||
import { XmlFormattingOptionsFactory } from "../xml-formatting-options";
|
||||
|
||||
export const FormatAsXmlCommandName = "xmlTools.formatAsXml";
|
||||
|
||||
export function formatAsXml(editor: TextEditor, edit: TextEditorEdit): void {
|
||||
const xmlFormattingEditProvider = new XmlFormattingEditProvider(workspace.getConfiguration(constants.extensionPrefix), XmlFormatterFactory.getXmlFormatter());
|
||||
const formattingOptions = {
|
||||
|
|
@ -40,11 +38,11 @@ export function formatAsXml(editor: TextEditor, edit: TextEditorEdit): void {
|
|||
editBuilder.replace(textEdit.range, textEdit.newText);
|
||||
|
||||
// wiggle the cursor to deselect the formatted XML (is there a non-hacky way to go about this?)
|
||||
await commands.executeCommand("cursorMove", {
|
||||
await commands.executeCommand(constants.nativeCommands.cursorMove, {
|
||||
to: "left",
|
||||
by: "character"
|
||||
});
|
||||
await commands.executeCommand("cursorMove", {
|
||||
await commands.executeCommand(constants.nativeCommands.cursorMove, {
|
||||
to: "right",
|
||||
by: "character"
|
||||
});
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ import { XmlFormatterFactory } from "../xml-formatter";
|
|||
import { XmlFormattingEditProvider } from "../xml-formatting-edit-provider";
|
||||
import { XmlFormattingOptionsFactory } from "../xml-formatting-options";
|
||||
|
||||
export const MinifyXmlCommandName = "xmlTools.minifyXml";
|
||||
|
||||
export function minifyXml(editor: TextEditor, edit: TextEditorEdit): void {
|
||||
const xmlFormatter = XmlFormatterFactory.getXmlFormatter();
|
||||
const xmlFormattingOptions = XmlFormattingOptionsFactory.getXmlFormattingOptions({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue