-
Notifications
You must be signed in to change notification settings - Fork 90
Open
Description
Example xml file:
<graph id="G" edgedefault="undirected">
<edge id="e6" source="n5" target="n4"> <data key="d1">1.1</data> <data key="d2">1.1</data> </edge>
</graph>Place cursor on second line and press gS.
Expected output
<graph id="G" edgedefault="undirected">
<edge id="e6" source="n5" target="n4">
<data key="d1">1.1</data>
<data key="d2">1.1</data>
</edge>
</graph>
Current Output:
<graph id="G" edgedefault="undirected">
<edge id="e6" source="n5" target="n4">
<data key="d1">1.1</data> <data key="d2">1.1</data>
</edge>
</graph>The other direction works. But I would like to have a space between all tags:
Expected Output on Join:
<graph id="G" edgedefault="undirected">
<edge id="e6" source="n5" target="n4"><data key="d1">1.1</data> <data key="d2">1.1</data></edge>
</graph>Current Output on Join:
<graph id="G" edgedefault="undirected">
<edge id="e6" source="n5" target="n4"><data key="d1">1.1</data> <data key="d2">1.1</data></edge>
</graph>Metadata
Metadata
Assignees
Labels
No labels