Sublime Forum

How do check for Sublime Performance by plugin?

#1

My sublime using lot of CPU and memory.
This is any easy way to check how many CPU and memory each plugin use?

0 Likes

#2

AFAIK all plugins are run by only one process (plugin_host), so you can’t see the performance of each one individually. The only way is disabling one by one and checking if the performance improves.

0 Likes

#3

[quote=“AminaG”]My sublime using lot of CPU and memory.
This is any easy way to check how many CPU and memory each plugin use?[/quote]

You can not check each program at the same time

0 Likes

#4

The only thing you can do reliably is check how long plugin take to process events and commands, but the requires monkey patching sublime_plugin.

0 Likes