Question

I'm looking for a way to add scripting support with IronPython to an existing .net desktop application and need to be able to have code completion for IronPython there. Code completion should work for keywords, classes, variables, etc. as you type or via Ctrl-Space.

Any suggestions?

Était-ce utile?

La solution

Unfortunately, I don't think such a thing exists specifically for IronPython. If you don't need it to be fancy you could something like Scintilla.NET and just run it in normal Python mode and get at least some completion (I think it just suggests things already in the editor buffer).

Providing full IntelliSense is a crazy hard problem, but you could check out the Python Tools for Visual Studio to see how they do it.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top