Mac + ghq + peco — Github URL을 바로 가기에서 열 수 있는 예제
동작 예
선택하면
열다
운영 환경
Mac + zsh + ghq + peco
절차
ghq get https://github.com/YumaInaura/zsh/
) 예
~.zshrc
에 다음 추가_ghq_open() {
if [ ! $(which peco) ]; then echo "You need peco" && exit 1; fi
local remote_repository_web_url=$(ghq list | sed -e 's/^/https:\/\//g' | peco --query="$BUFFER")
if [ ! -z "$remote_repository_web_url" ]; then
BUFFER="open $remote_repository_web_url"
zle accept-line
fi
}
zle -N ghq-open _ghq_open
bindkey '^G^O' ghq-open
ghq list
에서 얻은 목록의 시작 부분에 https://
Versions
링크
Reference
이 문제에 관하여(Mac + ghq + peco — Github URL을 바로 가기에서 열 수 있는 예제), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/YumaInaura/items/7c8f6e5adbb27d73ae12텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)