473,788 Members | 2,816 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

a good C++ editor

can anyone recommend any good editors for C++ (having in mind that i don't
want to use MS visual studio)? you know, something that has syntax
highlighting, and preferably something like intellisense (to complete your
code)? i've decided to switch from compiling in Visual studio to gcc and now
i need to find a good editor...

--
You're never too young to have a Vietnam flashback
Nov 2 '06 #1
20 2919
filox wrote:
can anyone recommend any good editors for C++ (having in mind that i don't
want to use MS visual studio)? you know, something that has syntax
highlighting, and preferably something like intellisense (to complete your
code)? i've decided to switch from compiling in Visual studio to gcc and now
i need to find a good editor...
Code::Blocks
http:://www.codebloks.o rg
Nov 2 '06 #2
filox wrote:
can anyone recommend any good editors for C++ (having in mind that i don't
want to use MS visual studio)? you know, something that has syntax
highlighting, and preferably something like intellisense (to complete your
code)? i've decided to switch from compiling in Visual studio to gcc and
now i need to find a good editor...
Get gcc via CygWin for Win32.

Write a Makefile for your project, in the same folder as your .sln file.

Write a trigger (in a soft language like Ruby) that runs the Makefile to
compile your code and run your tests, after each .cpp file changes.

Start the trigger, and start Visual Studio. Tile the windows so you can see
the trigger's console.

Now edit, and even compile with your .sln file, and each time you change the
code, your trigger will build it for gcc.
You're never too young to have a Vietnam flashback
Oh, dude, "7-Course Beef" in Westminster sure takes me back!

--
Phlip
http://www.greencheese.us/ZeekLand <-- NOT a blog!!!
Nov 2 '06 #3
filox schrieb:
can anyone recommend any good editors for C++ (having in mind that i don't
want to use MS visual studio)? you know, something that has syntax
highlighting, and preferably something like intellisense (to complete your
code)? i've decided to switch from compiling in Visual studio to gcc and now
i need to find a good editor...

Try Eclipse with the C++ plugin.
You can get both at www.eclipse.org

Regards,
Andy

--
Nov 2 '06 #4
* Andy:
filox schrieb:
>can anyone recommend any good editors for C++ (having in mind that i
don't want to use MS visual studio)? you know, something that has
syntax highlighting, and preferably something like intellisense (to
complete your code)? i've decided to switch from compiling in Visual
studio to gcc and now i need to find a good editor...


Try Eclipse with the C++ plugin.
You can get both at www.eclipse.org
Last I tried (when am I going to actually uninstall all the things that
have accumulated?) Eclipse was slow and difficult and generally bad,
just like expected of a Java thingo, although probably a heaven for Java
programmers.

For C++ programming many people have recommended Code::Blocks, <url:
http://www.codeblocks. org/>, touted as "the" through and through C++
successor to DevC++ (which ironically, IIRC, was written in Borland Pascal).

Disclaimer: I haven't tried it, but it sure looks good.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Nov 2 '06 #5

filox wrote:
can anyone recommend any good editors for C++ (having in mind that i don't
want to use MS visual studio)? you know, something that has syntax
highlighting, and preferably something like intellisense (to complete your
code)? i've decided to switch from compiling in Visual studio to gcc and now
i need to find a good editor...
I'd recommend you Netbeans.

Netbeans is a Java IDE; its last release includes a C/C++ pack that
allows you edit, debug and work with makefiles using this interesting
IDE.

www.netbeans.org

Regards,
Ernesto

Nov 2 '06 #6

Alf P. Steinbach wrote in message <4q************ @individual.net >...
>* Andy:
>filox schrieb:
>>can anyone recommend any good editors for C++ (having in mind that i
don't want to use MS visual studio)? you know, something that has
syntax highlighting, and preferably something like intellisense (to
complete your code)? i've decided to switch from compiling in Visual
studio to gcc and now i need to find a good editor...
That's "GCC" ( the GNU Compiler Collection, which includes gcc and g++
compilers). :-}
>>
Try Eclipse with the C++ plugin.
You can get both at www.eclipse.org

Last I tried (when am I going to actually uninstall all the things that
have accumulated?) Eclipse was slow and difficult and generally bad,
just like expected of a Java thingo, although probably a heaven for Java
programmers.

For C++ programming many people have recommended Code::Blocks, <url:
http://www.codeblocks. org/>, touted as "the" through and through C++
successor to DevC++ (which ironically, IIRC, was written in Borland Pascal).

