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