1

Is it possible to configure jedi-vim to respect __all__ variable inside a module (like __init__.py)? So, when I use autocomplete on an imported package, anything inside which is not listed in the __all__, and is not a special variable/method, is hidden?

jligeza
  • 4,544
  • 6
  • 23
  • 31

1 Answers1

1

Does not work and will not work in the near future. Reason: I'm the author.

It's quite complicated to understand __all__, because it can basically be generated by any Python code.

I would probably accept a pull request, but only if it works with numpy.

Dave Halter
  • 15,556
  • 13
  • 76
  • 103