Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shougo/ddc-filter-converter_remove_overlap
Remove overlapped text converter for ddc.vim
https://github.com/shougo/ddc-filter-converter_remove_overlap
ddc-filter ddc-vim
Last synced: 2 months ago
JSON representation
Remove overlapped text converter for ddc.vim
- Host: GitHub
- URL: https://github.com/shougo/ddc-filter-converter_remove_overlap
- Owner: Shougo
- License: mit
- Created: 2021-08-05T00:25:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-03T04:36:29.000Z (4 months ago)
- Last Synced: 2024-10-12T18:27:38.869Z (3 months ago)
- Topics: ddc-filter, ddc-vim
- Language: TypeScript
- Homepage:
- Size: 12.7 KB
- Stars: 10
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ddc-filter-converter_remove_overlap
Removes overlapped text for ddc.vim
The filter removes overlapped text in a candidate's word.
For example if you want to complete "foobar" before "bar", only "foo" is
inserted. Because "bar" is already inserted in the text. It is useful if you
want to replace texts.## Required
### denops.vim
https://github.com/vim-denops/denops.vim
### ddc.vim
https://github.com/Shougo/ddc.vim
## Configuration
```vim
call ddc#custom#patch_global('sourceOptions', #{
\ _: #{
\ converters: ['converter_remove_overlap'],
\ })
```