diff options
author | Dylan Araps <dylan.araps@gmail.com> | 2019-01-28 19:27:07 +0200 |
---|---|---|
committer | Dylan Araps <dylan.araps@gmail.com> | 2019-01-28 19:27:07 +0200 |
commit | a0907b5ec1c3b292c408e1482fcdc4b59130143f (patch) | |
tree | c92a214b20e5f257f24f0781b07bdd02157e19d0 | |
parent | 080bcee4036ef264b5b70e2434abb44c39007912 (diff) |
general: don't clear selected files if there aren't any1.8
-rwxr-xr-x | fff | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -752,8 +752,10 @@ key() { # Clear all marked files. "${FFF_KEY_CLEAR:=c}") - marked_files=() - redraw + [[ ${marked_files[*]} ]] && { + marked_files=() + redraw + } ;; # Rename list item. |