ripgrep source for ddu.vim.
https://github.com/vim-denops/denops.vim
https://github.com/Shougo/ddu.vim
https://github.com/BurntSushi/ripgrep
Required if you want to use Migemo.
https://github.com/lambdalisue/kensaku.vim
call ddu#custom#patch_global(#{
\ sourceParams : #{
\ rg : #{
\ args: ['--column', '--no-heading', '--color', 'never'],
\ },
\ },
\ })
if you want to highlight the search word, should be set "--json".
e.g.
call ddu#custom#patch_global(#{
\ sourceParams: #{
\ rg: #{
\ args: ['--json'],
\ },
\ },
\ })
if you want to use Migemo as input pattern, should be set "migemo" to
inputType
.
e.g.
call ddu#custom#patch_global(#{
\ sourceParams: #{
\ rg: #{
\ inputType: 'migemo',
\ },
\ },
\ })
KUDO Shunsuke (skudo_xx)