We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77ecc25 commit aaba753Copy full SHA for aaba753
grammars/Kotlin.tmLanguage.json
@@ -173,11 +173,22 @@
173
"name": "comment.block.javadoc.kotlin",
174
"patterns": [
175
{
176
- "match": "@(author|deprecated|return|see|serial|since|version)\\b",
+ "match": "@(return|constructor|receiver|sample|see|author|since|suppress)\\b",
177
"name": "keyword.other.documentation.javadoc.kotlin"
178
},
179
180
- "match": "(@param)\\s+(\\S+)",
+ "match": "(@param|@property)\\s+(\\S+)",
181
+ "captures": {
182
+ "1": {
183
+ "name": "keyword.other.documentation.javadoc.kotlin"
184
+ },
185
+ "2": {
186
+ "name": "variable.parameter.kotlin"
187
+ }
188
189
190
+ {
191
+ "match": "(@param)\\[(\\S+)\\]",
192
"captures": {
193
"1": {
194
0 commit comments