We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a17d557 commit 033e246Copy full SHA for 033e246
jsEngine/settings/Settings.ts
@@ -89,6 +89,9 @@ export class JsEnginePluginSettingTab extends PluginSettingTab {
89
el.setTooltip('Move to current Snippets Folder')
90
.setIcon('archive-restore')
91
.onClick(async () => await this.moveStartupScriptToNewDirectory(file));
92
+ })
93
+ .addToggle(el => {
94
+ el.setValue(settings.startupScripts.contains(file.path)).onChange(async val => this.toggleStartupScript(file, val));
95
});
96
}
97
0 commit comments