Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 14 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# vim-ripgrep

:Rg <string|pattern>
```vim
:Rg <string|pattern>
```

Word under cursor will be searched if no argument is passed to `Rg`

Expand All @@ -9,16 +11,19 @@ Word under cursor will be searched if no argument is passed to `Rg`

| Setting | Default | Details
| ---------------------|---------------------------|----------
| g:rg_binary | rg | path to rg
| g:rg_format | %f:%l:%c:%m | value of grepformat
| g:rg_command | g:rg_binary --vimgrep | search command
| g:rg_highlight | false | true if you want matches highlighted
| g:rg_derive_root | false | true if you want to find project root from cwd
| g:rg_root_types | ['.git'] | list of files/dir found in project root
| g:rg_window_location | botright | quickfix window location
| `g:rg_binary` | `rg` | path to the `rg` binary
| `g:rg_format` | `%f:%l:%c:%m` | value of `grepformat `
| `g:rg_command` | `g:rg_binary --vimgrep` | search command
| `g:rg_highlight` | `false` | true if you want matches highlighted
| `g:rg_highlight_type` | `identifier` | if `rg_highlight` is set, use this syntax color to highlight the result
| `g:rg_derive_root` | `false` | true if you want to find project root from cwd
| `g:rg_root_types` | `['.git']` | list of files/dir found in project root
| `g:rg_window_location` | `botright` | quickfix window location

## misc

Show root search dir

:RgRoot
```vim
:RgRoot
```
7 changes: 5 additions & 2 deletions plugin/vim-ripgrep.vim
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ if !exists('g:rg_window_location')
let g:rg_window_location = 'botright'
endif

if !exists('g:rg_highlight_type')
let g:rg_highlight_type = 'keyword'
endif

fun! g:RgVisual() range
call s:RgGrepContext(function('s:RgSearch'), '"' . s:RgGetVisualSelection() . '"')
endfun
Expand Down Expand Up @@ -110,8 +114,7 @@ fun! s:RgPathContext(search, txt)
endfun

fun! s:RgHighlight(txt)
let @/=escape(substitute(a:txt, '"', '', 'g'), '|')
call feedkeys(":let &hlsearch=1\<CR>", 'n')
call matchadd(g:rg_highlight_type, a:txt)
endfun

fun! s:RgRootDir()
Expand Down