Let your editor cheer you on while you code!

fix(extension): set importance to 1

Changed files
+14 -1
+13
.sail.yml
··· 1 + tasks: 2 + build: 3 + image: node:carbon 4 + command: 5 + - npm 6 + args: 7 + - install 8 + test: 9 + image: node:carbon 10 + command: 11 + - yarn 12 + args: 13 + - test
+1 -1
extension.js
··· 7 7 console.log('"vscode-cheer" standing by!') 8 8 9 9 // Make a space for supportive messages 10 - vscode.window.createStatusBarItem('left', 5) 10 + vscode.window.createStatusBarItem('left', 1) 11 11 12 12 // On save — 13 13 vscode.workspace.onWillSaveTextDocument(function() {