Skip to content

Commit 2fba589

Browse files
committed
hide tooltip
hide tooltip
1 parent 145420c commit 2fba589

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ All notable changes to the `Vue` extension will be documented in this file.
88
- 2019.12.01 Change the extension logo
99
- 2019.12.02 Update html and javascript sinppets
1010
- 2019.12.03 Add vue snippets
11+
- 2019.08.21 Add vue snippets
1112
- 2020.08.22 Add syntax highlight
1213
- 2020.08.23 Support formatting
1314

extension.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,11 @@ function activate(context) {
2323
if (activeTextEditor && activeTextEditor.document.languageId === 'vue') {
2424
format.init();
2525
} else {
26-
vscode.window.showInformationMessage('It‘s not a .vue file');
26+
// vscode.window.showInformationMessage('It‘s not a .vue file');
2727
}
2828
});
2929
statusBarUi.StatusBarUi.init(vscode.workspace.getConfiguration("vue3snippets").get("enable-compile-vue-file-on-did-save-code"));
3030
}
3131
exports.activate = activate;
32-
function deactivate() {
33-
}
32+
function deactivate() { };
3433
exports.deactivate = deactivate;

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"url": "https://github.com/Wscats"
1010
},
1111
"publisher": "Wscats",
12-
"version": "1.0.6",
12+
"version": "1.0.7",
1313
"license": "MIT",
1414
"engines": {
1515
"vscode": "^1.40.0"

0 commit comments

Comments
 (0)