Closed paulomorgado closed 3 years ago
Too much newlines eaten when pasting documentation comments
Paste documentation comments:
/// <summary> /// docs /// </summary>
before a declaration
public class C
The declaration becomes part of the comment
/// <summary> /// docs /// </summary>public class C
The result should be
/// <summary> /// docs /// </summary> public class C
Installed product versions
Description
Too much newlines eaten when pasting documentation comments
Steps to recreate
Paste documentation comments:
before a declaration
Current behavior
The declaration becomes part of the comment
Expected behavior
The result should be