Skip to content

Commit

Permalink
Update src/extension.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Peter Donovan <[email protected]>
  • Loading branch information
vinzbarbuto and petervdonovan authored Jul 16, 2024
1 parent f311bf3 commit ec3e44d
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,38 +116,6 @@ export async function activate(context: vscode.ExtensionContext) {
registerCollapseAllCommand(context);
registerCollapseAllLibraryCommand(context);

// context.subscriptions.push(
// vscode.workspace.onDidDeleteFiles(async (e) => {
// if (e.files.length > 0) {
// e.files.forEach( (file) => {
// if (file.path.endsWith('.lf')) {
// lfDataProviderLocal.refreshTree();
// lfDataProviderLibrary.refreshTree();
// }
// });
// }
// }),
// vscode.workspace.onDidRenameFiles((e) => {
// if (e.files.length > 0) {
// e.files.forEach(async (file) => {
// if (file.newUri.path.endsWith('.lf')) {
// lfDataProviderLocal.refreshTree();
// lfDataProviderLibrary.refreshTree();
// }
// });
// }
// }),
// vscode.workspace.onDidCreateFiles((e) => {
// if (e.files.length > 0) {
// e.files.forEach(async (file) => {
// if (file.path.endsWith('.lf')) {
// lfDataProviderLibrary.refreshTree();
// }
// });
// }
// })
// );

context.subscriptions.push(vscode.commands.registerCommand(
"linguafranca.checkDocker", checkDependencies.checkDocker
));
Expand Down

0 comments on commit ec3e44d

Please sign in to comment.