130
127

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ag(The Silver Searcher)で検索しpecoで更に絞り込みvimで該当行を開く

Last updated at Posted at 2014-07-05

agvim.mp4.gif

環境

設定

zshrc
function agvim () {
  vim $(ag $@ | peco --query "$LBUFFER" | awk -F : '{print "-c " $2 " " $1}')
}

使い方

agvim 検索文字

で検索し、pecoの画面で選択しenter

agのほかに

pt(The Platinum Searcher)git grepを使いたい場合はag $@の部分をpt $@git grep -n $@とすればOK

130
127
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
130
127

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?