We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0046ca6 commit e01449cCopy full SHA for e01449c
lib/src/widgets/raw_editor.dart
@@ -1431,7 +1431,14 @@ class RawEditorState extends EditorState
1431
1432
@override
1433
void performSelector(String selectorName) {
1434
- // TODO: implement performSelector
+ final intent = intentForMacOSSelector(selectorName);
1435
+
1436
+ if (intent != null) {
1437
+ final primaryContext = primaryFocus?.context;
1438
+ if (primaryContext != null) {
1439
+ Actions.invoke(primaryContext, intent);
1440
+ }
1441
1442
}
1443
1444
0 commit comments