srusskih / SublimeJEDI

awesome Python autocompletion with SublimeText
MIT License
938 stars 109 forks source link

Double commas in completion output #180

Closed adammhaile closed 9 years ago

adammhaile commented 9 years ago

With the latest version of the plugin and ST3 Build 3083 I'm seeing double commas between params everytime it does an autocompletion. For example:

The following function:

def pullIDs(data, doSingle = True, idCol = 'id'

autocompletes to:

pullIDs(data,, doSingle=True,, idCol='id')

My extension settings are:

{
    "auto_complete_function_params": "all",
    "sublime_completions_visibility": "default"
}
jacobsvante commented 9 years ago

Would be nice with a release for this!

srusskih commented 9 years ago

Does the fix works for you ? If yes, I will release as soon as possible.

jacobsvante commented 9 years ago

Works fine for me in ST3!

srusskih commented 9 years ago

@jmagnusson 0.8.2 released (= enjoy!

jacobsvante commented 9 years ago

Thanks, works great.