ソースを参照

Remove trailing spaces

master
Arun Prakash Jana 4年前
コミット
9e3bd377b0
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: A75979F35C080412
1個のファイルの変更3行の追加3行の削除
  1. +3
    -3
      plugins/fzcd

+ 3
- 3
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

読み込み中…
キャンセル
保存