Open Freed-Wu opened 4 years ago
Hi @Freed-Wu , I can try to add built-in Python keywords and available column names to generate the autocomplete, but this is
:Select random.
and presses Tab there is no way that any relatively-simple autocomplete mechanism would be able to fetch the list of available methods from the random
module. So the autocomplete would provide only very limited completion options therefore reducing its usefulness. So I guess at some point I would try to implement a basic autocomplete: column names in dictionary/attribute forms + builtin functions and keywords from SQL and Python/JS
such as type Tab after
:Select ma
it will automatically completemax(
?Thanks!