|
|
|
|
|
by white-flame
2324 days ago
|
|
I think one problem is that some of these sorts of things always pop info up at you, instead of you the coder pressing a keystroke to have it help you. There's 3 different models that happen: 1. Type in the entire thing 2. Type in a unique portion and ask it to autocomplete 3. On each keystroke, evaluate if the list of auto-popped-up completions to see if the one you want is quickly available yet. Clearly the 3rd is slowest to interact with, and does not convey useful information for familiar interfaces. If you do not know or cannot remember what the interface looks like, it might be a bit more useful, but gives you similar information as the 2nd above when you have little to autocomplete. But the 2nd option still leaves you in control of the coding flow instead of the system constantly interrupting you to ask you if it knows what you mean yet. |
|