Reputation: 179
I couldn't find any answer after a bit of googling. I wonder if anyone knows how Intellij is calculating the time is suppose to save with shortcuts?
Upvotes: 1
Views: 126
Reputation: 18981
Each time the code completion is executed, the IDE counts the number of characters it inserted for you (e.g. if you typed "pr" and completed to "print", it'd be 3 characters).
As for quick fixes, it just counts how many of them you invoked (by Alt+Enter). Quick fixes are normally issued on inspection warnings, which is a yellow code and usually it's probable bugs that are highlighted in that way.
Upvotes: 2