FOSDEM Interviews On Free Development Tools
FOSDEM writes "The Free and Open Source Software Developers' European Meeting folks, aka FOSDEM, have just released the second part of their speakers' interviews. These interviews are dedicated to their development tools track, with Andreas Zeller for ddd, Benoit Minisini for Gambas and Alexander Dymo & Harald Fernengel for kdevelop. Previous interviews were already discussed on Slashdot here"
When will we see C++ autocomplete support in free tools at least equal to Visual Assist?
Really neat free C/C++ IDE for both Linux and Windows is Ultimate++ http://upp.sourceforge.net/ [SF]. It also includes framework for developing cross platform GUI. On windows it supports mingw and free (well "free") MS C++ Toolkit and native MS debugger. Nice part is that you can have single workbench with projects where you can switch toolchains (mingw/MS).
839*929
You are blowing smoke out of your ass. Unless you've actually used Visual C++ and Visual Assist don't bother commenting.
...imagine there is a different definition of A that just accepts one template parameter
That vim auto-completion stuff is *extremely* primitive. It's just autocompletion of keywords basically. VC++/VA have full blown language based auto-completion. That means they actually have a complete parser for the C++ language, which is by no means an easy thing to do. A "syntax file" is just matching regular expressions (a glorified grep) and isn't doing any real parsing of the language. So please, please unless you've used the auto-completion feature don't talk about it.
The closest thing I've seen is something in emacs and even that sucks balls. Let me give an exmaple. AC will go through all of the source and header files you're using and parse them. Because of this it can auto-complete CODE, not just KEYWORDS.
EX:
template
class A {
int foo;
char bar;
T meowface;
crap moo;
};
int main(void) {
A[autocomplete kicks in and shows you definition(s) for class A i.e. template A]
so I start typing A blue;
then later I can do
blue. and it shows me the members I can access, their protection, inherented shit blah blah
return 0;
}
Sorry, that's the best I can explain it quickly
There's also a debugging feature in C++ called something like edit as you go. You can basically edit code WHILE you're debugging and it will recompile it and insert it into the program while it's at a break point. THere are other features too.
The only other software, commercial or OSS that I've seen do this is Apple's newest development studio thing.
I've been programming on Linux professionally since 1997 when we saw the writing on the wall for OS/2.
Now I love vim, but mostly because of its keybindings and not because I think it's really a great program. It and Emacs are terminal programs at their heart, no matter what kind of guis you slap on the front-end.
I've always like IDEs. I don't care about any false machoness about only using Vi or Emacs in the Unix world. You, as a developer, are a user too and the computer should be there to do the mundane stuff that you shouldn't be doing manually anyway. Just think if you didn't have ctags or etags and had to manually grep through source to find stuff. A pain in the ass.
Now something like Visual Slickedit is nice because it can do refactoring and actually understands C++, but will cost you about $300 or more. That's fine for us commercial developers, but maybe not for the hobbyist. KDevelop 3.x, after the long rewrite, has finally got a somewhat functional C++ parser for it, but you have to bring in most of KDE to use it. Eclipse has a C++ parser, but then you have a dependancy on java and it's not so lightweight.
My point is, if GCC was modularized then we might have had a lightweight editor/IDE that had a deep understanding of C++ to do cool stuff like Visual Assist does. Just look at what Eclipse or IDEA does for Java developers.
I want to express my design in source and would rather have the development environment do some of the drudgery, menial work for me.
Things have improved in recent years, but I still think that windows has a leg up on the number and quality of development tools.
I now await the "ed is the only editor a real programmer needs" responses.
I'm no compiler expert, but it's my understanding that C++ refactoring depends on a deep understanding of the already complex C++ language - more so than say code-completion(intellisense).
I know that visual slickedit has it (proprietary - somewhat expensive), but i'm not aware of any other editor/IDE that can.
I know that http://cedet.sourceforge.net/ for emacs can do intellisense type stuff, but not sure about refactoring.
I wouldn't be surprised to see the Eclipse CDT plugin project get it eventually.
I was listening to Bram Moolenaar's (vim head honcho) BOF
talk and he spent about half of it talking about intellisense(code completion), so I think us vim heads might get some of that for vim 7.
Check this out... See if it meets your needs:
http://www.icsharpcode.net/OpenSource/SD/
Works pretty well for me....
I do not get it.. why there is almost no mention of Eclipse or Netbeans in these articles? why java is the bastrad child of the open source community? is it because people still dont get it? Those IDE's are far beyond C++ counterparts. Even Visual Studio. Or take IDEA. it is free for open source use now and probably the best programmers tool ever desgined.