Skip to content

Commit

Permalink
gist message dispose
Browse files Browse the repository at this point in the history
  • Loading branch information
shanalikhan committed May 27, 2017
1 parent f7cadb3 commit 2c8ee4c
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 @@ -171,7 +171,7 @@ export async function activate(context: vscode.ExtensionContext) {
newGIST = true;
syncSetting.gist = gistID;
completed = true;
vscode.window.setStatusBarMessage("Sync : New gist created.");
vscode.window.setStatusBarMessage("Sync : New gist created.",2000);
}
else {
vscode.window.showInformationMessage("Sync : Unable to create Gist.");
Expand All @@ -188,7 +188,7 @@ export async function activate(context: vscode.ExtensionContext) {
await myGi.CreateEmptyGIST(localConfig.publicGist, customSettings.gistDescription).then(async function (gistID: string) {
if (gistID) {
syncSetting.gist = gistID;
vscode.window.setStatusBarMessage("Sync : New gist created.");
vscode.window.setStatusBarMessage("Sync : New gist created.",2000);
}
else {
vscode.window.showInformationMessage("Sync : Unable to create Gist.");
Expand Down

0 comments on commit 2c8ee4c

Please sign in to comment.