Disclaimer: I haven't tried it, but it sure looks good.
Maybe someone who has both could come back and tell us if Code::Blocks plays
nice with DevC++. [ Dev-C++ IDE: http://www.bloodshed.net/ ]
Ref: Code::Blocks for windows:
Does it 'capture' the file-type-associations(al low to keep current settings),
easy to point it to the current MinGW(GCC) under DevC++ dir, mess with
windows registry, etc.?
[ meantime, yeah, I'll go look over their site. ]

I'm pretty happy with DevC++, so it will take an 'eye-grabber' to get me to
change (C++ source code *is* a big plus. GNU port is another+.). I don't like
to burn bridges (or DevC++ <G>), some 'installers' are over aggressive.
I use MinGW Studio on Debian, but it's a little 'thin' ( and Kdevelop is way
'thick'! "GAWD, all I wanted is a little 3 file project linked to wxWidgets!
What the heck are all those script things for!?!". Kpollution? <G>).
--
Bob R
POVrookie
Nov 2 '06 #7
On Thu, 2 Nov 2006 16:54:26 +0100, "filox"
<filox_realmmak niovo@...comwro te:
>can anyone recommend any good editors for C++ (having in mind that i don't
want to use MS visual studio)? you know, something that has syntax
highlighting , and preferably something like intellisense (to complete your
code)? i've decided to switch from compiling in Visual studio to gcc and now
i need to find a good editor...
PSPad, an editor not an IDE: http://www.pspad.com/en/

Good luck,
Roland Pibinger
Nov 2 '06 #8
On Thu, 02 Nov 2006 18:01:51 +0200, Shelyag Yuriy wrote:
>filox wrote:
>can anyone recommend any good editors for C++ (having in mind that i don't
want to use MS visual studio)?

Code::Blocks
http:://www.codebloks.o rg
better: http://www.codeblocks.org/
This project looks very promising. Unfortunately it seems to have
slowed down.

Best wishes,
Roland Pibinger
Nov 2 '06 #9
filox <fi************ *****@yahoo.com wrote:
can anyone recommend any good editors for C++ (having in mind that i don't
want to use MS visual studio)? you know, something that has syntax
highlighting, and preferably something like intellisense (to complete your
code)? i've decided to switch from compiling in Visual studio to gcc and now
i need to find a good editor...
Personally, I love vim (http://www.vim.org/). Once you learn your way
around it, you'll realize how powerful of an editor it is and how fast
you can do things, but the learning curve may be a little steep. It may
take some time to get used to using a modal editor.

--
Marcus Kwok
Replace 'invalid' with 'net' to reply
Nov 2 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2386
by: Tomas | last post by:
Hi! I'm looking for a replacement for the standard interactive python shell. So far I've tried IPython and PyCrust. I liked both, but I'm not 100% happy with any of them. My main complaint about IPython is its missing support for multiline editing. To do multiline editing, it has to start an external editor, but then I lose all the nice features like autocompletion. PyCrust supports multiline editing, but the autocompletion is not as...
1
13284
by: lovens weche | last post by:
Is there a good editor that can be used with a 32 bit compiler under the MS-Dos platform? I used to use the Watcom C++ 11 compiler but the editor that came with it (VI if I remeber) was not that great, in fact it was horrible. I'm searching for a Borland C++ style editor and a good C++ 32 bit compiler. Doesn't really matter if the compiler doesn't optimize the code. Thanx in advance... Lovens
20
3148
by: Rick Cook | last post by:
I'm looking for a good (non-wysiwyg) editor for HTML and CSS. I want something that will help me produce non-dynamic pages with a minimum of excrescences (no, javascript, flash, etc.) in supportable style. I am using CSS as much as possible to organize these pages, but since I'm still fairly new at CSS I'd like a good set of help features as well. Freeware would be nice, but functionality is more important.
15
2667
by: Jam Pa | last post by:
I would like to hear recommendations on good CSS editors. Personally, I would like a CSS editor with 'code-completion'. In effect, I would like to be able to see different properties and their possible values as I type, or at least next to the css-code window in a reference window. I have tried Style Master, but did not like it at all, it wasn't fast enough, and not 'pro' enough for a text-editor-kinda CSS designer like me.
3
4375
by: Java script Dude | last post by:
I have still yet to see a JavaScript Editor that comes close to reading a good JS book, learing it and using it with a text editor. Anyway, here my recipe for build successfull DHTML Applications: If you want to support only M$ IE stop here and do the following: 1) Install blindfold 2) Repeat the phrase - I love my cage :p Buy the Book: Buy O'Reilly's JavaScript The Definitive Guide
3
1498
by: TrvlOrm | last post by:
Hi There, Can any one please tell me where I can find a really good Free JavaScript Editor on the net? I am looking at either a evaluation copy (Free trial) or a really cheap but good editor that I can download. I need the editor to tell me exactly what I am doing incorrectly, and telling me exactly how I can fix the problem, ideally if I post my
10
1618
by: kurtk | last post by:
Can someone recommend a good php editor? Beside syntax highlighting, I am looking for an editor that will allow me to do "block selection" (that is, copy from column, say, 5 to column 12 of several lines of text). Are there any free editors that will do this? thanks, Kurt
3
1954
by: happy | last post by:
I am searching over the net for a Good C compiler that has good editor .. Tc 2.01 has bad editor . please advice me with aweb site for downloading the godd Editor C compiler NOT C++. Thanks
63
3978
by: John Salerno | last post by:
I know there's a request for a good IDE at least once a week on the ng, but hopefully this question is a little different. I'm looking for suggestions for a good cross-platform text editor (which the features for coding, such as syntax highlighting, etc.) but not a full IDE with all the fancy jazz (GUI developer, UML diagrams, etc.). Ideally, it would be something I could even put on a flash drive and move from computer to computer, but...
0
9498
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10364
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10172
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10110
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8993
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6750
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5536
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3670
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2894
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.