mirror of
https://github.com/dragonwocky/obsidian-tray.git
synced 2025-04-04 12:09:03 +00:00
feat: register close vault to command palette
This commit is contained in:
parent
d37152dd4e
commit
aa4e824723
@ -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` |
|
| 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> |
|
| 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
|
The `Relaunch Obsidian` and `Close Vault` actions can be triggered from the tray/menubar context menu,
|
||||||
command palette (search for "Tray: Relaunch Obsidian"). Hotkeys can be assigned to the command via
|
or with the in-app command palette (search for "Tray: Relaunch Obsidian" or "Tray: Close Vault").
|
||||||
Obsidian's built-in hotkey manager.
|
Hotkeys can be assigned to the commands via Obsidian's built-in hotkey manager.
|
||||||
|
|
||||||
### Quick notes
|
### Quick notes
|
||||||
|
|
||||||
|
5
main.js
5
main.js
@ -406,6 +406,11 @@ class TrayPlugin extends obsidian.Plugin {
|
|||||||
name: ACTION_RELAUNCH,
|
name: ACTION_RELAUNCH,
|
||||||
callback: relaunchApp,
|
callback: relaunchApp,
|
||||||
});
|
});
|
||||||
|
this.addCommand({
|
||||||
|
id: "close-vault",
|
||||||
|
name: ACTION_CLOSE,
|
||||||
|
callback: closeVault,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
onunload() {
|
onunload() {
|
||||||
log(LOG_CLEANUP);
|
log(LOG_CLEANUP);
|
||||||
|
Loading…
Reference in New Issue
Block a user