Skip to content

tani/ddc-fuzzy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ddc-fuzzy filters

Introduction

No.Name.-.NVIM.2021-10-10.01-06-53.mp4

Fuzzy matching filters for ddc.vim.

The de facto standard filters, match_head and sorter_rank, behave like the other completion such as VSCode. They suggest terms containing an input as a substring. However, they omit words with a typo. It means that we cannot obtain a suggestion word from wrd. Moreover, it is hard to select a long word with a short input.

Our filters fix this problem with the fuzzy filter that behaves like CtrlP.

Installation

To install our filters,

Plug 'tani/ddc-fuzzy'

To use our filters,

call ddc#custom#patch_global('completionMenu', 'pum.vim')
call ddc#custom#patch_global('sourceOptions', {
  \   '_': {
  \     'matchers': ['matcher_fuzzy'],
  \     'sorters': ['sorter_fuzzy'],
  \     'converters': ['converter_fuzzy']
  \   }
  \ })

Configuration

matcher_fuzzy filter provides an option splitMode. For the default mode, { 'splitMode': 'character' }, each input character matches any characters of a candidate. For example, abc matches axbxc. On the other hand, for the option {'splitMode': 'word'}, each input character matches the beginning of a word of a candidate. For example, abc does not match axbxc but abc matches a_bc and a_b_c.

call ddc#custom#patch_global('filterParams', {
  \   'matcher_fuzzy': {
  \     'splitMode': 'word'
  \   }
  \ })

converter_fuzzy filter provides an option hlGroup to change the highlight group in vim. This filter applies the highlight group to characters matched by the input pattern.

call ddc#custom#patch_global('filterParams', {
  \   'converter_fuzzy': {
  \     'hlGroup': 'SpellBad'
  \   }
  \ })

Related Projects

This work is licensed under the MIT License. Copyright © 2021 TANIGUCHI Masaya. All rights reserved.