We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 896ba36 commit d2d1c7eCopy full SHA for d2d1c7e
src/swings/index.ts
@@ -29,13 +29,16 @@ class CodeSwingTemplateProvider {
29
const templateProvider = new CodeSwingTemplateProvider();
30
31
function loadSwingManifests() {
32
- store.gists.concat(store.starredGists).forEach(async (gist) => {
33
- const manifest = gist.files[SWING_FILE];
34
- if (manifest) {
35
- await vscode.workspace.fs.readFile(fileNameToUri(gist.id, SWING_FILE));
36
- updateGistTags(gist);
37
- }
38
- });
+ store.gists
+ .concat(store.starredGists)
+ .concat(store.archivedGists)
+ .forEach(async (gist) => {
+ const manifest = gist.files[SWING_FILE];
+ if (manifest) {
+ await vscode.workspace.fs.readFile(fileNameToUri(gist.id, SWING_FILE));
39
+ updateGistTags(gist);
40
+ }
41
+ });
42
43
templateProvider._onDidChangeTemplate.fire();
44
}
0 commit comments