Everytime I exit Plug In Manager I get a pop up that says "Only Plug-in Objects in the active document have been updated. You must close and open the other documents to update them". How do I get this this warning to stop appearing?
Not having a second VW file open is not a useful answer...
In addition to enabling developer mode in Preferences>Session, add this line to your include:
vs.SetPref(412, True) #Turns off include caching
If your include includes other modules that you are modifying (for example common include libraries), you need to tell Python to reload the included modules:
import imp
import externalLib
imp.reload(externalLib)