KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#claude-code
#codex
#cli
#developer-tools
#react
#windows
ddu-source-rg
★ 36
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
ddu-ui-ff
:
Fuzzy finder UI for ddu.vim
ddu-source-buffer
:
No description available.
ddu-commands.vim
:
Commands for ddu.vim
ddu-kind-file
:
File kind for ddu.vim
ddu-source-file_rec
:
File recursive source for ddu.vim
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ddu-source-rg
?
Download (.md)
# ddu-source-rg ripgrep source for ddu.vim. ## Required ### denops.vim https://github.com/vim-denops/denops.vim ### ddu.vim https://github.com/Shougo/ddu.vim ### ripgrep https://github.com/BurntSushi/ripgrep ### kensaku.vim (Optional) Required if you want to use [Migemo][Migemo]. https://github.com/lambdalisue/kensaku.vim ## Configuration ```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. ```vim call ddu#custom#patch_global(#{ \ sourceParams: #{ \ rg: #{ \ args: ['--json'], \ }, \ }, \ }) ``` if you want to use [Migemo][Migemo] as input pattern, should be set "migemo" to `inputType`. e.g. ```vim call ddu#custom#patch_global(#{ \ sourceParams: #{ \ rg: #{ \ inputType: 'migemo', \ }, \ }, \ }) ``` [Migemo]: http://0xcc.net/migemo/ ## Author KUDO Shunsuke (skudo_xx)