Home

Awesome

Dependency

https://github.com/rking/ag.vim

Instruction

This plugin map gag to do Ag search.

Examples

Configuration

Recommanded Shortcuts

" use * to search current word in normal mode
nmap * <Plug>AgActionWord
" use * to search selected text in visual mode
vmap * <Plug>AgActionVisual

Escape characters

There are some special characters used in Ag, like '$' which is treated as the end of the line. Most of the time we use literal meaning of these characters. You can set escapes for these characters in g:vim_action_ag_escape_chars. By Default, this global variable is set like this:

let g:vim_action_ag_escape_chars = '#%.^$*+?()[{\\|'