src/pathpicker/screen_flags.py [110:120]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            default=False,
            action="store_true",
            help="""You may want to turn off file
system validation for a particular instance of PathPicker; this flag
disables our internal logic for checking if a regex match is an actual file
on the system. This is particularly useful when using PathPicker for an input
of, say, deleted files in git status that you would like to restore to a given
revision. It enables you to select the deleted files even though they
do not exist on the system anymore.""",
        )
        parser.add_argument(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/pathpicker/screen_flags.py [123:132]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            default=False,
            action="store_true",
            help="""You may force PathPicker to recognize all
lines as acceptable input. Typically, PathPicker will scan the input for references
to file paths. Passing this option will disable those scans and the program will
assume that every input line is a match. In practice, this option allows for input
selection for a variety of sources that would otherwise be unsupported -- git branches,
mercurial bookmarks, etc.""",
        )
        parser.add_argument(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



