From 9a3f3ed14ec19f7e87aed0ced24e8edd2ccd91c2 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 5 May 2026 14:53:08 +0530 Subject: [PATCH] ... --- kittens/dnd/drop.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kittens/dnd/drop.go b/kittens/dnd/drop.go index 59f84fe3a..561289efc 100644 --- a/kittens/dnd/drop.go +++ b/kittens/dnd/drop.go @@ -449,6 +449,9 @@ func (dnd *dnd) end_drop(success bool) { if dnd.drop_status.reading_data { dnd.lp.QueueDnDData(DC{ Type: 'r', Operation: utils.IfElse(success, dnd.drop_status.action, 0)}) // end drop + if success && dnd.drop_status.action == 2 && !dnd.drop_status.is_remote_client { + // TODO: delete all dropped files/dirs/symlinks after successful move + } } dnd.reset_drop() }