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 = [];