Skip to content

Commit

Permalink
Enable ShortcutPlugin in Code
Browse files Browse the repository at this point in the history
  • Loading branch information
JiuqingSong committed Feb 29, 2024
1 parent 02212f2 commit 782cf27
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
PastePluginCode,
TableCellSelectionCode,
TableEditPluginCode,
// TODO: ShortcutPluginCode,
ShortcutPluginCode,
} from './SimplePluginCode';

export class PluginsCodeBase extends CodeElement {
Expand Down Expand Up @@ -43,7 +43,7 @@ export class PluginsCode extends PluginsCodeBase {
pluginList.edit && new EditPluginCode(),
pluginList.paste && new PastePluginCode(),
pluginList.tableEdit && new TableEditPluginCode(),
// pluginList.shortcut &&new ShortcutPluginCode(),
pluginList.shortcut && new ShortcutPluginCode(),
]);
}
}
Expand Down

0 comments on commit 782cf27

Please sign in to comment.