view mercurial/__main__.py @ 51387:47c74c120205

crecord: add a searchdirection function If a regex has already been previously set, this function handles the UI elements of searching again forward or backward.
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Wed, 14 Feb 2024 22:53:58 -0500
parents e7ef11b75fdc
children 1c5810ce737e
line wrap: on
line source

def run():
    from . import demandimport

    with demandimport.tracing.log('hg script'):
        demandimport.enable()
        from . import dispatch

        dispatch.run()


if __name__ == '__main__':
    run()