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
When generating strings inline it takes ages to complete. This is because the editor needs to be locked by each generator thread that wants to write to its line.
Fix:
Put all text into memory, then append generated string in memory and write all back to editor only once.