We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac9b1fd commit b12a3bfCopy full SHA for b12a3bf
src/extension.ts
@@ -4,7 +4,7 @@ import { runQmlFormatter } from './formatter';
4
5
export function activate(context: vscode.ExtensionContext) {
6
7
- let logger = vscode.window.createOutputChannel("QML Formatter", { log: true });
+ let logger = vscode.window.createOutputChannel("QML Format", { log: true });
8
9
let loggerDisposable = new vscode.Disposable(() => {
10
logger.dispose();
@@ -41,7 +41,7 @@ export function activate(context: vscode.ExtensionContext) {
41
},
42
});
43
44
- logger.info("QML Formatter activated.");
+ logger.info("QML Format activated.");
45
46
context.subscriptions.push(registerDisposable);
47
context.subscriptions.push(loggerDisposable);
0 commit comments