diff --git a/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/copy_and_paste/custom_copy_command.dart b/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/copy_and_paste/custom_copy_command.dart index 144558cd5daeb..26e70ec27954a 100644 --- a/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/copy_and_paste/custom_copy_command.dart +++ b/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/copy_and_paste/custom_copy_command.dart @@ -13,7 +13,7 @@ import 'package:flutter/material.dart'; /// - mobile /// final CommandShortcutEvent customCopyCommand = CommandShortcutEvent( - key: 'copy the selected content', + key: 'copy the selected content (with formatting)', command: 'ctrl+c', macOSCommand: 'cmd+c', handler: _copyCommandHandler, diff --git a/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/copy_and_paste/custom_cut_command.dart b/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/copy_and_paste/custom_cut_command.dart index 0ec9244771f69..602556eec0b3e 100644 --- a/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/copy_and_paste/custom_cut_command.dart +++ b/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/copy_and_paste/custom_cut_command.dart @@ -11,7 +11,7 @@ import 'package:flutter/material.dart'; /// - mobile /// final CommandShortcutEvent customCutCommand = CommandShortcutEvent( - key: 'cut the selected content', + key: 'cut the selected content (with formatting)', command: 'ctrl+x', macOSCommand: 'cmd+x', handler: _cutCommandHandler, diff --git a/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/copy_and_paste/custom_paste_command.dart b/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/copy_and_paste/custom_paste_command.dart index 581b392f681cc..8f1b0aa9101c7 100644 --- a/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/copy_and_paste/custom_paste_command.dart +++ b/frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/copy_and_paste/custom_paste_command.dart @@ -18,7 +18,7 @@ import 'package:string_validator/string_validator.dart'; /// - mobile /// final CommandShortcutEvent customPasteCommand = CommandShortcutEvent( - key: 'paste the content', + key: 'paste the content (with formatting)', command: 'ctrl+v', macOSCommand: 'cmd+v', handler: _pasteCommandHandler,