Major completion provider overhaul; pluigin load and pattern improvements; css overhaul/cleanup; source view state modes added

This commit is contained in:
2026-02-14 16:15:54 -06:00
parent 4ce4d85842
commit 5273c58ed6
63 changed files with 2738 additions and 745 deletions

View File

@@ -32,11 +32,8 @@ class ManifestManager:
for path, folder in [
[join(self._plugins_path, item), item]
if
os.path.isdir( join(self._plugins_path, item) )
else
None
for item in os.listdir(self._plugins_path)
if os.path.isdir( join(self._plugins_path, item) )
]:
self.load(folder, path)