chore(ckeditor5/plugins): integrate indent block shortcut

This commit is contained in:
Elian Doran
2025-05-03 17:20:14 +03:00
parent afb987d4dd
commit 2f09411c0d
3 changed files with 47 additions and 39 deletions

View File

@@ -8,6 +8,7 @@ import InternalLinkPlugin from "./plugins/internallink.js";
import ReferenceLink from "./plugins/referencelink.js";
import RemoveFormatLinksPlugin from "./plugins/remove_format_links.js";
import SpecialCharactersEmojiPlugin from "./plugins/special_characters_emoji.js";
import IndentBlockShortcutPlugin from "./plugins/indent_block_shortcut.js";
const TRILIUM_PLUGINS: typeof Plugin[] = [
CutToNotePlugin,
@@ -17,7 +18,8 @@ const TRILIUM_PLUGINS: typeof Plugin[] = [
UploadimagePlugin,
InternalLinkPlugin,
RemoveFormatLinksPlugin,
SpecialCharactersEmojiPlugin
SpecialCharactersEmojiPlugin,
IndentBlockShortcutPlugin
];
export const COMMON_PLUGINS: typeof Plugin[] = [
@@ -78,7 +80,6 @@ export const COMMON_PLUGINS: typeof Plugin[] = [
// MarkdownImportPlugin,
// MentionCustomization,
// IncludeNote,
// indentBlockShortcutPlugin,
PageBreak,
GeneralHtmlSupport,
TextPartLanguage,