def get_customizable():
log("Getting the list of theme packages with customization support")
installed_themes = get_installed(logging=False)
customizable_themes = []
theme_res = sublime.find_resources(".supports-a-file-icon-customization")
for res in theme_res:
pkg = re.sub(PATTERN, "", res)
if pkg in installed_themes:
customizable_themes.append(pkg)
dump(customizable_themes)
return customizable_themes
评论列表
文章目录