-
Notifications
You must be signed in to change notification settings - Fork 412
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
perf: vim.fn.executable is slow #1585
Comments
That is super weird, since Also, can you run the same test, but with |
On my system:
|
EDIT: It doesn't seem to have the same behavior ❯ time nvim --headless -c ':lua local s = vim.loop.hrtime() vim.uv.exepath("luarocks") print(string.format("%fms\n", (vim.loop.hrtime() - s) / 1000000))' +q
0.009027ms
nvim --headless -c +q 0.02s user 0.03s system 45% cpu 0.107 total |
Allright, I can change it I guess, but you should still figure out why That function is used by a lot of plugins and internally by Neovim. Is it fast when checking a binary that you do have on your path? |
nm, |
Closing, since this not a lazy.nvim issue. For more info, see |
Ok after I turned off windows WSL's ❯ time nvim --headless -c ':lua local s = vim.loop.hrtime() vim.fn.executable("luarocks") print(string.format("%fms\n", (vim.loop.hrtime() - s) / 1000000))' +q
0.037370ms
nvim --headless -c +q 0.03s user 0.00s system 67% cpu 0.048 total However, since this is the default behavior of WSL it might still be worth it to defer this function. |
I just pushed a changed so that that check only happens when needed |
After lazy.nvim 11.0 was released my config startuptime went from 25ms to 85ms
I have traced back the slowness due to this line:
lazy.nvim/lua/lazy/core/config.lua
Line 53 in 8dd947f
The text was updated successfully, but these errors were encountered: