We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ghq get
Usecase: cd "$(ghq get x-motemen/ghq)" to clone the repo and cd to the corresponding dir.
cd "$(ghq get x-motemen/ghq)"
The text was updated successfully, but these errors were encountered:
Thanks for the request. It is a reasonable idea from a UNIX philosophy perspective.
Sorry, something went wrong.
Here is my simple fzf script (written in fish) that does the job:
function ghq_cd set -l proj (ghq list -p | fzf \ --no-multi \ --prompt "Project: " \ --preview "lsd -1FAL --group-dirs first --icon always --color always {}" \ ) if test -n "$proj" cd -- "$proj" end end
No branches or pull requests
Usecase:
cd "$(ghq get x-motemen/ghq)"
to clone the repo and cd to the corresponding dir.The text was updated successfully, but these errors were encountered: