@dxos/react-ui-editor 0.7.5-labs.c0e040f → 0.7.5-labs.d199c0f

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2762,7 +2762,14 @@ var createBasicExtensions = (_props) => {
2762
2762
  // https://codemirror.net/docs/ref/#commands.historyKeymap
2763
2763
  ...props.history ? historyKeymap : [],
2764
2764
  // https://codemirror.net/docs/ref/#search.searchKeymap
2765
- ...props.search ? searchKeymap : []
2765
+ ...props.search ? searchKeymap : [],
2766
+ // Disable bindings that conflict with system shortcuts.
2767
+ // TODO(burdon): Catalog global shortcuts.
2768
+ {
2769
+ key: "Mod-Shift-k",
2770
+ preventDefault: true,
2771
+ run: () => true
2772
+ }
2766
2773
  ].filter(isNotFalsy3))
2767
2774
  ].filter(isNotFalsy3);
2768
2775
  };