Don't show a notification on success

This commit is contained in:
nyanotech 2022-03-23 12:05:46 +00:00
parent d98ae82501
commit d4f593c337
Signed by: nyanotech
GPG Key ID: D2D0A9E8F160472B

View File

@ -35,14 +35,11 @@ export function activate(context: vscode.ExtensionContext) {
context.subscriptions.push(vscode.commands.registerCommand('recombobulator.base64', () => { context.subscriptions.push(vscode.commands.registerCommand('recombobulator.base64', () => {
applyEdit(base64); applyEdit(base64);
vscode.window.showInformationMessage('base64-encoded the selection!');
})); }));
context.subscriptions.push(vscode.commands.registerCommand('recombobulator.rot13', () => { context.subscriptions.push(vscode.commands.registerCommand('recombobulator.rot13', () => {
applyEdit(rot13); applyEdit(rot13);
vscode.window.showInformationMessage('rot13\'d the selection!');
})); }));
context.subscriptions.push(vscode.commands.registerCommand('recombobulator.unbase64', () => { context.subscriptions.push(vscode.commands.registerCommand('recombobulator.unbase64', () => {
applyEdit(unbase64); applyEdit(unbase64);
vscode.window.showInformationMessage('base64-decoded the selection!');
})); }));
} }