ag.vim icon indicating copy to clipboard operation
ag.vim copied to clipboard

Doc: why ag.vim vs ack.vim

Open ku1ik opened this issue 12 years ago • 8 comments

Hi,

I just noticed this project and I wondered if there's really a need for the fork. To make ack.vim work with ag is just a matter of:

let g:ackprg = 'ag --nogroup --nocolor --column'

I use ag with ack.vim like that and it just works.

No hard feelings :)

ku1ik avatar Apr 20 '13 14:04 ku1ik

That does work, but:

  • I use a shared config wherever I have a $HOME. So when I happen to not-have af, I can fall back to :Ack
  • :Ag is 25% shorter than :Ack. =)
  • At this point, IMO the implementation is better for ag.vim, since it uses autoload. I should pull req ack.vim now that I've worked out the (tiny) hitches with this.

rking avatar Apr 20 '13 15:04 rking

Oh, I forgot the most significant factor in the decision to fork.

Because ack actually has several features ag doesn't, and probably won't (like searching by filetype).

I'll leave this issue open as a doc task.

rking avatar Apr 20 '13 15:04 rking

Fair enough :)

ku1ik avatar Apr 20 '13 16:04 ku1ik

Correct me if I'm wrong but ag has filetype filtering by now, doesn't it?

schickling avatar Jan 10 '14 22:01 schickling

What do you mean by filetype filtering?

losingkeys avatar Jan 10 '14 23:01 losingkeys

For example searching just for html files by: ag div --html

schickling avatar Jan 10 '14 23:01 schickling

Ohh, you can always do :Ag --html search dir, but I don't thing there's a special command like :AgFile (searches for files with ag -g)

On Jan 10, 2014, at 5:05 PM, Johannes Schickling [email protected] wrote:

For example searching just for html files by: ag div --html

— Reply to this email directly or view it on GitHub.

losingkeys avatar Jan 10 '14 23:01 losingkeys

When I execute the command: Ack '=' the following line appears: 1 || /bin/bash/: ag: command not fount

In .vimrc I have set Ag behind the scene: let g:ackprg = 'ag --nogroup --nocolor --column'

Can someone tell me how to fix this please

CarlosMorfin avatar Jul 18 '19 01:07 CarlosMorfin