btown 3 days ago

A rule of thumb I’ve started using is: “if your function name and arguments aren’t good enough to have Copilot tab completion make a cogent attempt at implementing the full behavior, you need more comments/docstrings and/or you need to create utility methods that break down the complexity.”

Alternatively: “if you tab complete a docstring and it doesn’t match what you expect, your code can be clearer and you should add comments and rename variables accordingly.”

This isn’t hard and fast. Sometimes it risks yak shaving. But if an LLM can’t understand your intent, there’s a good chance a colleague or even your future self might similarly struggle.

2
Etheryte 3 days ago

This only really makes sense for boilerplate code, if Copilot can consistently tab complete everything you were about to write, maybe you should be working on something new, not rebuilding things that probably already exist as a library.

UltraSane 2 days ago

This is only true for the most generic code. Copilot isn't going to autocomplete my recursive JSON2Neo4j import function.