autocomplete-plus-python-jedi icon indicating copy to clipboard operation
autocomplete-plus-python-jedi copied to clipboard

Atom.io Autocomplete-Plus Provider for Python

Results 12 autocomplete-plus-python-jedi issues
Sort by recently updated
recently updated
newest added

When I type a string key for a dictionary, I get a popup with builtin functions: ``` python foo = { 'bar':

If I do something like this: from module import Class I expect it to end there but hitting enter will autocomplete it to something like this: from module import Class(param0,...

if I type **models.cha** I get a hint **models.charField()**, and if I take the hint it plugs in **charField**. WHILE THE CORRECT SPELLING OF FN IS **CharField**

I am checking out Atom/this package for developing Python. I am developing/author of the package here: github.com/EntilZha/ScalaFunctional. So my example is based on that where I know jedi does completions...

As described in [this link](https://github.com/atom/snippets/issues/145), `def` snippet followed by a name contains an underscore causes it to act funny. note that I am using Jedi that is shipped with the...

This reads a couple of config settings from a JSON/CSON file. This is just a small start, and probably the easiest possible part, toward per-directory virtualenv config. The hard stuff...

It seems that this plugin does not support fuzzy autocomplete? It will be great if it can be supported - I think even the stock autocomplete+ does so. Thanks!

[Enter steps to reproduce below:] 1. ... 2. ... **Atom Version**: 0.196.0 **System**: Mac OS X 10.10.3 **Thrown From**: [autocomplete-plus-python-jedi](https://github.com/tinloaf/autocomplete-plus-python-jedi) package, v0.3.2 ### Stack Trace Uncaught TypeError: Cannot read property...

For better discover-ability of this (awesome) package I recommend a rename to autocomplete-python and a consolidation (and removal of all but one) with the other autocomplete jedi plugins (I chose...

One feature of SublimeJedi which is very nice is that when you reopen a project, it seems that the autocompletes are cached from the previous time. For a big project...