Skip to content

Commit

Permalink
change completion provider proxy characters
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthie committed Aug 28, 2020
1 parent 6ee186c commit 86781c9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Release Notes

## 0.1.5
Fix [#2](https://github.com/Arthie/vscode-tailwindcssinjs/issues/2): removed `` ` `` as trigger character

## 0.1.4

Compatible with tailwindcss 1.7.x
Updated to typescript-tailwindcssinjs-plugin 0.3.1
Fix: Downgrading typescript back to 3.x.x fixes [#2](https://github.com/Arthie/vscode-tailwindcssinjs/issues/2)

## 0.1.3

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-tailwindcssinjs",
"version": "0.1.4",
"version": "0.1.5",
"publisher": "Arthie",
"engines": {
"vscode": "^1.44.0"
Expand Down Expand Up @@ -53,7 +53,7 @@
"qna": "https://github.com/Arthie/vscode-tailwindcssinjs/issues",
"dependencies": {
"tailwindcss": "^1.7.6",
"typescript": "^3.9.7",
"typescript": "^4.0.2",
"typescript-tailwindcssinjs-plugin": "^0.3.1"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ export async function activate(context: vscode.ExtensionContext) {
vscode.languages.registerCompletionItemProvider(
SELECTORS,
tailwindcssinjsCompletionProvider,
"`",
" ",
"[",
":"
":",
"\n"
)
);
}
Expand Down
Binary file added vscode-tailwindcssinjs-0.1.5.vsix
Binary file not shown.
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -583,10 +583,10 @@ typescript-template-language-service-decorator@^2.2.0:
resolved "https://registry.yarnpkg.com/typescript-template-language-service-decorator/-/typescript-template-language-service-decorator-2.2.0.tgz#4ee6d580f307fb9239978e69626f2775b8a59b2a"
integrity sha512-xiolqt1i7e22rpqMaprPgSFVgU64u3b9n6EJlAaUYE61jumipKAdI1+O5khPlWslpTUj80YzjUKjJ2jxT0D74w==

typescript@^3.9.7:
version "3.9.7"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz#98d600a5ebdc38f40cb277522f12dc800e9e25fa"
integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==
typescript@^4.0.2:
version "4.0.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.0.2.tgz#7ea7c88777c723c681e33bf7988be5d008d05ac2"
integrity sha512-e4ERvRV2wb+rRZ/IQeb3jm2VxBsirQLpQhdxplZ2MEzGvDkkMmPglecnNDfSUBivMjP93vRbngYYDQqQ/78bcQ==

uniq@^1.0.1:
version "1.0.1"
Expand Down

0 comments on commit 86781c9

Please sign in to comment.