pecoでgitのルートに移動する その2
前の記事( http://qiita.com/tetsutan/items/1bd13f79fdaf0b17cceb )のスクリプトにキャッシュ生成をさせるように変更しました
ghq listで良いのではと思われるかもしれませんが、mruのリストが欲しかったのです。
[ -f $ZSH_CUSTOM/lazy/cdgitroot.zsh ] && source $ZSH_CUSTOM/lazy/cdgitroot.zsh
function chpwd() {
_reg_pwd_gitroot
}
これで ~/.cdgitroot
ファイルにgit/hgのトップディレクトリが保存されるようになります。
ほぼ同じような操作になるので、cddを参考にさせていただきました。
chpwdのところは、add-zsh-hook chpwd hoge
のほうがいいのかな?
あとはpecoに素直にかませるだけです。
function peco-cdgitroot() {
local selected_dir=$(_echo_gitroot | peco )
if [ -n "$selected_dir" ]; then
BUFFER="cd ${selected_dir}"
zle accept-line
fi
zle clear-screen
}
zle -N peco-cdgitroot
bindkey '^@' peco-cdgitroot
Author And Source
この問題について(pecoでgitのルートに移動する その2), 我々は、より多くの情報をここで見つけました https://qiita.com/tetsutan/items/67c892f9e4d587af908c著者帰属:元の著者の情報は、元の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 .