IDE
Wednesday, March 7th, 2007Today I got a message on dsource.org about which IDE I’m using. Thought I should share this with you.
Right now I’m using Code::Blocks. I’m using the nightly Ubuntu builds, as they work quite well. It’s also fun to follow the rapid development; One time I reported a small bug, and within a week I could download a nightly without the bug. Nice
Some of the things I like about Code::Blocks is
- Auto-completion (can’t live without this!)
- Syntax highlighting (would also die without this)
- The ability to build for different targets. E.x. you can have a test environment with different flags for the compiler and program, and then the a “release” build with an optimize flag and maybe some different things.
- Nice debugging
- The ability to set up abbreviations. E.x. you can write “
class“, press Ctrl-j and it gets replaced withclass $(Class name) {public:this() {|}~this() {}private:};
Here a pop-up box will ask the name for the class.
Can’t quite remember more, but I’m sure there are. You are welcome to come with your suggestions.
PS. Always remember vim! It can be tweaked to be really powerful, and can be used through a ssh connection
Power to the vi! But.. it can’t replace a good IDE in my opinion.