Remove references to syntax themes

This commit is contained in:
Veronica Berglyd Olsen
2025-06-02 20:21:35 +02:00
parent 55e601cf9d
commit 10475f32fb
3 changed files with 5 additions and 6 deletions
+1 -2
View File
@@ -553,11 +553,10 @@ class Config:
self._confPath.mkdir(exist_ok=True)
self._dataPath.mkdir(exist_ok=True)
# Also create the syntax, themes and icons folders if possible
# Also create the themes and icons folders if possible
if self._dataPath.is_dir():
(self._dataPath / "cache").mkdir(exist_ok=True)
(self._dataPath / "icons").mkdir(exist_ok=True)
(self._dataPath / "syntax").mkdir(exist_ok=True)
(self._dataPath / "themes").mkdir(exist_ok=True)
self._recentPaths.loadCache()