Shougo
Shougo
Hm.... Vim has same feature but why it is not reproduced in Vim? https://github.com/vim/vim/blob/7002c055d560ae0b3bb1e24ad409390a5443daad/src/search.c#L1567
I think the cursor is hidden when search in Vim. `cursor_on()` and `cursor_off()` are implemented in Vim. But neovim is not.
It does not resolve the original problem. Because other cursor movements are exists like this.  I think neovim needs `cursor_on()` and `cursor_off()` like API.
OK. This fix is better.
OK. I will do it.
Rebased now.
> I was thinking that a PackAdded autocmd-event comes handy in many situations. > For example, when pack foo is added through packadd foo, then a user-defined foo_config.vim is run...
> in any case, I am not totally against such a thing. I am just like to see a convincing argument for it. And it's not like :pack is totally...
なるほど。z が先に処理されてしまうんですね。厄介です。
It seems good. Many plugins have implemented original cache features(for example, neocomplete/neocomplcache, vimfiler, unite.vim, ctrlp.vim, neomru.vim etc).