Autocomplete
Backlinks¶
- Maya quick launcher
- figmapy development review
- I spent a lot of time adding kwargs to methods.
… and their inherited methods.
Mainly because i wanted autocomplete to work.
Given the time cost for keeping the methods updated, next time I’ll use args and kwargs. - Next time I might dynamically create attributes based on the returned dictionary keys, instead of recreate them all myself in a python class. This might reduce autocomplete support in your IDE.
- I spent a lot of time adding kwargs to methods.
- stubbing
- This code does nothing, except tell you which methods it has, and what their arguments are.
- Obsidian auto complete
- Maya hidden commands
- In the Maya script editor, type
cmds.
, then press ctrl-space to trigger autocomplete, showing the available commands.
- In the Maya script editor, type