aboutsummaryrefslogtreecommitdiff
path: root/src/sc_editor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sc_editor.c')
-rw-r--r--src/sc_editor.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/sc_editor.c b/src/sc_editor.c
index ffc895f..32974fb 100644
--- a/src/sc_editor.c
+++ b/src/sc_editor.c
@@ -723,6 +723,12 @@ static void do_backspace(struct frame *fr, SCEditor *e)
printf("delete block\n");
delete_text_from_frame(e->cursor_frame, e->sel_start, e->sel_end, wrapw);
+ /* Cursor goes at start of deletion */
+ e->cursor_para = e->sel_start.para;
+ e->cursor_pos = e->sel_start.pos;
+ e->cursor_trail = e->sel_start.trail;
+ e->sel_active = 0;
+
} else {
/* Delete one character */