Skip to content

Commit 1fa9bba

Browse files
committed
feat: Changes information messages
1 parent a71d7fd commit 1fa9bba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ export function activate(context: vscode.ExtensionContext) {
66
const intelliSenseSettings = new IntelliSenseSettings(vscode.workspace.getConfiguration())
77

88
let gunsOff = vscode.commands.registerCommand('withoutGuns.gunsOff', () => {
9-
vscode.window.showInformationMessage('Your guns are turned off ;-)');
9+
vscode.window.showInformationMessage('We just took your guns. That\'s for your own good.');
1010
intelliSenseSettings.removeIntelliSense();
1111
});
1212

1313
let gunsOn = vscode.commands.registerCommand('withoutGuns.gunsOn', () => {
14-
vscode.window.showInformationMessage('Your guns are turned on.');
14+
vscode.window.showInformationMessage('You got your guns back. Be careful what you do with them.');
1515
intelliSenseSettings.applyInitialSettings();
1616
});
1717

0 commit comments

Comments
 (0)