TypingConfig
interface
The configuration of the typing features. Used by the typing features in @ckeditor/ckeditor5-typing package.
ClassicEditor
.create( editorElement, {
typing: ... // Typing feature options.
} )
.then( ... )
.catch( ... );
Copy code
See all editor options.
Properties
-
module:typing/typingconfig~TypingConfig#transformationsThe configuration of the
TextTransformationfeature.Read more in
TextTransformationConfig. -
undoStep : number | undefinedmodule:typing/typingconfig~TypingConfig#undoStepThe granularity of undo/redo for typing and deleting. The value
20means (more or less) that a new undo step is created every 20 characters are inserted or deleted.Defaults to
20