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?
|
|
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. |
||||
|
|
|
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. |
|||
|
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. |
||||
|
|
|
Visual Studio will, and allows you have a completely separate configuration for printing. |
|||
|
|
|
You can use any colorizer which produces html and simply print the page |
|||
|
|
|
Under unix you might want to try a2ps. It is flexible and produces nice results. |
|||
|
|
|
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. |
||||
|