From 9e3bd377b0c721ec9abc2040f5396e39560aa8d1 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sun, 22 Nov 2020 20:54:49 +0530 Subject: [PATCH] Remove trailing spaces --- plugins/fzcd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/fzcd b/plugins/fzcd index 8cc21ab3..b3f5efff 100755 --- a/plugins/fzcd +++ b/plugins/fzcd @@ -24,14 +24,14 @@ if [ -n "$sel" ]; then # by fzf command is absolute case $sel in /*) nnn_cd "$sel" ;; - *) + *) # Remove "./" prefix if it exists sel="${sel#./}" - + if [ "$PWD" = "/" ]; then nnn_cd "/$sel" else nnn_cd "$PWD/$sel" fi;; - esac + esac fi