From: KlzXS <klzx+github@klzx.cf>
Date: Sun, 8 Nov 2020 12:20:36 +0000 (+0000)
Subject: Clear up which files are removed
X-Git-Tag: v3.5~14^2
X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=49936d1ca23c56ad6bbf1e43d701f5f3efd575b5;p=nnn.git

Clear up which files are removed
---

diff --git a/plugins/dups b/plugins/dups
index a3b1c5d6..1cba8a8a 100755
--- a/plugins/dups
+++ b/plugins/dups
@@ -22,10 +22,9 @@ tmpfile=$(mktemp "$TMPDIR/.nnnXXXXXX")
 
 printf "\
 ## This is an overview of all duplicate files found.
-## After editiing this file you will be prompted to remove some of them.
-## You can choose between removing all the commented out files, all the uncommented ones or none at all.
-## Lines with double comments (##) are always ignored.
-## If you choose to remove, you will be given a choice between removing with force or interactively for each file.\n
+## Comment out the files you wish to remove. You will be given an option to cancel.
+## Lines with double comments (##) are ignored.
+## If you choose to remove, you will be given a choice between removing files with force or interactively.\n
 " > "$tmpfile"
 
 # shellcheck disable=SC2016
@@ -43,13 +42,11 @@ p' | sed -E 's/^.{32}  (.*) d[0-9]*$/\1/' >> "$tmpfile"
 
 "$EDITOR" "$tmpfile"
 
-printf "Remove commented files? (yes/no/abort) [default=a]: "
+printf "Remove commented files? (yes/no) [default=n]: "
 read -r commented
 
 if [ "$commented" = "y" ]; then
 	sedcmd="/^(##|[^#]).*/d; /^$/d; s/^# *(.*)$/\1/"
-elif [ "$commented" = "n" ]; then
-	sedcmd="/^#.*/d; /^$/d; s/^ *(.*)$/\1/"
 else
 	printf "Press any key to exit"
 	read -r _