Skip to content

Commit 162cd53

Browse files
authored
Keyboard shortcuts (#365)
1 parent bcc073e commit 162cd53

File tree

3 files changed

+129
-0
lines changed

3 files changed

+129
-0
lines changed

docs/support/get-help.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
title: Get help
3+
description: Find support for Plane through in-app chat, email, Discord community, and developer resources. Report bugs, request features, and get answers to your questions.
4+
---
5+
16
# Get help
27

38
Need assistance with Plane? We're here to help you get unstuck and make the most of your workspace.
Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
---
2+
title: Keyboard shortcuts
3+
description: Complete list of keyboard shortcuts in Plane. Speed up your workflow with shortcuts for work items, navigation, cycles, modules, pages, and more. Press Cmd+/ to access anytime.
4+
---
5+
6+
# Keyboard shortcuts
7+
8+
Speed up your workflow in Plane with keyboard shortcuts. Access this list anytime by pressing `Cmd + /` (Mac) or `Ctrl + /` (Windows/Linux).
9+
10+
## Work item actions
11+
12+
| Action | Shortcut |
13+
|--------|----------|
14+
| Change state | `S` |
15+
| Change priority | `P` |
16+
| Assign to | `A` |
17+
| Assign to me | `I` |
18+
| Change estimate | `⌘ + E` |
19+
| Add to cycle | `⌘ + C` |
20+
| Add to modules | `⌘ + M` |
21+
| Add labels | `L` |
22+
| Subscribe to notifications | `⌘ + S` |
23+
| Delete | `⌘ + ⌫` |
24+
| Copy ID | `⌘ + .` |
25+
| Copy title | `⌘ + ⇧ + '` |
26+
| Copy URL | `⌘ + ⇧ + ,` |
27+
28+
## Cycle actions
29+
30+
| Action | Shortcut |
31+
|--------|----------|
32+
| Add to favorites | `⌘ + F` |
33+
| Copy URL | `⌘ + ⇧ + ,` |
34+
35+
## Module actions
36+
37+
| Action | Shortcut |
38+
|--------|----------|
39+
| Add/remove members | `M` |
40+
| Change status | `S` |
41+
| Add to favorites | `⌘ + F` |
42+
| Copy URL | `⌘ + ⇧ + ,` |
43+
44+
## Page actions
45+
46+
| Action | Shortcut |
47+
|--------|----------|
48+
| Lock | `⌘ + L` |
49+
| Make public | `⌘ + A` |
50+
| Archive | `⌘ + R` |
51+
| Add to favorites | `⌘ + F` |
52+
| Copy URL | `⌘ + ⇧ + ,` |
53+
54+
## Initiative actions
55+
56+
| Action | Shortcut |
57+
|--------|----------|
58+
| Change state | `S` |
59+
| Change lead | `L` |
60+
| Copy URL | `⌘ + ⇧ + ,` |
61+
62+
## Create
63+
64+
| Action | Shortcut |
65+
|--------|----------|
66+
| New work item | `N` then `I` |
67+
| New page | `N` then `D` |
68+
| New view | `N` then `V` |
69+
| New cycle | `N` then `C` |
70+
| New module | `N` then `M` |
71+
| New project | `N` then `P` |
72+
| New teamspace | `N` then `T` |
73+
| New initiative | `N` then `N` |
74+
| New dashboard | `N` then `B` |
75+
| New customer | `N` then `U` |
76+
77+
## Navigate
78+
79+
| Action | Shortcut |
80+
|--------|----------|
81+
| Open a cycle | `O` then `C` |
82+
| Open a module | `O` then `M` |
83+
| Open a project view | `O` then `V` |
84+
| Open a project setting | `O` then `S` |
85+
| Open a project | `O` then `P` |
86+
| Open a teamspace | `O` then `T` |
87+
| Open an initiative | `O` then `N` |
88+
| Open a customer record | `O` then `U` |
89+
| Open a workspace setting | `O` then `S` |
90+
| Open a workspace | `O` then `W` |
91+
| Go to home | `G` then `H` |
92+
| Go to inbox | `G` then `X` |
93+
| Go to your work | `G` then `Y` |
94+
| Go to epics | `G` then `E` |
95+
| Go to work items | `G` then `I` |
96+
| Go to pages | `G` then `D` |
97+
| Go to cycles | `G` then `C` |
98+
| Go to modules | `G` then `M` |
99+
| Go to project views | `G` then `V` |
100+
| Go to intake | `G` then `K` |
101+
| Go to project settings | `G` then `S` |
102+
| Go to project archives | `G` then `R` |
103+
| Go to workspace analytics | `G` then `A` |
104+
| Go to workspace settings | `G` then `S` |
105+
| Go to workspace drafts | `G` then `J` |
106+
| Go to workspace archives | `G` then `R` |
107+
| Go to teamspaces | `G` then `T` |
108+
| Go to initiatives | `G` then `N` |
109+
| Go to dashboards | `G` then `B` |
110+
| Go to customer records | `G` then `U` |
111+
| Go to projects list | `G` then `P` |
112+
113+
## Miscellaneous
114+
115+
| Action | Shortcut |
116+
|--------|----------|
117+
| Toggle app sidebar | `⌘ + B` |
118+
| Copy current page URL | `⌘ + ⇧ + C` |
119+
| Open keyboard shortcuts | `⌘ + /` |
120+
121+
---
122+
123+
**Note:** `` represents Command on Mac and Ctrl on Windows/Linux. `` represents Shift, and `` represents Delete/Backspace.

sidebars.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,7 @@ const sidebars: SidebarsConfig = {
322322
label: "Support and resources",
323323
items: [
324324
"support/get-help",
325+
"support/keyboard-shortcuts",
325326
{
326327
type: "category",
327328
label: "Resources",

0 commit comments

Comments
 (0)