Skip to content

Commit

Permalink
remove unnecessary EOL for textNode completion (#865)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eskibear authored Aug 31, 2022
1 parent 8b9aa03 commit 5ab14e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/completion/providers/SchemaProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class SchemaProvider implements IXmlCompletionProvider {
let insertText;
if (e.isLeaf) {
// <textNode>|</textNode>
insertText = `<${name}>$1</${name}>${eol}$0`;
insertText = `<${name}>$1</${name}>$0`;
} else {
// <complexNode>
// |
Expand Down

0 comments on commit 5ab14e1

Please sign in to comment.