TypingConfig (typing)
@ckeditor/ckeditor5-typing/src/typing
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( ... );
See all editor options.
Filtering
Properties
-
undoStep : Number
The granularity of undo/redo for typing and deleting. The value
20
means (more or less) that a new undo step is created every 20 characters are inserted or deleted.Defaults to
20