Rakeタスクを先頭から入力するのがダルいのでpecoを組み合わせてみた。
.zshrc
pecorake() { local task=$(rake -W | peco | cut -d " " -f 2); rake $task }
Escでキャンセルしたときを考慮してないけど、これだけの設定でかなり捗るようになった。peco便利。
Go to list of users who liked
More than 5 years have passed since last update.
Rakeタスクを先頭から入力するのがダルいのでpecoを組み合わせてみた。
pecorake() { local task=$(rake -W | peco | cut -d " " -f 2); rake $task }
Escでキャンセルしたときを考慮してないけど、これだけの設定でかなり捗るようになった。peco便利。
Register as a new user and use Qiita more conveniently
Go to list of users who liked