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.
Can someone help me figuring that out ?