Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have occasion to need to print code (Horrors!!! ;) ), and i was wondering what editor or tool would i use to print that code out with proper formatting and syntax highlighting? If it's important, it will be c# code but ideally the tool will work for as many languages as possible. Can Notepad++ or something handle this?

share|improve this question
1  
This superuser question has several suggestions, including one for Notepad++: superuser.com/questions/39571/… – Ayman Hourieh Nov 1 '09 at 11:30

7 Answers

up vote 7 down vote accepted

Yes, Notepad++ can certainly print code with syntax highlighting.

Colour printing would obviously be preferable, but on the occasions when I've printed in black and white, the subtle differences in colour [rendered as shades of grey, of course] can be difficult to distinguish.

However, I think a little customisation of the colour schemes should make this less of a problem.

share|improve this answer

You can use vim! ":hardcopy" command will print with syntax highlighting on, and there's syntax highlighting definitions for many languages out there.

The default look is usually optimised for screen display, but you can fix that.

share|improve this answer
Don't use vim, sorry. Still a good answer though. – RCIX Nov 4 '09 at 6:14
3  
@RCIX Don't say sorry--we're sorry for you! – Kazark Nov 8 '12 at 21:56

http://pygments.org/ is one option. It supports a ton of languages, and since it's written as a python library, you can script the conversion process however you want.

share|improve this answer

Visual Studio will, and allows you have a completely separate configuration for printing.

share|improve this answer

You can use any colorizer which produces html and simply print the page

share|improve this answer
This answer lacks detail. – Kazark Nov 8 '12 at 21:57

Under unix you might want to try a2ps. It is flexible and produces nice results.

share|improve this answer

I while ago I created a household python script that wraps pygments into a small console utility. It works with any language supported by pygments.

Also if you happen to use eclipse, you could simply copy the selected text in the editor and then paste it in a RTF-aware editor like MS Word - it will preserve all the colors, fonts and formatting.

share|improve this answer
haven't tested it, sounds nice, hope it works ok :) however, in case of more batch-oriented printing (for larger number of files) I'm still interested in some HTML-to-printer tool that could be used as a companion? – akavel Feb 7 '11 at 9:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.