parent
							
								
									54ff41c736
								
							
						
					
					
						commit
						66b2bc3de2
					
				
					 3 changed files with 38 additions and 5 deletions
				
			
		| 
						 | 
					@ -29,7 +29,7 @@ export class V2XmlFormatter implements XmlFormatter {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        let output = "";
 | 
					        let output = "";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        let indentLevel = options.initialIndentLevel;
 | 
					        let indentLevel = options.initialIndentLevel || 0;
 | 
				
			||||||
        let attributeQuote = "";
 | 
					        let attributeQuote = "";
 | 
				
			||||||
        let lineBreakSpree = false;
 | 
					        let lineBreakSpree = false;
 | 
				
			||||||
        let lastWordCharacter: string | undefined;
 | 
					        let lastWordCharacter: string | undefined;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -22,10 +22,43 @@ export class XmlFormattingEditProvider implements DocumentFormattingEditProvider
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    provideDocumentRangeFormattingEdits(document: TextDocument, range: Range, options: FormattingOptions, token: CancellationToken): ProviderResult<TextEdit[]> {
 | 
					    provideDocumentRangeFormattingEdits(document: TextDocument, range: Range, options: FormattingOptions, token: CancellationToken): ProviderResult<TextEdit[]> {
 | 
				
			||||||
        let xml = document.getText(range);
 | 
					        const allXml = document.getText();
 | 
				
			||||||
 | 
					        let selectedXml = document.getText(range);
 | 
				
			||||||
 | 
					        const extFormattingOptions = XmlFormattingOptionsFactory.getXmlFormattingOptions(options, document);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        xml = this.xmlFormatter.formatXml(xml, XmlFormattingOptionsFactory.getXmlFormattingOptions(options, document));
 | 
					        const selectionStartOffset = document.offsetAt(range.start);
 | 
				
			||||||
 | 
					        let tabCount = 0;
 | 
				
			||||||
 | 
					        let spaceCount = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return [ TextEdit.replace(range, xml) ];
 | 
					        for (let i = (selectionStartOffset - 1); i >= 0; i--) {
 | 
				
			||||||
 | 
					            const cc = allXml.charAt(i);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            if (/\t/.test(cc)) {
 | 
				
			||||||
 | 
					                tabCount++;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            else if (/ /.test(cc)) {
 | 
				
			||||||
 | 
					                spaceCount++;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            else {
 | 
				
			||||||
 | 
					                break;
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        if (options.insertSpaces) {
 | 
				
			||||||
 | 
					            extFormattingOptions.initialIndentLevel = Math.ceil(spaceCount / (options.tabSize || 1));
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        else {
 | 
				
			||||||
 | 
					            extFormattingOptions.initialIndentLevel = tabCount;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        selectedXml = this.xmlFormatter.formatXml(selectedXml, extFormattingOptions);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // we need to remove the leading whitespace because the formatter will add an indent before the first element
 | 
				
			||||||
 | 
					        selectedXml = selectedXml.replace(/^\s+/, "");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        return [TextEdit.replace(range, selectedXml)];
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -10,7 +10,7 @@ export interface XmlFormattingOptions {
 | 
				
			||||||
    removeCommentsOnMinify: boolean;
 | 
					    removeCommentsOnMinify: boolean;
 | 
				
			||||||
    splitAttributesOnFormat: boolean;
 | 
					    splitAttributesOnFormat: boolean;
 | 
				
			||||||
    splitXmlnsOnFormat: boolean;
 | 
					    splitXmlnsOnFormat: boolean;
 | 
				
			||||||
    initialIndentLevel: number;
 | 
					    initialIndentLevel?: number;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export class XmlFormattingOptionsFactory {
 | 
					export class XmlFormattingOptionsFactory {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue