Yue Zhang

Results 1 comments of Yue Zhang

试着写了个fuzzy spell check的拓展, 比原来用fzf实现的快多了 :))) ``` function! LfSpellSink(line,...) exe 'normal! "_ciw'.a:line endfunction function! LfSpell(args) return spellsuggest(expand(get(a:args, "pattern",[""])[0])) endfunction let g:Lf_Extensions = { \ "spell": { \ "source": "LfSpell", \ "arguments"...