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>
Example xml file:
Place cursor on second line and press
gS.Expected output
Current Output:
The other direction works. But I would like to have a space between all tags:
Expected Output on Join:
Current Output on Join: