Improved:

- We can open the log pane also from the command palette now.
- Now, the hidden file scanning interval could be configured to 0.
- `Check database configuration` now points out that we do not have administrator permission.
This commit is contained in:
vorotamoroz
2023-09-22 17:59:32 +09:00
parent 4835fce62a
commit 3773e57429
2 changed files with 30 additions and 18 deletions

View File

@@ -576,7 +576,13 @@ export default class ObsidianLiveSyncPlugin extends Plugin
this.addRibbonIcon("view-log", "Show log", () => {
this.showView(VIEW_TYPE_LOG);
});
this.addCommand({
id: "view-log",
name: "Show log",
callback: () => {
this.showView(VIEW_TYPE_LOG);
}
});
this.addSettingTab(new ObsidianLiveSyncSettingTab(this.app, this));
this.app.workspace.onLayoutReady(this.onLayoutReady.bind(this));