Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道如何在 neocomplcache vim 插件中启用快速匹配。我放
let g:neocomplcache_enable_quick_match = 1
在我的 .vimrc 中,但它没用。当我按下-没有任何反应。
-
根据帮助文件,不再有快速修复功能。您需要为此使用联合:
A: 快速匹配功能在最新的 Neocomplcache 中被移除,因为快速匹配变得难以实现。
但是你可以使用 |unite.vim| 而是使用快速匹配。
imap <expr> - pumvisible() ? \ "\<Plug>(neocomplcache_start_unite_quick_match)" : '-'