I’m new to the magic of autocompletion and am extremely curious to get it up and running. My question is if I type this:
import maya.cmds as cmds
sphere = cmds.Sphere()
sphere.
should I expect it to autocomplete after i type “sphere.”? That would just be awesome, but I’m not sure if I’m hoping for too much since I guess that means my ide would need to be constantly interpreting the code. A few more details are I would actually be using pymel (not maya.cmds) with Komodo.
I’ve tried adding the pymel autocompletion libs to my komodo preferences, and that gives me top level autocompletion like pm.bin -> pm.bindskin(), but the above example of the sphere doesn’t work.
Thanks!
[edit: I talked with a coder over here and he pointed out that since python is typeless it would be extremely hard for that level of syntax autocompletion to work. I can still dream though.]