Vim extension slow #2828
-
Yes, I've seen the related issue #308. I know that code-server is now running vsvim client-side to mitigate this problem. I checked my Worker Extension Host log and got
And this is what I got from Remote Extension Host:
I noticed that my Chrome console has the following warnings and errors:
You may reproduce my installation by this docker image: https://github.com/PhotonQuantum/latex-workshop-docker. I'm not sure what's going on, so these logs may not be helpful. I'm willing to provide more diagnostic info if needed. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Ohh interesting, I think the problem is that we used to have our own web/client extension implementation that loaded the extension from disk into the browser. We removed that because VS Code added their own implementation. But theirs doesn't load from disk, instead it pulls directly from the marketplace when installed from the UI. So installing with I think currently the only workaround then is to delete the Vim extension from disk then install it from VS Code's UI. |
Beta Was this translation helpful? Give feedback.
Ohh interesting, I think the problem is that we used to have our own web/client extension implementation that loaded the extension from disk into the browser.
We removed that because VS Code added their own implementation. But theirs doesn't load from disk, instead it pulls directly from the marketplace when installed from the UI.
So installing with
--install-extension
ends up leaving it running on the server and no longer loads it into the browser.I think currently the only workaround then is to delete the Vim extension from disk then install it from VS Code's UI.