Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Remove list of keyboard shortcuts from FAQ page #61591

Merged
merged 1 commit into from
May 12, 2024
Merged
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
218 changes: 0 additions & 218 deletions docs/getting-started/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,224 +68,6 @@ Yes. There are a lot! There is a help modal showing all available keyboard short

You can see the whole list going to the top right corner menu of the new editor and clicking on “Keyboard Shortcuts” (or by using the keyboard shortcut <kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>H</kbd> on Linux/Windows and <kbd>⌃</kbd><kbd>⌥</kbd><kbd>H</kbd> on macOS).

This is the canonical list of keyboard shortcuts:

#### Editor shortcuts

<table>
<thead>
<tr>
<th>Shortcut description</th>
<th>Linux/Windows shortcut</th>
<th>macOS shortcut</th>
</tr>
</thead>
<tbody>
<tr>
<td>Display keyboard shortcuts.</td>
<td><kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>H</kbd></td>
<td><kbd>⌃</kbd><kbd>⌥</kbd><kbd>H</kbd></td>
</tr>
<tr>
<td>Save your changes.</td>
<td><kbd>Ctrl</kbd>+<kbd>S</kbd></td>
<td><kbd>⌘</kbd><kbd>S</kbd></td>
</tr>
<tr>
<td>Undo your last changes.</td>
<td><kbd>Ctrl</kbd>+<kbd>Z</kbd></td>
<td><kbd>⌘</kbd><kbd>Z</kbd></td>
</tr>
<tr>
<td>Redo your last undo.</td>
<td><kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>Z</kbd></td>
<td><kbd>⇧</kbd><kbd>⌘</kbd><kbd>Z</kbd></td>
</tr>
<tr>
<td>Show or hide the Settings sidebar.</td>
<td><kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>,</kbd></td>
<td><kbd>⇧</kbd><kbd>⌘</kbd><kbd>,</kbd></td>
</tr>
<tr>
<td>Open the list view menu.</td>
<td><kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>O</kbd></td>
<td><kbd>⌃</kbd><kbd>⌥</kbd><kbd>O</kbd></td>
</tr>
<tr>
<td>Navigate to the next part of the editor.</td>
<td><kbd>Ctrl</kbd>+<kbd>`</kbd></td>
<td><kbd>⌃</kbd><kbd>`</kbd></td>
</tr>
<tr>
<td>Navigate to the previous part of the editor.</td>
<td><kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>`</kbd></td>
<td><kbd>⌃</kbd><kbd>⇧</kbd><kbd>`</kbd></td>
</tr>
<tr>
<td>Navigate to the next part of the editor (alternative).</td>
<td><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>N</kbd></td>
<td><kbd>⌃</kbd><kbd>⌥</kbd><kbd>N</kbd></td>
</tr>
<tr>
<td>Navigate to the previous part of the editor (alternative).</td>
<td><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>P</kbd></td>
<td><kbd>⌃</kbd><kbd>⌥</kbd><kbd>P</kbd></td>
</tr>
<tr>
<td>Navigate to the nearest toolbar.</td>
<td><kbd>Alt</kbd>+<kbd>F10</kbd></td>
<td><kbd>⌥</kbd><kbd>F10</kbd></td>
</tr>
<tr>
<td>Switch between visual editor and code editor.</td>
<td><kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>M</kbd></td>
<td><kbd>⇧</kbd><kbd>⌥</kbd><kbd>⌘</kbd><kbd>M</kbd></td>
</tr>
<tr>
<td>Toggle fullscreen mode.</td>
<td><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Shift</kbd>+<kbd>F</kbd></td>
<td><kbd>⇧</kbd><kbd>⌥</kbd><kbd>⌘</kbd><kbd>F</kbd></td>
</tr>
</tbody>
</table>

#### Selection shortcuts

<table>
<thead>
<tr>
<th>Shortcut description</th>
<th>Linux/Windows shortcut</th>
<th>macOS shortcut</th>
</tr>
</thead>
<tbody>
<tr>
<td>Select all text when typing. Press again to select all blocks.</td>
<td><kbd>Ctrl</kbd>+<kbd>A</kbd></td>
<td><kbd>⌘</kbd><kbd>A</kbd></td>
</tr>
<tr>
<td>Clear selection.</td>
<td><kbd>Esc</kbd></td>
<td><kbd>Esc</kbd></td>
</tr>
<tr>
<td>Select text across multiple blocks.</td>
<td><kbd>Shift</kbd>+<kbd>Arrow (⇦, ⇧, ⇨, ⇩)</kbd></td>
<td><kbd>Shift</kbd>+<kbd>Arrow (⇦, ⇧, ⇨, ⇩)</kbd></td>
</tr>
</tbody>
</table>

