Keyboard
The Keyboard APIs are useful to make your actions accessible via the keyboard shortcuts. Shortcuts help users to use your command without touching the mouse.
A keyboard shortcut is defined by one or more modifier keys (command, control, etc.) and a single key equivalent (a character or special key).
A collection of shortcuts that are commonly used throughout Raycast. Using them should help provide a more consistent experience and preserve muscle memory.
Name | Shortcut |
---|---|
Copy | ⌘ + ⇧ + C |
CopyDeeplink | ⌘ + ⇧ + C |
CopyName | ⌘ + ⇧ + . |
CopyPath | ⌘ + ⇧ + , |
Duplicate | ⌘ + D |
Edit | ⌘ + E |
MoveDown | ⌘ + ⇧ + ↓ |
MoveUp | ⌘ + ⇧ + ↑ |
New | ⌘ + N |
Open | ⌘ + O |
OpenWith | ⌘ + ⇧ + O |
Pin | ⌘ + ⇧ + P |
Refresh | ⌘ + R |
Remove | ⌃ + X |
RemoveAll | ⌃ + ⇧ + X |
ToggleQuickLook | ⌘ + Y |
import { Action, ActionPanel, Detail } from "@raycast/api";
export default function Command() {
return (
<Detail
markdown="Let's play some games 👾"
actions={
<ActionPanel title="Game controls">
<Action title="Up" shortcut={{ modifiers: ["opt"], key: "arrowUp" }} onAction={() => console.log("Go up")} />
<Action
title="Down"
shortcut={{ modifiers: ["opt"], key: "arrowDown" }}
onAction={() => console.log("Go down")}
/>
<Action
title="Left"
shortcut={{ modifiers: ["opt"], key: "arrowLeft" }}
onAction={() => console.log("Go left")}
/>
<Action
title="Right"
shortcut={{ modifiers: ["opt"], key: "arrowRight" }}
onAction={() => console.log("Go right")}
/>
</ActionPanel>
}
/>
);
}
Property | Description | Type |
---|---|---|
key* | The key of the keyboard shortcut. | |
modifiers* | The modifier keys of the keyboard shortcut. |
KeyEquivalent: "a" |
"b" |
"c" |
"d" |
"e" |
"f" |
"g" |
"h" |
"i" |
"j" |
"k" |
"l" |
"m" |
"n" |
"o" |
"p" |
"q" |
"r" |
"s" |
"t" |
"u" |
"v" |
"w" |
"x" |
"y" |
"z" |
"0" |
"1" |
"2" |
"3" |
"4" |
"5" |
"6" |
"7" |
"8" |
"9" |
"." |
"," |
";" |
"=" |
"+" |
"-" |
"[" |
"]" |
"{" |
"}" |
"«" |
"»" |
"(" |
")" |
"/" |
"\\" |
"'" |
"`" |
"§" |
"^" |
"@" |
"$" |
"return" |
"delete" |
"deleteForward" |
"tab" |
"arrowUp" |
"arrowDown" |
"arrowLeft" |
"arrowRight" |
"pageUp" |
"pageDown" |
"home" |
"end" |
"space" |
"escape" |
"enter" |
"backspace";
KeyModifier: "cmd" | "ctrl" | "opt" | "shift";
Last modified 1mo ago