-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Closed
Labels
Description
While exploring an issue with the jedi-vim plugin I encountered a possible bug:
In my .vimrc I add jedi as:
Plug 'davidhalter/jedi-vim', { 'for': 'python' }
If I open a vim session and do:
PlugUdate
- open a python file
the popup with the function/class/... signature looks very messy (see the screenshots in the above link, all the =
=jedi=0, ==
should not be there). But it works without issues if I open it in a session where PlugUpdate has not been run.
If I don't delay the loading:
Plug 'davidhalter/jedi-vim'
and repeat the above exercise, then the pop up looks fine.
My guess is that the reload at the end of PlugUpdate
might not play very well with not jet loaded plugins.