Hi there, first I want to thank all people involved in the Julia extension for VS Code, you made a wonderful job.
Now I have a little issue that is annoying when doing data science: the column names of a DataFrame are not autocompleted. In Juno and in the REPL, if I have a DataFrame such as:
using DataFrames
df = DataFrame(A = 1:10, B = rand(10), C = rand(10))
I would expect to get a proposition of the column names for auto-completion if I type df.. But I don’t get any in the VS Code extension.
I don’t know if it is a bug happening just for me or if it is simply not implemented yet. I didn’t find any information on the subject so far (I tried the DataFrames doc, the VS Code extension doc and issues).
I tried to uninstall / re-install the extension but it didn’t work any better.
We’re generating completions all using static information from LS while REPL or Juno use dynamic information from running session.
What you want is actua kinda hard for LS to implement, because dataframe’s column is basically only available at runtime.
OK thank you for the information, at least it’s not a bug !
I’m glad there is some work ongoing to implement this, it’s very useful when doing data exploration.