Reputation: 231
I have tried Xcode, textwrangler and Qt. I like textwrangler the best but it doesn't support C++, i.e. compiling, and checking syntax. Can you please recommend a good editor for me?
I didn't like Xcode because it guesses what function you are typing and it's not helping me learn the syntax.
Upvotes: 0
Views: 6070
Reputation: 3642
I think you probably need to separate learning the language from learning a tool.
XCode is probably the best integrated development environment for the Mac and you will come to appreciate its autocompletion feature as it saves you a lot of typing!
If you really don't want it (and I suggest that you do!) then you can turn it off:
Goto XCode->Preferences->Text Editing
and uncheck 'suggest completions while typing'
Upvotes: 12
Reputation: 21
I just started learning C++ on a mac as well. I like using Xcode to write and run the program since it does a good job of organizing all of the files for the project. Also, it will make learning objective-c easy if that is ever a goal.
I do suggest turning off the auto complete and the live error detection to improve your learning and debugging skills. I turned both off and have struggled at times but I believe that it has increased my understanding.
Best of luck either way!
Upvotes: 1
Reputation: 1356
Try Eclipse: http://www.eclipse.org/downloads/
or
CodeBlocks: http://www.codeblocks.org/
Upvotes: 1