-
Notifications
You must be signed in to change notification settings - Fork 728
Description
Hi all - I'm new to this language server but am curious whether it supports autocomplete for C# docblocks.
Some of my API projects make use of embedded C# docblocks and annotations to export documentation for our developer site. In the past, I would type /// into visual studio and it would pre-fill a docblock for my API method; I then had an analyzer that would examine the file, extract the code comments, and publish them to the developer site.
Is this something that's supported? I can't find any reference to docblocks in the settings.
I didn't see any existing issues mentioning this item, so perhaps this is an intentional design decision?
Steps to reproduce
In front of a public class member or method, type /// to begin a docblock.
Expected behavior
The docblock is auto-filled out using the template:
/// <summary>
/// (cursor placed here)
/// </summary>
/// <param name="p1"></param>
Actual behavior
Nothing happens