#### Block shortcuts

<table>
<thead>
<tr>
<th>Shortcut description</th>
<th>Linux/Windows shortcut</th>
<th>macOS shortcut</th>
</tr>
</thead>
<tbody>
<tr>
<td>Duplicate the selected block(s).</td>
<td><kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>D</kbd></td>
<td><kbd>⇧</kbd><kbd>⌘</kbd><kbd>D</kbd></td>
</tr>
<tr>
<td>Remove the selected block(s).</td>
<td><kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>Z</kbd></td>
<td><kbd>⌃</kbd><kbd>⌥</kbd><kbd>Z</kbd></td>
</tr>
<tr>
<td>Insert a new block before the selected block(s).</td>
<td><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>T</kbd></td>
<td><kbd>⌥</kbd><kbd>⌘</kbd><kbd>T</kbd></td>
</tr>
<tr>
<td>Insert a new block after the selected block(s).</td>
<td><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Y</kbd></td>
<td><kbd>⌥</kbd><kbd>⌘</kbd><kbd>Y</kbd></td>
</tr>
<tr>
<td>Move the selected block(s) up.</td>
<td><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Shift</kbd>+<kbd>T</kbd></td>
<td><kbd>⌥</kbd><kbd>⌘</kbd><kbd>⇧</kbd><kbd>T</kbd></td>
</tr>
<tr>
<td>Move the selected block(s) down.</td>
<td><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Shift</kbd>+<kbd>Y</kbd></td>
<td><kbd>⌥</kbd><kbd>⌘</kbd><kbd>⇧</kbd><kbd>Y</kbd></td>
</tr>
<tr>
<td>Change the block type after adding a new paragraph.</td>
<td><kbd>/</kbd></td>
<td><kbd>/</kbd></td>
</tr>
<tr>
<td>Create a group block from the selected multiple blocks.</td>
<td><kbd>Ctrl</kbd>+<kbd>G</kbd></td>
<td><kbd>⌘</kbd><kbd>⇧</kbd><kbd>G</kbd></td>
</tr>
<tr>
<td>Remove multiple selected blocks.</td>
<td><kbd>del</kbd><kbd>backspace</kbd></td>
<td><kbd>del</kbd><kbd>backspace</kbd></td>
</tr>
</tbody>
</table>

#### Text formatting

<table>
<thead>
<tr>
<th>Shortcut description</th>
<th>Linux/Windows shortcut</th>
<th>macOS shortcut</th>
</tr>
</thead>
<tbody>
<tr>
<td>Make the selected text bold.</td>
<td><kbd>Ctrl</kbd>+<kbd>B</kbd></td>
<td><kbd>⌘</kbd><kbd>B</kbd></td>
</tr>
<tr>
<td>Make the selected text italic.</td>
<td><kbd>Ctrl</kbd>+<kbd>I</kbd></td>
<td><kbd>⌘</kbd><kbd>I</kbd></td>
</tr>
<tr>
<td>Underline the selected text.</td>
<td><kbd>Ctrl</kbd>+<kbd>U</kbd></td>
<td><kbd>⌘</kbd><kbd>U</kbd></td>
</tr>
<tr>
<td>Convert the selected text into a link.</td>
<td><kbd>Ctrl</kbd>+<kbd>K</kbd></td>
<td><kbd>⌘</kbd><kbd>K</kbd></td>
</tr>
<tr>
<td>Remove a link.</td>
<td><kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>K</kbd></td>
<td><kbd>⇧</kbd><kbd>⌘</kbd><kbd>K</kbd></td>
</tr>
<tr>
<td>Add a strikethrough to the selected text.</td>
<td><kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>D</kbd></td>
<td><kbd>⌃</kbd><kbd>⌥</kbd><kbd>D</kbd></td>
</tr>
<tr>
<td>Display the selected text in a monospaced font.</td>
<td><kbd>Shift</kbd>+<kbd>Alt</kbd>+<kbd>X</kbd></td>
<td><kbd>⌃</kbd><kbd>⌥</kbd><kbd>X</kbd></td>
</tr>
</tbody>
</table>

Here is a brief animation illustrating how to find and use the keyboard shortcuts:

![GIF showing how to access keyboard shortcuts](https://make.wordpress.org/core/files/2020/07/keyboard-shortcuts.gif)
Expand Down
Loading