I am trying to get scapy to auto complete in komodo edit with no success, has anyone successfully done this?
Thanks, Python New Comer
|
I am trying to get scapy to auto complete in komodo edit with no success, has anyone successfully done this? Thanks, Python New Comer | |||
|
feedback
|
|
Autocomplete in Python is a hit or miss proposition. It varies widely -- some things can be analyzed by Komodo and some can't. If it won't autocomplete, it's probably because it relies on too many metaclass techniques that seem to baffle Komodo. | |||
|
feedback
|
|
If you're in virtualenv or have some tricky python paths you have to add additional import directories in:
Komodo can't understand these things out of the box. Also make sure you have following option enabled:
These steps would enable code completion to decent quality but as mentioned by S.Lott it is nearly impossible to implement full-featured auto-completion (like in Java or C#) in Python due its dynamic nature. | |||
|
feedback
|