Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shougo/ddu-filter-matcher_files
Files filter for ddu.vim
https://github.com/shougo/ddu-filter-matcher_files
ddu-filter ddu-vim
Last synced: 28 days ago
JSON representation
Files filter for ddu.vim
- Host: GitHub
- URL: https://github.com/shougo/ddu-filter-matcher_files
- Owner: Shougo
- License: mit
- Created: 2023-03-24T04:34:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-02T00:08:55.000Z (3 months ago)
- Last Synced: 2024-08-02T01:33:16.445Z (3 months ago)
- Topics: ddu-filter, ddu-vim
- Language: TypeScript
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ddu-filter-matcher_files
Filter files matcher for ddu.vim
This matcher filters specified files.
## Required
### denops.vim
https://github.com/vim-denops/denops.vim
### ddu.vim
https://github.com/Shougo/ddu.vim
## Configuration
```vim
call ddu#custom#patch_global(#{
\ sourceOptions: #{
\ _: #{
\ matchers: ['matcher_files'],
\ },
\ }
\ })call ddu#custom#patch_global(#{
\ filterParams: #{
\ matcher_files #{
\ globs: ['test_*.vim'],
\ patterns: ['/test_[^/]*.vim$'],
\ },
\ }
\ })
```