|
|
|
|
|
by alkonaut
4485 days ago
|
|
Autocomplete/parameter help isn't about "hey, look fewer keystrokes!". It's about context-aware lookup of what you need, and avoiding stupid mistaks (reordering parameters, typos in method names). The time it takes to write a the first few characters of a method name and then hit the completion key is a tiny amount smaller than just typing the method name outright. But that isn't the point: if I didn't have autocomplete, I'd alt+tab to a browser with class documentation or start searching in the code for a previous invocation of a method with that name I only vaguely remember. With autocomplete, I don't have to remember variable/property/method names, I can either list them or see a list that begins if I just remember a prefix. This is less unnecessary state in my head and thus more time to think about the actual problem. It's an absolutely enormous difference in time spent, and considering the time it takes to context switch back to where you were, I'd say it saves me hours every day. |
|