Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/support/get-help.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
title: Get help
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.
---

# Get help

Need assistance with Plane? We're here to help you get unstuck and make the most of your workspace.
Expand Down
123 changes: 123 additions & 0 deletions docs/support/keyboard-shortcuts.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
---
title: Keyboard shortcuts
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.
---

# Keyboard shortcuts

Speed up your workflow in Plane with keyboard shortcuts. Access this list anytime by pressing `Cmd + /` (Mac) or `Ctrl + /` (Windows/Linux).

## Work item actions

| Action | Shortcut |
|--------|----------|
| Change state | `S` |
| Change priority | `P` |
| Assign to | `A` |
| Assign to me | `I` |
| Change estimate | `⌘ + E` |
| Add to cycle | `⌘ + C` |
| Add to modules | `⌘ + M` |
| Add labels | `L` |
| Subscribe to notifications | `⌘ + S` |
| Delete | `⌘ + ⌫` |
| Copy ID | `⌘ + .` |
| Copy title | `⌘ + ⇧ + '` |
| Copy URL | `⌘ + ⇧ + ,` |

## Cycle actions

| Action | Shortcut |
|--------|----------|
| Add to favorites | `⌘ + F` |
| Copy URL | `⌘ + ⇧ + ,` |

## Module actions

| Action | Shortcut |
|--------|----------|
| Add/remove members | `M` |
| Change status | `S` |
| Add to favorites | `⌘ + F` |
| Copy URL | `⌘ + ⇧ + ,` |

## Page actions

| Action | Shortcut |
|--------|----------|
| Lock | `⌘ + L` |
| Make public | `⌘ + A` |
| Archive | `⌘ + R` |
| Add to favorites | `⌘ + F` |
| Copy URL | `⌘ + ⇧ + ,` |

## Initiative actions

| Action | Shortcut |
|--------|----------|
| Change state | `S` |
| Change lead | `L` |
| Copy URL | `⌘ + ⇧ + ,` |

## Create

| Action | Shortcut |
|--------|----------|
| New work item | `N` then `I` |
| New page | `N` then `D` |
| New view | `N` then `V` |
| New cycle | `N` then `C` |
| New module | `N` then `M` |
| New project | `N` then `P` |
| New teamspace | `N` then `T` |
| New initiative | `N` then `N` |
| New dashboard | `N` then `B` |
| New customer | `N` then `U` |

## Navigate

| Action | Shortcut |
|--------|----------|
| Open a cycle | `O` then `C` |
| Open a module | `O` then `M` |
| Open a project view | `O` then `V` |
| Open a project setting | `O` then `S` |
| Open a project | `O` then `P` |
| Open a teamspace | `O` then `T` |
| Open an initiative | `O` then `N` |
| Open a customer record | `O` then `U` |
| Open a workspace setting | `O` then `S` |
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Keyboard Shortcuts: Settings Conflict

Both Open a project setting and Open a workspace setting are mapped to the same shortcut O then S, creating a conflict. Keyboard shortcuts must be unique - the application cannot execute two different actions from the same key combination.

Fix in Cursor Fix in Web

| Open a workspace | `O` then `W` |
| Go to home | `G` then `H` |
| Go to inbox | `G` then `X` |
| Go to your work | `G` then `Y` |
| Go to epics | `G` then `E` |
| Go to work items | `G` then `I` |
| Go to pages | `G` then `D` |
| Go to cycles | `G` then `C` |
| Go to modules | `G` then `M` |
| Go to project views | `G` then `V` |
| Go to intake | `G` then `K` |
| Go to project settings | `G` then `S` |
| Go to project archives | `G` then `R` |
| Go to workspace analytics | `G` then `A` |
| Go to workspace settings | `G` then `S` |
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Conflicting Keyboard Shortcuts

Both Go to project settings and Go to workspace settings are mapped to the same shortcut G then S, creating a conflict. Keyboard shortcuts must be unique - the application cannot execute two different actions from the same key combination.

Fix in Cursor Fix in Web

| Go to workspace drafts | `G` then `J` |
| Go to workspace archives | `G` then `R` |
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Conflicting Shortcuts Break Navigation

Both Go to project archives and Go to workspace archives are mapped to the same shortcut G then R, creating a conflict. Keyboard shortcuts must be unique - the application cannot execute two different actions from the same key combination.

Fix in Cursor Fix in Web

| Go to teamspaces | `G` then `T` |
| Go to initiatives | `G` then `N` |
| Go to dashboards | `G` then `B` |
| Go to customer records | `G` then `U` |
| Go to projects list | `G` then `P` |

## Miscellaneous

| Action | Shortcut |
|--------|----------|
| Toggle app sidebar | `⌘ + B` |
| Copy current page URL | `⌘ + ⇧ + C` |
| Open keyboard shortcuts | `⌘ + /` |

---

**Note:** `⌘` represents Command on Mac and Ctrl on Windows/Linux. `⇧` represents Shift, and `⌫` represents Delete/Backspace.
1 change: 1 addition & 0 deletions sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ const sidebars: SidebarsConfig = {
label: "Support and resources",
items: [
"support/get-help",
"support/keyboard-shortcuts",
{
type: "category",
label: "Resources",
Expand Down