diff --git a/lib/models/rules/insert.dart b/lib/models/rules/insert.dart index debaf71b..557277db 100644 --- a/lib/models/rules/insert.dart +++ b/lib/models/rules/insert.dart @@ -155,8 +155,8 @@ class AutoExitBlockRule extends InsertRule { return null; } - // retain(1) should be '\n', set it with no attribute - return Delta()..retain(index)..retain(1, null); + // retain(1) should be '\n', set it with no attribute (default to null) + return Delta()..retain(index)..retain(1); } }