I know some of you might view IDEs as something amateurish, but I can't for the love of god remember all these functions and what order their arguments are in, let alone the exact type they take and return.
I've started using Code::Blocks but it's CodeCompletion plugin fails to show me the type for function pointers in sepples, something I am about to start using heavily.
So, unless I can fix this in CB, I need an IDE which supports: * sepples code * easy viewing of function types INCLUDING extern function pointers * isn't bloated
What IDE do you guys use? If you recommend me one of your emacsen or vims? I will come to your house and stab your waifu dakimakura. I am not interested in learning emacs, or reading the manual of vim (an editor I *am* familiar with.)
Good enough for me. If it's not good enough for you, try ctags.
Name:
Anonymous2014-02-27 3:36
>>1 I have used and liked: Open Genera, Mathematica, Pharo Smalltalk, SLIME, NetBeans and Visual Studio.
Xie xie.
Name:
Anonymous2014-02-28 6:35
¤
Visual Studio
Hah, for about every five minutes it gives a popup "configuring shit, please wait.." and it locks everything up (meaning no writing code, just watching the damn dialog). I'm pretty sure it's just running GC when that happens. GC is shit.
>>6 Yeah, because only alternative to GC is doing everything manually, right? Idiot.
Name:
Anonymous2014-03-01 6:06
At work (console/PC gamedev studio) we use the Visual Assist addin with Visual Studio 2013. It does what you want. Most of the time.
Visual Studio is great, until you use it on a multi-million line piece of software, with dozens of library projects in the solution. Then it runs like shit, hangs or crashes at least once or twice a day.
I use vim and bash at home, because at the end of the day, IDEs make you weak and are therefore harmful.
Name:
Anonymous2014-03-03 16:10
>>7 What are other alternatives? Reference counting?