tags:

views:

141

answers:

7

Can you advise a simple light source code editor for Windows and Mac?

I do not want it to have to take the whole project the file came from into context or provide any project management or integrated debugging features. I just want to take a quick but informative view at a single source code file with some syntax highlighting and i am sick of having to wait for VS or Xcode to start every time. For example, under Linux i would use Kate or Vim so something similar is preferred.

+1  A: 

MacVim? I use it for perl development on OS X. And win32 Vim build on windows.

gonzo
+2  A: 

Vim for Windows? (For Mac, of course, you should already have Vim.)

T.J. Crowder
If you're used to VIM, why switch, so +1
Niels Bom
Never though vim was available on Windows, thanks!
Inso Reiges
+6  A: 

For Mac, use vim.

For windows, I use notepad++ or textpad

Mike Sherov
notepad++ looks great, thank you
Inso Reiges
+1, Notepad++ is really versatile and supports a variety of different languages.
Jamie Keeling
+1  A: 

On a Mac, I'd recommend TextMate. E is a Windows equivalent.

mopoke
TextMate is what I use. It's nice because it's simple when you need it to be and power-packed when you need it to be. I can call `mate config.py` to edit a single file or `mate .` for an entire directory tree.
David Antaramian
A: 

notepad2 is what I use for this. Ideal for quick peek in source files, I also use it from time to time to make quick changes without opening a full-blown IDE.

It's a lightweight notepad replacement with syntax highlighting (based on scintilla, the same component as Notepad++).

jeroenh
A: 

Mac: TextWrangler Win: Notepad++

Ekin Koc
A: 

GVIM is also an option. it has a few options that suit a mouse environment over regular vim.

SCITE is excellent for the windows environment, but I have not used it in a mac environment.

Bingy