I would like to add a button, that pulls up plugin settings for my plugin.
Is there a way to do this?
e.g. plugin code:
this.button.addEventListener('click', () => {
this.plugin.openSettings()
})
I would like to add a button, that pulls up plugin settings for my plugin.
Is there a way to do this?
e.g. plugin code:
this.button.addEventListener('click', () => {
this.plugin.openSettings()
})
Found it:
this.app.setting.open()
this.app.setting.openTabById('bulk-exporter')