Highlighting Windows C ++

Can someone recommend me an editor with C ++ highlighting? I know that there is VIM but would prefer a simpler one when I could use all the classic WINdows commands.

Thank you very much

+4
source share
16 answers

In windows, if you are looking for a free and well-chosen IDE, then the Eclipe CDT is good. Also check out Visual C ++ Express .

If on Mac Xcode is free and awesome, Eclipse also works there.

For payment options, Visual Studio is still the best on Windows.

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

+7
source

Notepad ++ is similar to notepad2. Another option for you. Line numbers, code folding, and automatic code completion are also built.

+6
source

I am surprised that Visual C ++ Express Edition has no more positive comments. I use Visual Studio for everything that it supports, and Programmer Notepad 2 or ConTEXT to highlight file types that it does not support. Eclipse’s Visual Studio performance difference is ridiculous - it almost makes you say "wait, are you serious?"

Edit: you did not say free in the first post. Paid versions of Visual Studio are the ultimate Windows development environment.

+4
source

I am using SciTE . This is an example of a Scintilla project, a free source code editing component.

Edit: Notepad ++ also uses Scintilla in the kernel. I tested it (beautiful plugins) and found that it was a bit buggy and slow, one of the examples that came to mind was editing the source file 350,000, then vertically highlighting several columns from top to bottom and copying this text, open a new file and then insert - you have to wait for the selection!

I returned to SciTE - fast and stable (like Scintilla).

+3
source
+3
source

I would recommend CodeKana , which is a great plugin for the slider and visualizer C / C ++ / C # for Visual Studio: http://www.codekana.com/

+2
source

I would recommend UltraEdit. It has similar functions for notepad ++. I like ultra-editing, in particular its ability to edit highlighing syntax commands (we added custom languages ​​quite easily), as well as surprisingly well-implemented finds in files.

+1
source

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

+1
source

Textpad can be used for free (unless you mind the random nag screen) and supports highlighting for C ++. It does not have many additional features, so if you just want to highlight this, it can be useful.

+1
source

Notepad2 is a great lightweight editor with syntax highlighting (including C / C ++). Displays line numbers, print border, etc. also.

0
source

Do not forget Emacs, especially the EmacsW32 port of Windows. Very good syntax highlighting C ++ (well, it got a highlight available for almost all programming languages ​​known to man, but not all of them are included in the base package).

0
source

Pepper is a great text editor.

http://theindiecompanyllc.com

0
source

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 is also fast, unobtrusive and has excellent Unicode support.

0
source

Eclipse CDT. It's more than a simple editor, and yes, it may seem bloated - even slow - but it has some features that make it a worthy tool:

  • Semantic backlight (highly customizable)
  • Good search and replacement of functionality
  • It is very customizable. It may take some time to configure, for example. the editor should behave like "regular" editors on Windows, but once you do this, you won’t want to look back. Someday.
  • It's free.
0
source
0
source

All Articles