We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e882b9f commit d117104Copy full SHA for d117104
.changeset/chilly-cheetahs-cross.md
@@ -0,0 +1,5 @@
1
+---
2
+'@shopify/theme-language-server-common': patch
3
4
+
5
+Fix LiquidDoc @param completion placeholder regression
packages/theme-language-server-common/src/utils/liquidDoc.ts
@@ -37,7 +37,7 @@ export const SUPPORTED_LIQUID_DOC_TAG_HANDLES = {
37
" @param {number} [fav_num] - The person's favorite number\n" +
38
" @param {product} prod - The person's chosen product\n" +
39
'{% enddoc %}\n',
40
- template: `param {$1} $2$0`,
+ template: `param {$2} $1$0`,
41
},
42
[SupportedDocTagTypes.Example]: {
43
description: 'Provides an example on how to use the snippet.',
0 commit comments