> I still don't understand how you can get pymel autocompletion in vim. I can't > find anything on the subject on the web. I didn't quite get how to use the > skeleton maya package to make it work... > If you have a more complete explanation it would be nice
This troubled me for a while. It turned out that vim ignored the PYTHONPATH variable that i had set from the bash terminal. I got it working by appending the path inside my .vimrc like this: " maya.cmds :python import sys :python sys.path.append( "/usr/autodesk/maya2014-x64/devkit/other/pymel/extras/completion/py" ) -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/d19ec0dd-ff14-427d-a165-1c66b9752676%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
