You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @Freed-Wu ,
I can try to add built-in Python keywords and available column names to generate the autocomplete, but this is
Hard to do - I implemented column names autocomplete for VSCode version of the plugin, and it took me much more time than I originally expected.
This autocomplete will not be capable of deep code analysis, i.e. if the user enters :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!
The text was updated successfully, but these errors were encountered: