feat: add inline icons for edit

This commit is contained in:
2026-07-16 02:49:55 +05:00
parent bda6c6b2e0
commit 7c0584707a
35 changed files with 1280 additions and 94 deletions
-7
View File
@@ -21,11 +21,4 @@ export class VscodeConfigProvider implements IConfigProvider {
config.get<string>("globalPath") ?? getSettingDefault("globalPath");
return globalPath || undefined;
}
getFileExtension(): string {
const config = vscode.workspace.getConfiguration(getConfigSection());
return (
config.get<string>("fileExtension") ?? getSettingDefault("fileExtension")
);
}
}