Andi
Andi

Reputation:

Windows C++ highlighting

Could anyone recommend me an Editor with C++ highlighting? I know there is VIM but would prefer an easier one where I could use all the classical WINdows commands.

Many thanks

Upvotes: 4

Views: 2317

Answers (16)

user195488
user195488

Reputation:

Crimson Editor

Upvotes: 0

user87362
user87362

Reputation: 263

Eclipse CDT. It is more than a plain editor, and yes, it might feel bloatish - even slow - but it has quite some features that make it a worthy tool:

  1. Semantic highlighting (highly customizable)
  2. Good search & replace functionalities
  3. It is highly customizable. It may take some time to configure e.g. the editor to behave like "normal" editors in Windows, but once you've done that, you won't want to look back. Ever.
  4. It's free.

Upvotes: 0

jussij
jussij

Reputation: 10560

Zeus IDE

Upvotes: 3

Sam Harwell
Sam Harwell

Reputation: 99859

I'm surprised Visual C++ Express Edition doesn't have more positive comments. I use Visual Studio for everything it supports, and Programmer's Notepad 2 or ConTEXT for highlighting file types it doesn't support. The performance difference of Visual Studio against Eclipse is laughable - almost makes you say "wait, you were serious?"

Edit: You didn't say free in the first post. The paid version(s) of Visual Studio is the definitive Windows development IDE.

Upvotes: 4

Kjetil Limkjær
Kjetil Limkjær

Reputation: 1560

I use EmEditor for all my work outside of Visual Studio. It has syntax highlighting and autoindent support for C++ as well as many other languages. It's also fast, unobtrusive and has great Unicode support.

Upvotes: 0

Todd
Todd

Reputation:

Pepper is an awesome text editor.

http://theindiecompanyllc.com

Upvotes: 0

Andrey Butov
Andrey Butov

Reputation: 2279

I would recommend CodeKana, which is an excellent C/C++/C# code highlighter and visualizer plugin for Visual Studio: http://www.codekana.com/

Upvotes: 2

Symphony
Symphony

Reputation: 61

Textpad is free to use (if you don't mind the occasional nag screen) and supports highlighting for C++. It doesn't have a lot of extra features, so if you just want highlighting this might be useful.

Upvotes: 1

Cromulent
Cromulent

Reputation: 3818

Personally I prefer Programmer's Notepad 2 as my lightweight editor of choice on Windows. It is fast, works well and supports a large number of language syntax's out of the box and it is free to boot.

Upvotes: 1

Timo Geusch
Timo Geusch

Reputation: 24341

Don't forget Emacs, especially the EmacsW32 Windows port. Very good C++ syntax highlighting (well, it's got highlighting available for pretty much every programming language known to man, but not all of them are included in the basic package).

Upvotes: 0

greggorob64
greggorob64

Reputation: 2557

I'd have to recommend UltraEdit It has similar features to notepad++. I like ultra-edit in particular for its ability to edit the syntax highlighing commands (we've added custom languages pretty easily), as well as amazingly well implemented find-in-files.

Upvotes: 1

Cristian Adam
Cristian Adam

Reputation: 4844

I use SciTE. It is the example project for Scintilla - a free source code editing component.

Edit: Notepad++ also uses Scintilla at the core. I have tested it (nice plugins) and found it to be a bit buggy and slow, one example which came to mind - edit a 350k source file and then vertically select some columns from top to bottom and copy this text, open a new file and then paste - you will have to wait allot!

I'm back to SciTE - blazing fast and stable (like Scintilla).

Upvotes: 3

Ryan Christensen
Ryan Christensen

Reputation: 7933

On windows, If you are looking for free and pretty well featured IDE then the Eclipe CDT is nice. Also check out the Visual C++ Express.

If on a Mac XCode is free and awesome, Eclipse works there as well.

For pay options Visual Studio is still the best on windows.

If you are looking for just an editor then Notepad++ or Context works.

Upvotes: 7

Eliseo Ocampos
Eliseo Ocampos

Reputation: 2523

Notepad++

Upvotes: 2

Totty
Totty

Reputation: 916

Notepad++ is similar to notepad2. Another option for you to check out. Does line numbers as well, code folding, and code auto-complete.

Upvotes: 6

Daniel F. Thornton
Daniel F. Thornton

Reputation: 3685

Notepad2 is a great lightweight editor with syntax highlighting (including C/C++). Displays line numbers, print margin, &c. as well.

Upvotes: 0

Related Questions