Hello,
I sent this email to [email protected], but I am also sending it here so
more eyes have a chance to see it.
Vim's omni-completion fails for Python any time a file contains an
import statement which fails (i.e., any import statement that will
raise an ImportError). For example:
import notamodule
class Foo:
def bar(self):
pass
# try omni-completing Foo here <C-x><C-o>
# then comment out the above import statement and try again
Fo
This bug exists even if the import statement is wrapped within a try,
except clause, e.g.,:
try:
import notamodule
except ImportError:
pass
Best,
Chris Lasher
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---