8
0
Просмотр исходного кода

Docs/Tests: Ctrl+A -> Ctrl/⌘+A

Aleksander Nowodzinski 5 лет назад
Родитель
Сommit
08d1bf7fd8

+ 1 - 1
packages/ckeditor5-select-all/src/selectallcommand.js

@@ -13,7 +13,7 @@ import Command from '@ckeditor/ckeditor5-core/src/command';
  * The select all command.
  * The select all command.
  *
  *
  * It is used by the {@link module:select-all/selectallediting~SelectAllEditing select all editing feature} to handle
  * It is used by the {@link module:select-all/selectallediting~SelectAllEditing select all editing feature} to handle
- * the <kbd>Ctrl</kbd>+<kbd>A</kbd> keystroke.
+ * the <kbd>Ctrl/⌘</kbd>+<kbd>A</kbd> keystroke.
  *
  *
  * Executing this command changes the {@glink framework/guides/architecture/editing-engine#model model}
  * Executing this command changes the {@glink framework/guides/architecture/editing-engine#model model}
  * selection so it contains the entire content of the editable root of the editor the selection is
  * selection so it contains the entire content of the editable root of the editor the selection is

+ 1 - 1
packages/ckeditor5-select-all/src/selectallediting.js

@@ -17,7 +17,7 @@ const SELECT_ALL_KEYSTROKE = parseKeystroke( 'Ctrl+A' );
  * The select all editing feature.
  * The select all editing feature.
  *
  *
  * It registers the `'selectAll'` {@link module:select-all/selectallcommand~SelectAllCommand command}
  * It registers the `'selectAll'` {@link module:select-all/selectallcommand~SelectAllCommand command}
- * and the <kbd>Ctrl</kbd>+<kbd>A</kbd> keystroke listener which executes it.
+ * and the <kbd>Ctrl/⌘</kbd>+<kbd>A</kbd> keystroke listener which executes it.
  *
  *
  * @extends module:core/plugin~Plugin
  * @extends module:core/plugin~Plugin
  */
  */

+ 2 - 2
packages/ckeditor5-select-all/tests/manual/selectall.md

@@ -3,7 +3,7 @@
 ### Selecting the entire editor content
 ### Selecting the entire editor content
 
 
 1. Put the selection anywhere but inside the image caption or table cell.
 1. Put the selection anywhere but inside the image caption or table cell.
-2. Press <kbd>Ctrl</kbd>+<kbd>A</kbd>.
+2. Press <kbd>Ctrl/⌘</kbd>+<kbd>A</kbd>.
 3. The entire content should be selected. You should be able to remove it using the <kbd>Backspace</kbd> key.
 3. The entire content should be selected. You should be able to remove it using the <kbd>Backspace</kbd> key.
 4. Repeat the scenario but instead of the keystroke use the toolbar button.
 4. Repeat the scenario but instead of the keystroke use the toolbar button.
 
 
@@ -13,6 +13,6 @@
     a. an image caption
     a. an image caption
     b. the caption of the image in the table
     b. the caption of the image in the table
     c. the table cell.
     c. the table cell.
-2. Press <kbd>Ctrl</kbd>+<kbd>A</kbd>.
+2. Press <kbd>Ctrl/⌘</kbd>+<kbd>A</kbd>.
 3. The caption content should be selected. **The selection should not go beyond the nested editable.**
 3. The caption content should be selected. **The selection should not go beyond the nested editable.**
 4. Repeat the scenario but instead of the keystroke use the toolbar button.
 4. Repeat the scenario but instead of the keystroke use the toolbar button.