fwcd / kotlin-language-server

Kotlin code completion, diagnostics and more for any editor/IDE using the Language Server Protocol
MIT License
1.62k stars 203 forks source link

Update kdoc keywords according to https://kotlinlang.org/docs/kotlin-doc.html #482

Closed a-stewart closed 1 year ago

a-stewart commented 1 year ago

Fixes #481

Updates the kdoc comments according to the kotlin documentation.

Removes @deprecated which is explicitly excluded in the documentation, as well as @serial and @version which are not listed as supported.

It then adds support for @constructor, @receiver, @sample, @suppress and @property.

It also supports the @param[name] syntax which is given as an example in the docs - no other tags are mentioned to support this name.

image

fwcd commented 1 year ago

Cool stuff, thanks for investigating this!