mirror of
https://github.com/nyanotech/recombobulator
synced 2025-12-16 03:20:22 -08:00
Don't show a notification on success
This commit is contained in:
parent
d98ae82501
commit
d4f593c337
@ -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!');
|
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user