From 5ab18db74e9bf61db10e30b9239f9730dbe64446 Mon Sep 17 00:00:00 2001 From: Alfred Date: Tue, 7 Apr 2026 12:51:57 -0400 Subject: [PATCH] v2.0.1: Remove dead getProjectLanguages function, bloat cleanup --- extension.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/extension.js b/extension.js index 75b9efa..a9ad331 100644 --- a/extension.js +++ b/extension.js @@ -37,12 +37,6 @@ function getProjectStructure() { } catch (_) { return ''; } } -function getProjectLanguages() { - const root = getWorkspaceRoot(); - const exts = safeExec('find . -maxdepth 4 -type f -not -path "./.git/*" -not -path "./node_modules/*" -not -path "./.venv/*" -not -path "./vendor/*" | sed "s/.*\\.//" | sort | uniq -c | sort -rn | head -20', root); - return exts || ''; -} - function detectProjectType() { const root = getWorkspaceRoot(); const indicators = [];