瀏覽代碼

Merge pull request #6697 from ckeditor/i/6663

Docs: Updated keyboard support documentation - added table navigation and widget keystrokes. Closes #6663.
Piotrek Koszuliński 5 年之前
父節點
當前提交
dd765380a1
共有 1 個文件被更改,包括 20 次插入2 次删除
  1. 20 2
      docs/features/keyboard-support.md

+ 20 - 2
docs/features/keyboard-support.md

@@ -64,17 +64,35 @@ Below is a list of the most important keystrokes supported by CKEditor 5 and its
 			<td colspan="2"><kbd>Tab</kbd></td>
 		</tr>
 		<tr>
-			<td>Move selection to the next cell (when in a table)</td>
+			<th colspan="3">When a widget is selected (for example: image, table, horizontal line, etc.)</th>
+		</tr>
+		<tr>
+            <td>Insert a new paragraph directly after a widget</td>
+			<td colspan="2"><kbd>Enter</kbd></td>
+		</tr> 
+		<tr>
+			<td>Insert a new paragraph directly before a widget</td>
+			<td colspan="2"><kbd>Shift</kbd> + <kbd>Enter</kbd></td>
+		</tr>
+		<tr>
+			<th colspan="3">In a table cell</th>
+		</tr>
+		<tr>
+			<td>Move the selection to the next cell</td>
 			<td colspan="2"><kbd>Tab</kbd></td>
 		</tr>
 		<tr>
-			<td>Move selection to the previous cell (when in a table)</td>
+			<td>Move the selection to the previous cell</td>
 			<td colspan="2"><kbd>Shift</kbd> + <kbd>Tab</kbd></td>
 		</tr>
 		<tr>
 			<td>Insert a new table row (when in the last cell of a table)</td>
 			<td colspan="2"><kbd>Tab</kbd></td>
 		</tr>
+        <tr>
+            <td>Navigate through the table</td>
+            <td colspan="2"><kbd>↑</kbd> / <kbd>→</kbd> / <kbd>↓</kbd> / <kbd>←</kbd></td>
+        </tr>
 	</tbody>
 </table>