ZSaberLv0 / ZFVimIM

vim输入法 / Vim Input Method by pure vim script, support: user word, dynamic word priority, cloud db files
204 stars 14 forks source link

需要适配 vimcomplete #58

Closed leoingru closed 4 weeks ago

leoingru commented 2 months ago

https://github.com/girishji/vimcomplete

否则会报如下的错误

image

ZSaberLv0 commented 2 months ago

测了下并不会冲突, 是不是 lazy load 之类的插件没有正常加载本插件?

leoingru commented 1 month ago

我是用vim-plug做管理的,没有懒加载相应插件。系统是linux

ZSaberLv0 commented 1 month ago
filetype plugin indent on
syntax on
set nocompatible
let g:plug_home = $HOME . '/.vim/bundle'
let g:plug_url_format = 'https://github.com/%s'
execute 'source ' . g:plug_home . '/vim-plug/plug.vim'
silent! call plug#begin()
Plug 'junegunn/vim-plug'
Plug 'girishji/vimcomplete'
Plug 'ZSaberLv0/ZFVimIM'
Plug 'ZSaberLv0/ZFVimIM_pinyin'
Plug 'ZSaberLv0/ZFVimJob'
call plug#end()

vim 9.1 测了正常, 参照这个试试最简配置