Last active
November 10, 2015 10:09
-
-
Save iorionda/abde03174d907048ea9f to your computer and use it in GitHub Desktop.
ghq list のブランチに移動する
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function peco-select-ghq-repository | |
set -l query (commandline) | |
if [ -n $query ] | |
ghq list -p | peco --query $query | read line | |
else | |
ghq list -p | tail -r | peco | read line | |
end | |
if [ $line ] | |
cd $line | |
end | |
commandline -f repaint | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment