5

I've been annoyed lately by the fact that PyDev doesn't information about classes and function when it code completes wxPython code.

Can anybody tell me FOSS IDE's or extensions that offer code information (function params, returns etc.) when it code completes for C/C++ and Python.

I am a fan of CodeLite, Eclipse CDT and CodeBlocks in that order for C/C++ (excepting non-FOSS) and PyScripter, PyDev for Python in that order.

lj8888
  • 75
  • 1
  • 3
  • 1
    Have you seen this message that relates to your problem? http://old.nabble.com/-pydev---Users--Autocompletion-with-wxPython-in-Eclipse-td21585224.html – Brandon Jun 23 '10 at 12:11
  • I haven't tried to re-add the interpreter into PyDev, but still I want to know if there are better alternatives, or IDE's that have better support for this feature – lj8888 Jun 23 '10 at 12:15
  • While it's not OSS, Wing IDE does have a free personal/student edition. I don't know how robust it is with wxPython, but the few days I played around with it it was pretty impressive. See: http://www.wingware.com/ – Wayne Werner Jun 23 '10 at 12:28

2 Answers2

2

Vim + Exuberant Ctags

See here, here and here for C++ autocompletion (also referred to as IntelliSense, taken from the name for Visual Studio's autocomplete).

And here for Python autocomplete/"intellisense" for vim. (I should point out I found the link to that from this post on SO).

If that doesn't include the ctags for wxPython as you require, you might want to check out this guy's ctags-based highlighting which apparently does work for wxPython (and perhaps take the ctags file from that?)

Probably also worth checking out this enormous list of Python IDEs on SO (specifically those with "AC" tags) if you've not already seen that? I realise your question is a bit more specific than just basic Auto Complete, but perhaps there's some new options in there for you...

Community
  • 1
  • 1
drfrogsplat
  • 2,367
  • 3
  • 18
  • 28
  • you wouldn't happen to have a pre built version, wouldn't you ? great answer by the way, I asked another question in another thread and your answer answers both thx – lj8888 Jun 25 '10 at 11:12
0

I use notepad++ and am vary happy with it.

Mosty Mostacho
  • 39,610
  • 14
  • 86
  • 115
opal
  • 143
  • 1
  • 6