PowerShell Core で ghq と peco を組み合わせるメモ

  1. PATH が通っている場所に ghq.exe と peco.exe を配置。
  2. %UserProfile%\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 に次のような関数を定義する。
function g {
    cd $(ghq list | peco)
}