genius257 / vscode-autoit

AutoIt language extension for Visual Studio Code
https://marketplace.visualstudio.com/items?itemName=genius257.autoit
MIT License
4 stars 3 forks source link

DocBlock support: Summary and Description #41

Closed genius257 closed 7 months ago

genius257 commented 7 months ago

DocBlock support for Files, Functions and Variables. Info about how the structure of the Summary and Description are defined here. The Summary and Description should be available in hover info and suggestion information.

Example for the DocBlock syntax in AutoIt3:

#cs
# A summary informing the user what the associated element does.
#
# A *description*, that can span multiple lines, to go _in-depth_ into
# the details of this element and to provide some background information
# or textual references.
#ce
genius257 commented 7 months ago

This is now added via pull request: #42 With that pull request i have also added code that will help me to add support for DocBlock tags in the future.