Shougo

Results 814 comments of 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. ![2024-06-22_11-45](https://github.com/neovim/neovim/assets/41495/19a746ab-dfcb-40cd-af31-452e15625384) I think neovim needs `cursor_on()` and `cursor_off()` like API.

> 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...

It seems good. Many plugins have implemented original cache features(for example, neocomplete/neocomplcache, vimfiler, unite.vim, ctrlp.vim, neomru.vim etc).