Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork773
Open
Labels
Description
Parameter keyword autocompletion has the following behavior
ob.compute_loss(da<CursorIsHere>)
I pressCtrl-Space
and select the appropriate suggestion which will result in the following
ob.compute_loss(data=<CursorHere>
However, isn't the expected behavior as follows
ob.compute_loss(data=<CursorHere>)
Auto completion is removing a)
. How can I change this behavior?