Differences between revisions 1 and 7 (spanning 6 versions)
Revision 1 as of 2008-04-19 11:52:30
Size: 501
Comment: Add some information on the highlight extension.
Revision 7 as of 2010-08-28 15:10:54
Size: 843
Editor: abuehl
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
The extension depends on having [http://pygments.org/ Pygments] installed. The extension depends on having [[http://pygments.org/|Pygments]] installed.
Line 19: Line 19:
highlight = hgext.highlight=
Line 25: Line 25:

=== 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
}}}
Line 26: Line 36:
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 for files with known extensions.

The extension depends on having Pygments installed.

Configuration

Configure your .hgrc to change the Pygments style:

[extensions]
hgext.highlight=

[web]
pygments_style = <style>

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)