From d80fdf335b665b1fe01eb0e1e4028f93ceb026aa Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sat, 24 Jul 2021 01:51:20 +0530 Subject: [PATCH] Check if file is already selected before appending in picker mode --- src/nnn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index b240a63e..e409d708 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -6662,8 +6662,8 @@ nochange: #endif /* If opened as vim plugin and Enter/^M pressed, pick */ if (g_state.picker && (sel == SEL_OPEN)) { - appendfpath(newpath, mkpath(path, pent->name, newpath)); - writesel(pselbuf, selbufpos - 1); + if (!(pdents[cur].flags & FILE_SELECTED)) + appendfpath(newpath, mkpath(path, pent->name, newpath)); return EXIT_SUCCESS; }