Is it possible to keep some inline suggestions? #4642
Replies: 1 comment 2 replies
-
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am really enjoying my initial exploration with Positron but I was hoping to eliminate/reduce one thing.
Suppose I am creating a simple pandas dataframe using a dictionary (defining all in one line). I could do something like:
df = pd.DataFrame({
'Name' : ['Bob', 'Sally'],
'Age' : [25, 30]
})
With the inline suggestions, once I type "pd." it shows me options, including 'DataFrame'. I like this -- it's helpful.
But, once I type the quotes where I want to define my first column, the inline suggestion shows me two things: it offers a dropdown list of commands to select and it devotes a decent amount of space to showing me the syntax box for a Pandas data frame. I apologize if this is not clear. I've tried doing a screen capture but it does not show up well.
I guess what I'm saying is this: when I type the 'N' in 'Name', a dropdown shows me commands that begin with N. I also cannot get rid of the box showing the parameters in a pandas Dataframe (kind of like the top of the help file). I can get rid of that by turning off the inline suggestions, but then I use the autofill of getting a dataframe when I type "pd.D". I wish there was some sort of in between setting.
Beta Was this translation helpful? Give feedback.
All reactions