feat: register close vault to command palette

This commit is contained in:
dragonwocky 2023-04-11 16:32:23 +10:00
parent d37152dd4e
commit aa4e824723
Signed by: dragonwocky
GPG Key ID: 7998D08F7D7BD7A8
2 changed files with 8 additions and 3 deletions

View File

@ -19,9 +19,9 @@ toggle app window visibility and can create quick notes from anywhere in your op
| Tray icon tooltip | Set a title to identify the tray/menubar icon by. The `{{vault}}` placeholder will be replaced by the vault name. | `{{vault}} \| Obsidian` |
| Toggle window focus hotkey | This hotkey is registered globally and will be detected even if Obsidian does not have keyboard focus. Format: [Electron accelerator](https://www.electronjs.org/docs/latest/api/accelerator) | <kbd>CmdOrCtrl+Shift+Tab</kbd> |
The `Relaunch Obsidian` action can be triggered from the tray/menubar context menu, or with the in-app
command palette (search for "Tray: Relaunch Obsidian"). Hotkeys can be assigned to the command via
Obsidian's built-in hotkey manager.
The `Relaunch Obsidian` and `Close Vault` actions can be triggered from the tray/menubar context menu,
or with the in-app command palette (search for "Tray: Relaunch Obsidian" or "Tray: Close Vault").
Hotkeys can be assigned to the commands via Obsidian's built-in hotkey manager.
### Quick notes

View File

@ -406,6 +406,11 @@ class TrayPlugin extends obsidian.Plugin {
name: ACTION_RELAUNCH,
callback: relaunchApp,
});
this.addCommand({
id: "close-vault",
name: ACTION_CLOSE,
callback: closeVault,
});
}
onunload() {
log(LOG_CLEANUP);