Metadata-Version: 1.1
Name: diff-highlight
Version: 1.0.2
Summary: pretty diff highlighter; emphasis changed words in diff
Home-page: https://bitbucket.org/tk0miya/diff-highlight
Author: Takeshi Komiya
Author-email: i.tkomiya at gmail.com
License: Apache License 2.0
Download-URL: http://pypi.python.org/pypi/diff-highlight
Description: `diff-highlight`: pretty diff highlighter; emphasis changed words in diff
        
        This mercurial extension adds word highlights to every diff outputs.
        Features
        ========
        * Add highlights to diff output
        * mercurial extension for diff highlighting
        
        Setup
        =====
        
        Use easy_install or pip::
        
           $ sudo easy_install diff-highlight
        
           Or
        
           $ sudo pip diff-highlight
        
        Applying to git
        ---------------
        
        Add pager settings to your $HOME/.gitconfig to enable word highlights::
        
           [pager]
               log = diff-highlight | less
               show = diff-highlight | less
               diff = diff-highlight | less
        
        Applying to mercurial
        ---------------------
        
        Add `color` and `diff_highlight` extensions to your $HOME/.hgrc to enable word highlights::
        
           [extensions]
           color =
           diff_highlight =
        
        
        Requirements
        ============
        * Python 2.4, 2.5, 2.6, 2.7, 3.2, 3.3, 3.4
          (mercurial extension works on python 2.x only)
        
        License
        =======
        Apache License 2.0
        (highlights/pprint.py is under PSFL)
        
        
        History
        =======
        
        1.0.1 (2013-12-22)
        -------------------
        * Fix diff-highlight command failed with python 2.4
        
        1.0.0 (2013-12-22)
        -------------------
        * Add diff-highlight command
        * Support python 2.4, 2.5, 3.2 and 3.3
        
        0.1.0 (2013-12-20)
        -------------------
        * first release
        
Keywords: mercurial,git,diff,highlight
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Version Control
Classifier: Topic :: Text Processing :: Filters
