pecoを使ったディレクトリ移動が思った以上に便利だった件
1281 ワード
~/.zshrc
# C-jで下のディレクトリに移動する
function cddown_dir(){
com='$SHELL -c "ls -AF . | grep / "'
while [ $? = 0 ]
do
cdir=`eval $com | peco`
if [ $? = 0 ];then
cd $cdir
eval $com
else
break
fi
done
zle reset-prompt
}
zle -N cddown_dir
bindkey '^j' cddown_dir
Author And Source
この問題について(pecoを使ったディレクトリ移動が思った以上に便利だった件), 我々は、より多くの情報をここで見つけました https://qiita.com/syui/items/1def3293fd9a593a4e19著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .