From f34f6d968e711f3cab019a12bb60da1bbf52161f Mon Sep 17 00:00:00 2001 From: Vadym Kochan Date: Wed, 1 Jul 2020 09:24:24 +0300 Subject: vis-open: add trailing "/" for the folders Add trailing "/" for the folder entries which allows to easy differentiate folders and the regular files. Additionally it allows easy filter only folders by simply enter "/" in the vis-open prompt. Signed-off-by: Vadym Kochan --- vis-open | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'vis-open') diff --git a/vis-open b/vis-open index 920239c..6d25326 100755 --- a/vis-open +++ b/vis-open @@ -8,6 +8,15 @@ NL=' VIS_MENU_PROMPT="" ALLOW_AUTO_SELECT=1 +wrap_dirs() { + local o + + while read o + do + [ -d "$o" ] && printf "%s/\n" "$o" || printf "%s\n" "$o" + done +} + while [ $# -gt 0 ]; do case "$1" in -h|--help) @@ -63,7 +72,7 @@ fi # At this point, we have a bunch of options we need to present to the # user so they can pick one. -CHOICE=$(printf "%s\n" "$@" | vis-menu -b -p "$VIS_MENU_PROMPT") +CHOICE=$(printf "%s\n" "$@" | wrap_dirs | vis-menu -b -p "$VIS_MENU_PROMPT") # Did they pick a file or directory? Who knows, let's let the next iteration figure it out. exec "$0" -p "$VIS_MENU_PROMPT" -- "$CHOICE" -- cgit v1.2.3