fedestylah
fedestylah

Reputation: 179

Intellij - Productivity Guide

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?

I'm talking about this:productivity_guide

Upvotes: 1

Views: 126

Answers (1)

Peter Gromov
Peter Gromov

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

Related Questions