-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code completion sometimes overwrites existing text #30
Comments
Minimal Python example without the need to import anything:
|
Another test case: |
def display_table():
pass
disp<tab>data leads to |
I don't think this is a valid test case def display_table():
pass
disp<tab>data Python doesn't support to write code like this |
Some explanations: I use |
The
|
I now got fixes for every case reported so far, will PR soon. |
Happens only when completing a code symbol which is in the middle of a line (not at the end). Needs unit tests to prevent this in the future.
Example:
DataFrame(da<tab>)
leads toDataFrame(dta=)
, shouldDataFrame(data=)
R examples:
data.frame(row.nam<tab>
→data.frame(row.nrow.names
data.f<tab>
→data.fdata.frame
The text was updated successfully, but these errors were encountered: