src/pathpicker/parse.py [43:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        r"((/?([a-z.A-Z0-9\-_]+/))?\.[a-zA-Z0-9\-_]{3,}[a-zA-Z0-9\-_/]*)"
        # or
        r"|"
        # Recognize files containing at least one slash
        r"([a-z.A-Z0-9\-_/]+/[a-zA-Z0-9\-_]+)"
        # or
        r"|"
        # Recognize files starting with capital letter and ending in "file".
        # eg. Makefile
        r"([A-Z][a-zA-Z]{2,}file)"
        # end trying to capture
        r")"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/pathpicker/parse.py [84:94]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        r"((/?([a-z.A-Z0-9\-_]+/))?\.[a-zA-Z0-9\-_]{3,}[a-zA-Z0-9\-_/]*)"
        # or
        r"|"
        # Recognize files containing at least one slash
        r"([a-z.A-Z0-9\-_/]+/[a-zA-Z0-9\-_]+)"
        # or
        r"|"
        # Recognize files starting with capital letter and ending in "file".
        # eg. Makefile
        r"([A-Z][a-zA-Z]{2,}file)"
        r")"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



