N°5298 - Merge work from 9bf0addc9c with changes from the WIP CKEditor build repo

This commit is contained in:
Molkobain
2024-05-24 23:35:36 +02:00
parent c178fa4677
commit a956627187
88 changed files with 461 additions and 195 deletions

View File

@@ -0,0 +1,10 @@
import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
/**
* KeyboardShortcut Plugin.
*
* - Dispatch submit event on the closest editor form when Ctrl+Enter pressed
*/
export default class KeyboardShortcut extends Plugin {
static get pluginName(): string;
init(): void;
}