commit 8f8094dc6e58d228286d85df97c16d5de66a42e5 parent fd06da17ffe1fd072cdf82166085b8cd03520d4a Author: Alex Balgavy <alex@balgavy.eu> Date: Tue, 9 Aug 2022 23:59:37 +0200 lf: change some text Diffstat:
M | lf/lfrc | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lf/lfrc b/lf/lfrc @@ -22,7 +22,7 @@ set ifs "\n" # leave some space at the top and the bottom of the screen set scrolloff 10 -# Set a previewer, but don't preview by default (performance) +# Set a previewer set previewer ~/.config/lf/preview set preview @@ -229,8 +229,8 @@ cmd trash %{{ printf "Trash $f? [Y/n/a] " read -r ans case "$ans" in - Y*|y*) trash "$f"; printf "Deleted $f.";; - A*|a*) trash $fx; printf "Deleted all files."; break;; + Y*|y*) trash "$f"; printf 'Deleted %s.\n' "$f";; + A*|a*) trash $fx; printf 'Deleted all files.\n'; break;; esac done }}