From aa4e82472362b1a019508b1aef18722d94c0d748 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Tue, 11 Apr 2023 16:32:23 +1000 Subject: [PATCH] feat: register close vault to command palette --- README.md | 6 +++--- main.js | 5 +++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index aaf045f..3bde0eb 100644 --- a/README.md +++ b/README.md @@ -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) | CmdOrCtrl+Shift+Tab | -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 diff --git a/main.js b/main.js index 4bd5c96..46ac959 100644 --- a/main.js +++ b/main.js @@ -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);