Skip to content

Commit 02249ff

Browse files
committed
Changes for 1.6.0
1 parent e965d8f commit 02249ff

File tree

7 files changed

+206
-78
lines changed

7 files changed

+206
-78
lines changed

.github/README.md

Lines changed: 87 additions & 72 deletions
Large diffs are not rendered by default.

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# Version 1.6.0 (April 17, 2025)
2+
3+
This version re-introduces snippet language association which was removed in v1.4.0. All languages that support HTML-like markup should now support the snippets. This was done to address the concern from many users regarding snippets coming up in all files unless the extension was disabled. Thanks to a bit of AI assistance, I was able to find most of the outliers which makes this more reliable. Thank you for the feedback!
4+
5+
If there is a language that you want to see snippets supported in, feel free to raise a PR or an [issue](https://github.com/dons20/UIKit-VSCode/issues).
6+
7+
* 🔧 Fixed an incorrect snippet trigger for `uk-parallax-start-end`
8+
9+
* 💡 Updated the Github Readme to fix the broken badges, preview images, missing entries, and other small details.
10+
111
# Version 1.5.0 (April 5, 2025)
212

313
Thank you for using this extension, here's a little update for you.

LICENSE renamed to LICENSE.md

File renamed without changes.

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,18 @@
77

88
![](promo/demo.gif)
99

10-
## [🌞 View the Changelog](https://marketplace.visualstudio.com/items/Keno.uikit-3-snippets/changelog) to see what's new!
10+
[📃 View the Changelog](https://marketplace.visualstudio.com/items/Keno.uikit-3-snippets/changelog) to see what's new!
11+
1112
---
1213

14+
## Introduction
15+
1316
This extension adds all the snippets from [UIKit 3.0](https://getuikit.com/docs/introduction) into Visual Studio Code for easy access and usage.
1417

1518
To show support for the project, you can do any of the following:
1619

1720
- [Rate the extension on the marketplace](https://marketplace.visualstudio.com/items?itemName=Keno.uikit-3-snippets)
1821
- [Star the repository](https://github.com/dons20/UIKit-VSCode)
19-
- [Follow me on Twitter](https://twitter.com/KCInnovations)
2022

2123
> Please remember to direct your issues, queries and suggestions to the [issues page](https://github.com/dons20/UIKit-VSCode/issues) of the repository.
2224

package.json

Lines changed: 103 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "UIkit 3.0 Snippets",
44
"publisher": "Keno",
55
"description": "UIkit 3.0 Snippets based on official documentation",
6-
"version": "1.5.0",
6+
"version": "1.6.0",
77
"license": "SEE LICENSE IN LICENSE.md",
88
"icon": "images/icon.png",
99
"galleryBanner": {
@@ -51,6 +51,107 @@
5151
"contributes": {
5252
"snippets": [
5353
{
54+
"language": "html",
55+
"path": "./snippets/snippets.code-snippets"
56+
},
57+
{
58+
"language": "php",
59+
"path": "./snippets/snippets.code-snippets"
60+
},
61+
{
62+
"language": "twig",
63+
"path": "./snippets/snippets.code-snippets"
64+
},
65+
{
66+
"language": "latte",
67+
"path": "./snippets/snippets.code-snippets"
68+
},
69+
{
70+
"language": "handlebars",
71+
"path": "./snippets/snippets.code-snippets"
72+
},
73+
{
74+
"language": "mustache",
75+
"path": "./snippets/snippets.code-snippets"
76+
},
77+
{
78+
"language": "ejs",
79+
"path": "./snippets/snippets.code-snippets"
80+
},
81+
{
82+
"language": "pug",
83+
"path": "./snippets/snippets.code-snippets"
84+
},
85+
{
86+
"language": "jade",
87+
"path": "./snippets/snippets.code-snippets"
88+
},
89+
{
90+
"language": "nunjucks",
91+
"path": "./snippets/snippets.code-snippets"
92+
},
93+
{
94+
"language": "liquid",
95+
"path": "./snippets/snippets.code-snippets"
96+
},
97+
{
98+
"language": "markdown",
99+
"path": "./snippets/snippets.code-snippets"
100+
},
101+
{
102+
"language": "vue",
103+
"path": "./snippets/snippets.code-snippets"
104+
},
105+
{
106+
"language": "svelte",
107+
"path": "./snippets/snippets.code-snippets"
108+
},
109+
{
110+
"language": "astro",
111+
"path": "./snippets/snippets.code-snippets"
112+
},
113+
{
114+
"language": "erb",
115+
"path": "./snippets/snippets.code-snippets"
116+
},
117+
{
118+
"language": "razor",
119+
"path": "./snippets/snippets.code-snippets"
120+
},
121+
{
122+
"language": "blade",
123+
"path": "./snippets/snippets.code-snippets"
124+
},
125+
{
126+
"language": "edge",
127+
"path": "./snippets/snippets.code-snippets"
128+
},
129+
{
130+
"language": "javascriptreact",
131+
"path": "./snippets/snippets.code-snippets"
132+
},
133+
{
134+
"language": "typescriptreact",
135+
"path": "./snippets/snippets.code-snippets"
136+
},
137+
{
138+
"language": "xml",
139+
"path": "./snippets/snippets.code-snippets"
140+
},
141+
{
142+
"language": "svg",
143+
"path": "./snippets/snippets.code-snippets"
144+
},
145+
{
146+
"language": "xaml",
147+
"path": "./snippets/snippets.code-snippets"
148+
},
149+
{
150+
"language": "haml",
151+
"path": "./snippets/snippets.code-snippets"
152+
},
153+
{
154+
"language": "volt",
54155
"path": "./snippets/snippets.code-snippets"
55156
},
56157
{
@@ -59,4 +160,4 @@
59160
}
60161
]
61162
}
62-
}
163+
}

promo/demo.mp4

-2.22 MB
Binary file not shown.

snippets/snippets.code-snippets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2146,7 +2146,7 @@
21462146
"description": "[Attribute] Sets the start and end values of a property by seperating them with a comma"
21472147
},
21482148
"snippet-uk-parallax-multiple-stops": {
2149-
"prefix": "uk-parallax-start-end",
2149+
"prefix": "uk-parallax-multiple-stops",
21502150
"body": ["uk-parallax=\"${1:x: 0,50,150}\""],
21512151
"description": "[Attribute] Sets multiple animation stops by seperating them with a comma"
21522152
},
@@ -2810,7 +2810,7 @@
28102810
"\r$BLOCK_COMMENT_START Section will be revealed by the previous section $BLOCK_COMMENT_END",
28112811
"<div uk-sticky=\"position: bottom; overflow-flip: true; start: -100%; end: 0\"></div>"
28122812
],
2813-
"description": "The overflow-flip option disables the sticky behavior for oversized content. Instead, it only flips the sticky position if the element is larger than the viewport."
2813+
"description": "Creates an element that only flips the sticky position if the element is larger than the viewport."
28142814
},
28152815
"snippet-uk-subnav": {
28162816
"prefix": "uk-subnav",

0 commit comments

Comments
 (0)