Skip to content

Commit

Permalink
fix: ctrl+delete does not delete newlines (#917)
Browse files Browse the repository at this point in the history
* fix: ctrl+delete does not delete newlines

* fix: wrong comment

* chore: add collapsed check
  • Loading branch information
Xazin authored Oct 9, 2024
1 parent 728eca2 commit fab3d74
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import 'package:appflowy_editor/appflowy_editor.dart';
import 'package:flutter/material.dart';

/// Backspace key event.
import 'package:appflowy_editor/appflowy_editor.dart';

/// Delete key event.
///
/// - support
/// - desktop
Expand Down Expand Up @@ -96,8 +97,12 @@ CommandShortcutEventHandler _deleteRightWordCommandHandler = (editorState) {
return KeyEventResult.ignored;
}

if (selection.isCollapsed && selection.start.offset == delta.length) {
return deleteCommand.execute(editorState);
}

// we store the position where the current word ends.
var endOfWord = selection.end.moveHorizontal(
Position? endOfWord = selection.end.moveHorizontal(
editorState,
forward: false,
selectionRange: SelectionRange.word,
Expand Down

0 comments on commit fab3d74

Please sign in to comment.