Shougo

Results 814 comments of Shougo

Unfortunately, `executable()` is extremely slow in Windows environment or WSL environment. (I think it is from Security check process issue) I think `grepprg` should be set manually by users. >...

The performance problem exists even in Linux environment. It is about some millisecond, but it is not acceptable overhead for me. NOTE: My neovim startup time is 9ms. But I...

Not limited to this option, performing a high-cost operation like `executable()` in `_defaults.lua`, which is always executed before user settings, should be avoided. Regarding this process, I think the only...

> Unsure why this discussion is so defaults.lua-centric, this problem already existed before it and is infinitely worse if user doesn't have a clipboard provider as a bunch of random...

It seems auto completion plugin feature. ```lua local on_text_changed = function() if config.enabled() then cmp.core:on_change('TextChanged') end end autocmd.subscribe({ 'TextChangedI', 'TextChangedP' }, on_text_changed) ``` `nvim-cmp` works completion when `TextChangedI`. If you...

It is not `nvim-cmp` bug. It is just `git clone` error.

Hm... What is the feature? I have read the issue and I don't get why it is needed. I think more example or explanation are needed. Are you trying to...

Can you tell me more about the specific plugin settings you're trying to achieve? It sounds like you might be misunderstanding LazyVim's "recommend" feature. It conditionally recommends plugin installations, which...

If that's the case, how about separating your language-specific plugins into individual repositories for each language and loading them separately? As for loading plugins based on files in the root...

Hm... It seems command prompt window cost. I think job API does not have the problem.