My Sublime Text editor is running very slow, which is causing some problems when working on tasks that involve a lot of iteration.
When I run the following line in the editor:
print("Hello World")
I receive:
hello world
[Finished in 7.3s]
I am very surprised that Sublime needs 7.3 seconds to run the code. When running the same script in Atom it takes me 0.083 seconds.
This my code I have entered in my Settings. I don't think there is any connection, but I am including it just for completeness and should I maybe be overlooking something
{
"font_size": 12,
"ignored_packages":
[
"Package Control",
"Vintage"
]
}
What might be causing this slow-down and how could I speed this up?