Differences between revisions 6 and 8 (spanning 2 versions)
Revision 6 as of 2009-11-21 21:22:41
Size: 838
Comment: pygmentize not needed for Mercurial 1.1 and above
Revision 8 as of 2017-01-02 10:35:57
Size: 1276
Comment: update config snippet, add links to fileset
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
This extension does syntax highlighting in hgweb for files with known extensions. This extension does syntax highlighting in hgweb.
Line 19: Line 19:
hgext.highlight= highlight =
Line 22: Line 22:
pygments_style = <style> pygments_style = <style> (default: colorful)
highlightfiles = <fileset> (default: size('<5M'))
highlightonlymatchfilename = <bool> (default False)
Line 25: Line 27:
To limit files to consider highlighting, specify them in `highlightfiles` using a Topic:fileset.
Line 26: Line 29:
=== If you're having troubles with '''pygments_style'' === By default, Pygments is asked to guess file type even if extension is not recognized, by looking at file contents. The result may not always be accurate, and `highlightonlymatchfilename` set to True should help with that (see Cset:7a3f6490ef97).


=== If you're having troubles with `pygments_style` ===
Line 35: Line 41:
Line 37: Line 42:
CategoryExtension CategoryBundledExtension

Highlight Extension

This extension is currently being distributed along with Mercurial.

Original author: Adam Hupp

Overview

This extension does syntax highlighting in hgweb.

The extension depends on having Pygments installed.

Configuration

Configure your .hgrc to change the Pygments style:

[extensions]
highlight =

[web]
pygments_style = <style> (default: colorful)
highlightfiles = <fileset> (default: size('<5M'))
highlightonlymatchfilename = <bool> (default False)

To limit files to consider highlighting, specify them in highlightfiles using a fileset.

By default, Pygments is asked to guess file type even if extension is not recognized, by looking at file contents. The result may not always be accurate, and highlightonlymatchfilename set to True should help with that (see 7a3f6490ef97).

If you're having troubles with `pygments_style`

Mercurial 1.1 and above no longer needs this:

A workaround to generate the appropriate theme CSS for your mercurial installation:

$ pygmentize -f html -S emacs > /usr/local/lib/python2.4/site-packages/mercurial/templates/static/highlight.css 


CategoryBundledExtension

HighlightExtension (last edited 2017-01-02 10:35:57 by AntonShestakov)