You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have had this issue for some time and only just tracked down the config that causes it.
When I have vim-javascript enabled and set foldmethod=syntax enabled, any attempt to paste will freeze vim.
If I hit ctrl-c I can usually break out of it, but only part of the paste is present.
I thought it was an interaction with another plugin, but it turns out it just doesn't seem to like foldmethod=syntax
I've attached a minimal vimrc that triggers the problem.
What I did: Used the attached vimrc, Opened a javascript file, navigated to a line inside the existing javascript, hit i and attempted to paste some javascript into it.
What I expected: Javascript would be pasted into the file at the location.
What happened instead: Vim hangs until I hit ctrl-c.
I should note this is in konsole, In other terminal emulators it doesn't seem to hang entirely it just pastes slowly and the more text it inserts, the slower it goes. I've tried in lxterminal and cool-retro-term with the same results.
The syntax foldmethod is know to be really bad performance-wise in vim. I think some people often suggest that if you want to use that foldmethod, setup an autocommand to set foldmethod to manual when in insert mode, and then when you go back to normal mode, set it to syntax
Thanks. I disabled it and everything works fine. I rarely use it anyway, but I thought I should drop an issue since it does seem to hang vim entirely when both it and vim-javascript are enabled. If nothing else it might be worth an addition to the docs, It drove me crazy for months before I finally tracked down where the interaction was.
I have had this issue for some time and only just tracked down the config that causes it.
When I have vim-javascript enabled and
set foldmethod=syntax
enabled, any attempt to paste will freeze vim.If I hit ctrl-c I can usually break out of it, but only part of the paste is present.
I thought it was an interaction with another plugin, but it turns out it just doesn't seem to like
foldmethod=syntax
I've attached a minimal vimrc that triggers the problem.
What I did: Used the attached vimrc, Opened a javascript file, navigated to a line inside the existing javascript, hit
i
and attempted to paste some javascript into it.What I expected: Javascript would be pasted into the file at the location.
What happened instead: Vim hangs until I hit ctrl-c.
I should note this is in
konsole
, In other terminal emulators it doesn't seem to hang entirely it just pastes slowly and the more text it inserts, the slower it goes. I've tried in lxterminal and cool-retro-term with the same results.Vim version info:
vimrc-breaks-vim-javascript.txt
The text was updated successfully, but these errors were encountered: