Skip to content

Commit

Permalink
feat: Changes information messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ironcev committed Sep 28, 2017
1 parent a71d7fd commit 1fa9bba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ export function activate(context: vscode.ExtensionContext) {
const intelliSenseSettings = new IntelliSenseSettings(vscode.workspace.getConfiguration())

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

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

Expand Down

0 comments on commit 1fa9bba

Please sign in to comment.