@tauri-apps/plugin-global-shortcut
Register global shortcuts.
Property | Type | Defined in |
---|---|---|
id | number | Source: undefined |
shortcut | string | Source: undefined |
state | "Released" | "Pressed" | Source: undefined |
type ShortcutHandler: (event) => void;
Parameter | Type |
---|---|
event | ShortcutEvent |
void
Source: undefined
function isRegistered(shortcut): Promise<boolean>
Determines whether the given shortcut is registered by this application or not.
If the shortcut is registered by another application, it will still return false
.
Parameter | Type | Description |
---|---|---|
shortcut | string | shortcut definition, modifiers and key separated by ”+” e.g. CmdOrControl+Q |
Promise
<boolean
>
import { isRegistered } from '@tauri-apps/plugin-global-shortcut';const isRegistered = await isRegistered('CommandOrControl+P');
2.0.0
Source: undefined
function register(shortcuts, handler): Promise<void>
Register a global shortcut or a list of shortcuts.
The handler is called when any of the registered shortcuts are pressed by the user.
If the shortcut is already taken by another application, the handler will not be triggered. Make sure the shortcut is as unique as possible while still taking user experience into consideration.
Parameter | Type | Description |
---|---|---|
shortcuts | string | string [] | - |
handler | ShortcutHandler | Shortcut handler callback - takes the triggered shortcut as argument |
Promise
<void
>
import { register } from '@tauri-apps/plugin-global-shortcut';
// register a single hotkeyawait register('CommandOrControl+Shift+C', (event) => { if (event.state === "Pressed") { console.log('Shortcut triggered'); }});
// or register multiple hotkeys at onceawait register(['CommandOrControl+Shift+C', 'Alt+A'], (event) => { console.log(`Shortcut ${event.shortcut} triggered`);});
2.0.0
Source: undefined
function unregister(shortcuts): Promise<void>
Unregister a global shortcut or a list of shortcuts.
Parameter | Type |
---|---|
shortcuts | string | string [] |
Promise
<void
>
import { unregister } from '@tauri-apps/plugin-global-shortcut';
// unregister a single hotkeyawait unregister('CmdOrControl+Space');
// or unregister multiple hotkeys at the same timeawait unregister(['CmdOrControl+Space', 'Alt+A']);
2.0.0
Source: undefined
function unregisterAll(): Promise<void>
Unregister all global shortcuts.
Promise
<void
>
import { unregisterAll } from '@tauri-apps/plugin-global-shortcut';await unregisterAll();
2.0.0
Source: undefined
Tauri v2.8 中文网 - 粤ICP备13048890号
Nodejs.cn 旗下网站