https://github.com/shougo/ddu-filter-matcher_substring
Substring matcher for ddu.vim
https://github.com/shougo/ddu-filter-matcher_substring
ddu-filter ddu-vim
Last synced: 11 months ago
JSON representation
Substring matcher for ddu.vim
- Host: GitHub
- URL: https://github.com/shougo/ddu-filter-matcher_substring
- Owner: Shougo
- License: mit
- Created: 2022-01-19T23:37:10.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-20T03:41:40.000Z (over 1 year ago)
- Last Synced: 2025-03-17T23:51:46.772Z (about 1 year ago)
- Topics: ddu-filter, ddu-vim
- Language: TypeScript
- Homepage:
- Size: 15.6 KB
- Stars: 10
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ddu-filter-matcher_substring
Substring matcher for ddu.vim
This matcher filters substring matched items.
## 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_substring'],
\ },
\ }
\ })
" Enable highlight matched text
" Note: It is slow
call ddu#custom#patch_global(#{
\ filterParams: #{
\ matcher_substring: #{
\ highlightMatched: 'PmenuMatch',
\ },
\ }
\ })
```