Skip to content

Commit

Permalink
fix: renamed duplicate shortcut commands (AppFlowy-IO#4196)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnsahMohammad authored Dec 24, 2023
1 parent 0371a28 commit 9b55f5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9b55f5b

Please sign in to comment.